:root {
  --primary-bg: #000;
  --secondary-bg: #1c1c1c;
  --accent-bg: #3b3b3b;
  --accent-color: #aee3f5;
  --text-primary: #fff;
  --text-secondary: #ccc;
  --text-muted: #aaa;
  --border-color: #444;
  --shadow: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --container-padding: 2rem;
  --section-padding: 4rem 2rem;
  --max-width: 1450px; /* Maximum container width */
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container wrapper for max-width constraint */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Header */
header {
  background-color: var(--secondary-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
}

.logo span {
  color: var(--text-muted);
}

.svg-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.svg-link:hover {
  opacity: 0.9;
}

.svg-link2 {
  text-decoration: none;
  background-color: transparent;
  display: inline-block;
}

.svg-link2:hover {
  background-color: transparent;
}

nav {
  display: flex;
  gap: 0;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #222;
  transition: var(--transition);
  margin-left: 1rem;
}

nav a.active,
nav a:hover {
  background-color: #444;
  font-weight: 500;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--section-padding);
  gap: 2rem;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-sub {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-img {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-img img {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.image-card {
  background-color: var(--accent-bg);
  padding: 1rem;
  margin-top: 2rem;
  margin-left: -60px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  white-space: nowrap;
}

/* Dividers and Social Links */
hr {
  height: 1px;
  border: none;
  background-color: var(--border-color);
  max-width: var(--max-width);
  margin: 2rem auto;
  width: calc(100% - 4rem);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  padding: 0 var(--container-padding);
}

.social-links div {
  background-color: var(--accent-color);
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.social-links div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social-links a{
  color: inherit;
  text-decoration: none;
}

/* Expertise Section */
.expertise-section {
  text-align: center;
  padding: var(--section-padding);
}

.expertise-section h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin-bottom: 3rem;
}

.expertise-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 8rem auto 3rem;
}

.expertise-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap-dots {
  position: absolute;
  right: 65%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 400px;
  height: 300px;
  border-radius: 9999px;
  overflow: hidden;
}

.bg-dots {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.wrap-main-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 750px;
  height: 500px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-tag {
  position: absolute;
  left: 84%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: var(--accent-color);
  color: #000;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services Section */
.services-section {
  padding: 5rem var(--container-padding);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
}

.view-all-btn {
  background: rgba(174, 227, 245, 0.2);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(174, 227, 245, 0.3);
}

.view-all-btn:hover {
  background: rgba(174, 227, 245, 0.3);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem 4rem;
  margin-bottom: 6rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 5rem;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.service-item:nth-child(even)::after,
.service-item:last-child::after,
.service-item:nth-last-child(2)::after {
  display: none;
}

.service-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  min-width: 80px;
}

.service-name {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
}

/* Projects Section */
.projects-section {
  padding: 2rem var(--container-padding) 5rem;
}

.projects-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.project-tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.project-tag {
  background: rgba(174, 227, 245, 0.2);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(174, 227, 245, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.project-tag:hover,
.project-tag.active {
  background: rgba(174, 227, 245, 0.3);
  transform: translateY(-1px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(174, 227, 245, 0.3);
}

.project-card-more {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-button-more {
  background: var(--accent-color);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.contact-button-more:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}


.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.project-btn {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.project-btn:hover {
  color: white;
  transform: translateX(5px);
}

.project-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.project-btn:hover::after {
  transform: translateX(3px);
}



/* Testimonials Section */
.testimonials-section,
.contact-section,
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}


.testimonials-section {
  padding: 5rem var(--container-padding);
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(174, 227, 245, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #000;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-emoji {
  color: var(--accent-color);
  font-weight: 600;
}

.view-all-testimonials {
  text-align: center;
}

.view-all-testimonials-btn {
  background: rgba(174, 227, 245, 0.2);
  color: var(--accent-color);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(174, 227, 245, 0.3);
  display: inline-block;
}

.view-all-testimonials-btn:hover {
  background: rgba(174, 227, 245, 0.3);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
  padding: 4rem var(--container-padding);
  background: var(--secondary-bg);
  border-radius: 20px;
  margin-bottom: 4rem;
}

.contact-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


.contact-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.contact-text p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-button {
  background: var(--accent-color);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}














/* FOR THE PROJECT PAGE */


.projects-section2 {
  padding: 60px 0;
  background: #000000;
}

.projects-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
}

.projects-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.projects-grid2 {
  display: grid;
  gap: 30px;
}

.row-1 {
  grid-template-columns: 35% 65%;
}

.row-2 {
  grid-template-columns: 65% 35%;
}

.project-card {
  border-radius: 20px;
  min-height: 300px;
  overflow: hidden;
}

.web-dev-card,
.data-content-card,
.testimonials-card2 {
  background: #2a2a2a;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-category,
.data-category,
.client-work-category,
.testimonials-category2 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.project-main-title,
.data-title,
.client-work-title,
.testimonials-title2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 40px;
}

.view-details-btn,
.view-details-btn-blue,
.client-work-btn,
.testimonials-btn2 {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease;
}

.view-details-btn,
.client-work-btn,
.testimonials-btn2 {
  background: #333333;
  color: #ffffff;
}

.view-details-btn:hover,
.client-work-btn:hover,
.testimonials-btn2:hover {
  background: #444444;
}

.view-details-btn-blue {
  background: #0066cc;
  color: #ffffff;
}

.view-details-btn-blue:hover {
  background: #0052a3;
}

.featured-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.data-analysis-card {
  background-image: url('img/data\ analysis.jpg');
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
}



/* Footer */
.footer2 {
  background-color: var(--secondary-bg);
  padding: 40px 0;
  border-top: 1px solid #333333;
}

.footer-content2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column2 h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column2 ul {
  list-style: none;
}

.footer-column2 ul li {
  margin-bottom: 12px;
}

.footer-column2 ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column2 ul li a:hover {
  color: #ffffff;
}

.footer-subtitle2 {
  color: #cccccc;
  font-size: 0.9rem;
  margin-top: 5px;
}






/* FOR THE CONTACT US PAGE */





/* Container for max width */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Portfolio Page Specific */
.portfolio-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}


.portfolio-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}


.portfolio-header.scrolled {
  background-color: var(--secondary-bg); /* same as first header bg */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}

.portfolio-header .nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.portfolio-header .nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #222;
  transition: background-color 0.3s ease;
}

.portfolio-header .nav-links a:hover,
.portfolio-header .nav-links a.active {
  background-color: #444;
  font-weight: 500;
}


/* Mobile menu button - hidden by default */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile menu - hidden by default */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #000;
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #007bff;
}

/* Hero Section */
.hero2 {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('img/Contact.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}


.hero-content2 h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content2 p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  max-width: 600px;
  opacity: 0.9;
}

/* Get in touch section */
.contact-section2 {
  background: #000;
  color: white;
  padding: 80px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.contact-content2 h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

.contact-buttons2 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-btn2 {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 280px;
  justify-content: center;
}

.contact-btn2:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-btn2 svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}



/* Contact form section */


.contact-form-section {
  background: #2c2c2c;
  padding: 80px 0;
  color: #fff;
}


.form-content{
  margin-bottom: 40px;
}

.form-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.contact-form {
  max-width: 800px;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 18px 20px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  float: right;
}

.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}







/* FOR THE PORTFOLIO PAGE */




.portfolio-wrapper3 {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #1a1a1a;
}

/* Header Styles */
.header3 {
  background-color: #2a2a2a;
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.header-container3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo3 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.nav-menu3 {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item3 {
  position: relative;
}

.nav-link3 {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link3:hover,
.nav-link3.active {
  color: #4a9eff;
}

.nav-link3.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #4a9eff;
}

.header-btn3 {
  background-color: #4a9eff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.header-btn3:hover {
  background-color: #3a8eef;
}

/* Mobile Menu Toggle */
.mobile-toggle3 {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle3 span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s;
}

/* Hero Section */
.hero-section3 {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  overflow: hidden;
}

.hero-background3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero-content3 {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text3 {
  flex: 1;
  max-width: 500px;
}

.hero-title3 {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle3 {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-stats3 {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat-item3 {
  text-align: center;
}

.stat-number3 {
  font-size: 24px;
  font-weight: bold;
  color: #4a9eff;
  display: block;
}

.stat-label3 {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.hero-buttons3 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn3 {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.hero-btn-primary3 {
  background-color: #4a9eff;
  color: #ffffff;
}

.hero-btn-primary3:hover {
  background-color: #3a8eef;
  transform: translateY(-2px);
}

.hero-btn-secondary3 {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-btn-secondary3:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* Profile Card */
.profile-card3 {
  background-color: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-image3-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.profile-image3 {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9eff, #9c27b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-image3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-initials3 {
  z-index: 1;
  position: relative;
}

.upload-overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.upload-icon3 {
  font-size: 24px;
}

.profile-image3:hover .upload-overlay3 {
  opacity: 1;
}


.profile-name3 {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
}

.profile-title3 {
  font-size: 16px;
  color: #4a9eff;
  margin-bottom: 20px;
}

.profile-stats3 {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.profile-stat3 {
  text-align: center;
}

.profile-stat-number3 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  display: block;
}

.profile-stat-label3 {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.profile-actions3 {
  display: flex;
  gap: 10px;
}

.profile-btn3 {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.profile-btn-primary3 {
  background-color: #4a9eff;
  color: #ffffff;
}

.profile-btn-primary3:hover {
  background-color: #3a8eef;
}

.profile-btn-secondary3 {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #666;
}

.profile-btn-secondary3:hover {
  background-color: #666;
}

/* Reviews Section */
.reviews-section3 {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.reviews-container3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

.reviews-sidebar3 {
  width: 280px;
  flex-shrink: 0;
}

.filter-section3 {
  margin-bottom: 30px;
}

.filter-buttons3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-btn3 {
  padding: 12px 20px;
  background-color: #2a2a2a;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.filter-btn3:hover,
.filter-btn3.active {
  background-color: #4a9eff;
}

.recent-projects3 {
  margin-bottom: 30px;
}

.recent-projects3 h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
}

.project-item3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #2a2a2a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.project-item3:hover {
  background-color: #3a3a3a;
}

.project-icon3 {
  width: 30px;
  height: 30px;
  background-color: #4a9eff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

.project-info3 {
  flex: 1;
}

.project-title3 {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}

.project-subtitle3 {
  font-size: 12px;
  color: #888;
}

.overall-rating3 {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
}

.overall-rating3 h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: bold;
}

.rating-item3 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 15px;
}

.rating-item3:last-child {
  margin-bottom: 0;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background-color: #404040;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: #4CAF50;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.rating-number {
  font-size: 16px;
  font-weight: bold;
  width: 20px;
  text-align: center;
}

/* Different fill percentages based on the image */
.rating-5 .progress-fill { width: 85%; }
.rating-4 .progress-fill { width: 65%; }
.rating-3 .progress-fill { width: 25%; }
.rating-2 .progress-fill { width: 15%; }
.rating-1 .progress-fill { width: 8%; }


.reviews-content3 {
  flex: 1;
}

.reviews-header3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-title3 {
  font-size: 28px;
  color: #ffffff;
  margin: 0;
}

.sort-section3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label3 {
  color: #888;
  font-size: 14px;
}

.sort-select3 {
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 14px;
}

.reviews-grid3 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-card3 {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.review-card3:hover {
  transform: translateY(-2px);
}

.review-header3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar3 {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: #4a9eff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}

.review-info3 {
  flex: 1;
}

.review-title3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.review-stars3 {
  color: #ffd700;
  font-size: 16px;
  margin-bottom: 5px;
}

.review-meta3 {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #888;
  font-size: 14px;
}

.review-description3 {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-details3 {
  color: #4a9eff;
  font-size: 14px;
  margin-bottom: 15px;
}

.review-images3 {
  display: flex;
  gap: 15px;
}

.review-image3 {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: #3a3a3a;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.review-image3:hover {
  transform: scale(1.05);
}







/* FOR THE PROJECT NEXT PAGE */



.my-projects4 {
  background-color: #000;
  color: white;
  padding: 2rem 2rem 5rem;
  font-family: "Poppins", sans-serif;
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
}

.section-title4 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: white;
}

.featured-projects4 {
  margin-bottom: 40px;
}

.section-subtitle4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ccc;
}

.project-grid4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 40px;
}

.project-card4 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card4:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(174, 227, 245, 0.3);
}

.project-image4 {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-info4 {
  padding: 1.5rem;
}

.project-title4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.project-category4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.view-details-btn4 {
  color: #aee3f5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.view-details-btn4:hover {
  color: white;
  transform: translateX(5px);
}

.view-details-btn4::after {
  content: '→';
  transition: transform 0.3s ease;
}

.view-details-btn4:hover::after {
  transform: translateX(3px);
}

/* Featured project specific images */
.alpha-bg4 {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  position: relative;
}

.alpha-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="30" height="20" fill="%23333"/><rect x="35" y="0" width="30" height="20" fill="%23666"/><rect x="70" y="0" width="30" height="20" fill="%23999"/><rect y="25" width="100" height="50" fill="%23ddd"/><rect y="80" width="100" height="20" fill="%23bbb"/></svg>') no-repeat center;
  background-size: 80%;
  opacity: 0.7;
}

.insights-bg4 {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  position: relative;
}

.insights-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="15" fill="%23fff" opacity="0.8"/><circle cx="75" cy="25" r="10" fill="%23fff" opacity="0.6"/><rect x="10" y="50" width="80" height="30" fill="%23fff" opacity="0.4" rx="5"/><rect x="20" y="60" width="60" height="3" fill="%23333" opacity="0.6"/><rect x="20" y="67" width="40" height="3" fill="%23333" opacity="0.6"/></svg>') no-repeat center;
  background-size: 80%;
}

.creative-bg4 {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  position: relative;
}

.creative-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="25" height="25" fill="%23fff" opacity="0.8"/><rect x="40" y="10" width="25" height="25" fill="%23ffeb3b" opacity="0.9"/><rect x="70" y="10" width="25" height="25" fill="%2300bcd4" opacity="0.8"/><rect x="10" y="40" width="25" height="25" fill="%234caf50" opacity="0.8"/><rect x="40" y="40" width="25" height="25" fill="%23ff9800" opacity="0.8"/><rect x="70" y="40" width="25" height="25" fill="%23e91e63" opacity="0.8"/></svg>') no-repeat center;
  background-size: 80%;
}

.ecommerce-bg4 {
  background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
  position: relative;
}

.ecommerce-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="40" fill="%23fff" opacity="0.8" rx="5"/><rect x="25" y="25" width="20" height="15" fill="%23333" opacity="0.6"/><rect x="25" y="45" width="50" height="3" fill="%23333" opacity="0.4"/><rect x="25" y="52" width="30" height="3" fill="%23333" opacity="0.4"/><circle cx="75" cy="75" r="8" fill="%23fff" opacity="0.9"/></svg>') no-repeat center;
  background-size: 80%;
}

.responsive-bg4 {
  background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);
  position: relative;
}

.responsive-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="30" y="15" width="40" height="25" fill="%23fff" opacity="0.8" rx="3"/><rect x="35" y="45" width="30" height="20" fill="%23fff" opacity="0.6" rx="2"/><rect x="40" y="70" width="20" height="15" fill="%23fff" opacity="0.4" rx="2"/></svg>') no-repeat center;
  background-size: 80%;
}

.portfolio-bg4 {
  background: linear-gradient(135deg, #8e24aa 0%, #7b1fa2 100%);
  position: relative;
}

.portfolio-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="40" fill="%23fff" opacity="0.8" rx="5"/><circle cx="35" cy="35" r="8" fill="%23333" opacity="0.6"/><rect x="25" y="48" width="50" height="3" fill="%23333" opacity="0.4"/><rect x="25" y="55" width="30" height="3" fill="%23333" opacity="0.4"/></svg>') no-repeat center;
  background-size: 80%;
}

.blog-bg4 {
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
  position: relative;
}

.blog-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="15" width="60" height="70" fill="%23fff" opacity="0.8" rx="5"/><rect x="25" y="25" width="50" height="4" fill="%23333" opacity="0.6"/><rect x="25" y="35" width="40" height="3" fill="%23333" opacity="0.4"/><rect x="25" y="42" width="45" height="3" fill="%23333" opacity="0.4"/><rect x="25" y="55" width="50" height="4" fill="%23333" opacity="0.6"/><rect x="25" y="65" width="35" height="3" fill="%23333" opacity="0.4"/></svg>') no-repeat center;
  background-size: 80%;
}

.dashboard-bg4 {
  background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
  position: relative;
}

.dashboard-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="15" y="15" width="25" height="25" fill="%23fff" opacity="0.8" rx="3"/><rect x="45" y="15" width="40" height="15" fill="%23fff" opacity="0.6" rx="3"/><rect x="15" y="45" width="70" height="20" fill="%23fff" opacity="0.7" rx="3"/><rect x="15" y="70" width="30" height="15" fill="%23fff" opacity="0.5" rx="3"/><rect x="50" y="70" width="35" height="15" fill="%23fff" opacity="0.6" rx="3"/></svg>') no-repeat center;
  background-size: 80%;
}

.sales-bg4 {
  background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
  position: relative;
}

.sales-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="60" width="8" height="20" fill="%23fff" opacity="0.8"/><rect x="32" y="45" width="8" height="35" fill="%23fff" opacity="0.7"/><rect x="44" y="30" width="8" height="50" fill="%23fff" opacity="0.9"/><rect x="56" y="40" width="8" height="40" fill="%23fff" opacity="0.6"/><rect x="68" y="25" width="8" height="55" fill="%23fff" opacity="0.8"/><circle cx="30" cy="20" r="12" fill="%23fff" opacity="0.5"/></svg>') no-repeat center;
  background-size: 80%;
}

.customer-bg4 {
  background: linear-gradient(135deg, #ab47bc 0%, #9c27b0 100%);
  position: relative;
}

.customer-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="25" fill="%23fff" opacity="0.8"/><circle cx="50" cy="50" r="18" fill="none" stroke="%23333" stroke-width="2" opacity="0.6"/><circle cx="50" cy="50" r="12" fill="none" stroke="%23333" stroke-width="2" opacity="0.4"/><circle cx="50" cy="50" r="6" fill="%23333" opacity="0.8"/></svg>') no-repeat center;
  background-size: 80%;
}

.market-bg4 {
  background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
  position: relative;
}

.market-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="15" fill="%23fff" opacity="0.8"/><circle cx="75" cy="25" r="10" fill="%23ffeb3b" opacity="0.9"/><circle cx="25" cy="75" r="12" fill="%234caf50" opacity="0.8"/><circle cx="75" cy="75" r="8" fill="%23ff9800" opacity="0.8"/><circle cx="50" cy="50" r="18" fill="%23e91e63" opacity="0.7"/></svg>') no-repeat center;
  background-size: 80%;
}

.financial-bg4 {
  background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
  position: relative;
}

.financial-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="40" fill="%23fff" opacity="0.8" rx="5"/><polyline points="30,45 40,35 50,40 60,30 70,35" fill="none" stroke="%23333" stroke-width="2" opacity="0.7"/><circle cx="30" cy="45" r="2" fill="%23333" opacity="0.8"/><circle cx="40" cy="35" r="2" fill="%23333" opacity="0.8"/><circle cx="50" cy="40" r="2" fill="%23333" opacity="0.8"/><circle cx="60" cy="30" r="2" fill="%23333" opacity="0.8"/><circle cx="70" cy="35" r="2" fill="%23333" opacity="0.8"/></svg>') no-repeat center;
  background-size: 80%;
}

.healthcare-bg4 {
  background: linear-gradient(135deg, #26c6da 0%, #00bcd4 100%);
  position: relative;
}

.healthcare-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="30" y="20" width="40" height="60" fill="%23fff" opacity="0.8" rx="5"/><rect x="20" y="30" width="60" height="4" fill="%23333" opacity="0.6"/><rect x="20" y="40" width="60" height="4" fill="%23333" opacity="0.6"/><rect x="20" y="50" width="60" height="4" fill="%23333" opacity="0.6"/><rect x="20" y="60" width="60" height="4" fill="%23333" opacity="0.6"/></svg>') no-repeat center;
  background-size: 80%;
}

.sports-bg4 {
  background: linear-gradient(135deg, #66bb6a 0%, #388e3c 100%);
  position: relative;
}

.sports-bg4::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="25" fill="%23fff" opacity="0.8"/><rect x="45" y="30" width="10" height="40" fill="%23333" opacity="0.6"/><rect x="30" y="45" width="40" height="10" fill="%23333" opacity="0.6"/><circle cx="50" cy="50" r="8" fill="%23333" opacity="0.4"/></svg>') no-repeat center;
  background-size: 80%;
}











/* Media Queries */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
    --section-padding: 3rem 1.5rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .expertise-wrapper {
    height: 350px;
  }
  
  .wrap-dots {
    width: 200px;
    height: 160px;
  }
  
  .wrap-main-image {
    width: 500px;
    height: 350px;
  }
  
  .expertise-tag {
    width: 100px;
    height: 100px;
    left: 75%;
    font-size: 0.9rem;
  }





  
/* project */

  .container,
  .header-content {
    padding: 0 30px;
  }

  .projects-title {
    font-size: 2.5rem;
  }

  .project-main-title,
  .data-title {
    font-size: 2rem;
  }

  .web-dev-card,
  .data-content-card {
    padding: 30px;
  }



  /* contact */

  .portfolio-header .nav-links {
    gap: 25px;
  }

  .portfolio-header .nav-links a {
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .contact-content h2 {
    font-size: 2.8rem;
  }

  .contact-buttons {
    gap: 30px;
  }

  .contact-btn {
    min-width: 260px;
    padding: 18px 35px;
  }

  .form-content h2 {
    font-size: 2.3rem;
  }

  .form-row {
    gap: 25px;
  }




  /* portfolio */


  .reviews-container3 {
    flex-direction: column;
  }

  .reviews-sidebar3 {
    width: 100%;
    order: 1;
  }

  .reviews-content3 {
    order: 2;
  }

  .filter-buttons3 {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .filter-btn3 {
    flex: 1;
    min-width: 120px;
  }





  /* project next */

  .my-projects4 {
    padding: 1.5rem;
  }

  .project-grid4 {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 2rem 1rem;
  }
  
  .header-content {
    padding: 0.8rem 1rem;
  }
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: var(--secondary-bg);
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 1rem;
    border-radius: 10px;
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  
  .nav a {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .expertise-wrapper {
    height: 300px;
  }
  
  .wrap-dots {
    width: 150px;
    height: 120px;
  }
  
  .wrap-main-image {
    width: 400px;
    height: 300px;
  }
  
  .expertise-tag {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-item::after {
    left: 4rem;
  }
  
  .services-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-tags {
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }




  



  /* project */

  .container,
  .header-content {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #333333;
    gap: 20px;
  }

  .nav.open {
    display: flex;
  }

  .projects-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .projects-grid2.row-1,
  .projects-grid2.row-2 {
    grid-template-columns: 1fr;
  }

  .project-main-title,
  .data-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .web-dev-card,
  .data-content-card {
    padding: 25px;
    min-height: 250px;
  }

  .footer-content2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }









  /* contact */

  .portfolio-header .nav-links {
    display: none;
  }

  .portfolio-header .mobile-menu-btn {
    display: block;
  }

  .portfolio-header .logo {
    font-size: 22px;
  }


  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }


  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .contact-btn {
    min-width: auto;
    padding: 16px 30px;
    font-size: 1rem;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .form-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .submit-btn {
    float: none;
    width: 100%;
    padding: 14px 30px;
    font-size: 1rem;
  }





  /* portfolio */


  .nav-menu3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #444;
  }

  .nav-menu3.active {
    display: flex;
  }

  .mobile-toggle3 {
    display: flex;
  }


   .hero-buttons3 {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-btn3 {
    width: 80%;
  }


  .hero-content3 {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .hero-text3 {
    max-width: 100%;
  }

  .profile-card3 {
    width: 100%;
    max-width: 400px;
  }

  .hero-title3 {
    font-size: 36px;
  }

  .hero-subtitle3 {
    font-size: 18px;
  }

  .hero-stats3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero-section3 {
    height: auto;
    min-height: 500px;
  }

  .hero-content3 {
    padding: 40px 20px;
  }

  .profile-card3 {
    padding: 20px;
    width: 100%;
  }

  .reviews-section3 {
    padding: 40px 0;
  }

  .reviews-container3 {
    padding: 0 15px;
  }

  .review-header3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-meta3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .review-images3 {
    flex-wrap: wrap;
  }

  .reviews-header3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .sort-section3 {
    align-self: flex-end;
  }



  /* for project next */



  .my-projects4 {
    padding: 1rem;
  }

  .project-grid4 {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-img img {
    max-width: 280px;
  }
  
  .image-cards {
    margin-top: -20px;
    margin-left: -10%;
  }

  .image-card {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  
  .social-links {
    gap: 0.8rem;
  }
  
  .social-links div {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .expertise-wrapper {
    height: 250px;
  }
  
  .wrap-dots {
    width: 120px;
    height: 100px;
  }

  .wrap-main-image {
    width: 280px;
    height: 230px;
  }
  
  .expertise-tag {
    width: 70px;
    height: 70px;
    font-size: 0.7rem;
  }
  
  .service-item {
    gap: 1.5rem;
  }
  
  .service-item::after {
    left: 3rem;
  }
  
  .project-tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .project-content {
    padding: 1.2rem;
  }
  .footer-content2 {
    grid-template-columns: 2fr;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-section {
    width: 90vw;
  }





  





  /* project */
  
  .container,
  .header-content {
    padding: 0 15px;
  }

  .header {
    padding: 15px 0;
  }

  .logo {
    font-size: 1.3rem;
  }

  .projects-section2,
  .client-work-section {
    padding: 40px 0;
  }

  .projects-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .projects-wrap {
    gap: 30px;
  }

  .projects-grid2 {
    gap: 20px;
  }

  .project-main-title,
  .data-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .web-dev-card,
  .data-content-card {
    padding: 20px;
    min-height: 220px;
  }

  .project-category,
  .data-category {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .view-details-btn,
  .view-details-btn-blue{
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .footer-content2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer2 {
    padding: 30px 0;
  }







  /* contact */

  .portfolio-header {
    padding: 12px 0;
  }

  .portfolio-header .logo {
    font-size: 20px;
  }

  .portfolio-header .mobile-menu-btn {
    font-size: 22px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .contact-buttons {
    gap: 18px;
  }

  .contact-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .contact-btn svg {
    width: 18px;
    height: 18px;
  }

  .contact-form-section {
    padding: 50px 0;
  }

  .form-content h2 {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }

  .form-row {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    margin-top: 15px;
  }






  /* portfolio */



  .hero-title3 {
    font-size: 28px;
  }

  .hero-subtitle3 {
    font-size: 16px;
  }

  .hero-buttons3 {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn3 {
    width: 100%;
  }

  .profile-actions3 {
    flex-direction: column;
  }

  .header-container3 {
    padding: 0 15px;
  }

  .hero-stats3 {
    gap: 15px;
  }

  .stat-number3 {
    font-size: 20px;
  }

  .reviews-title3 {
    font-size: 24px;
  }

  .filter-btn3 {
    min-width: 100px;
    font-size: 14px;
  }



  /* for project next */


  .my-projects4 {
    padding: 1rem 0.5rem;
  }

  .project-grid4 {
    gap: 1rem;
    width: 95vw;
  }

  .project-info4 {
    padding: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-img img {
    max-width: 250px;
  }
  
  .expertise-wrapper {
    height: 200px;
  }

  .image-cards {
    margin-left: -17%;
  }
  .image-card {
    padding: 0.4rem;
    margin-top: 27px;
  }
  
  .wrap-main-image {
    width: 230px;
    height: 180px;
  }
  
  .expertise-tag {
    width: 60px;
    height: 60px;
    font-size: 0.6rem;
  }
  
  .services-grid,
  .projects-grid {
    gap: 1.5rem;
  }





  /* contact */

  .portfolio-header {
    padding: 10px 0;
  }

  .portfolio-header .logo {
    font-size: 18px;
  }

  .portfolio-header .mobile-menu-btn {
    font-size: 20px;
  }

  .mobile-menu {
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-content h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .contact-buttons {
    gap: 15px;
  }

  .contact-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 10px;
    border-radius: 40px;
  }

  .contact-btn svg {
    width: 16px;
    height: 16px;
  }

  .contact-form-section {
    padding: 40px 0;
  }

  .form-content h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .form-row {
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .submit-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 12px;
    border-radius: 20px;
  }





  /* portfolio */


  .header-container3 {
    padding: 0 10px;
  }

  .hero-content3 {
    padding: 30px 10px;
  }

  .hero-title3 {
    font-size: 24px;
  }

  .hero-subtitle3 {
    font-size: 14px;
  }

  .hero-btn3 {
    padding: 10px 16px;
    font-size: 14px;
  }

  .profile-card3 {
    padding: 15px;
  }

  .profile-image3 {
    width: 200px;
    height: 200px;
    font-size: 40px;
  }

  .profile-name3 {
    font-size: 20px;
  }

  .reviews-container3 {
    padding: 0 10px;
  }

  .review-card3 {
    padding: 15px;
  }

  .filter-btn3 {
    min-width: 80px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .reviews-title3 {
    font-size: 20px;
  }

  .hero-stats3 {
    gap: 10px;
  }

  .stat-number3 {
    font-size: 18px;
  }

  .stat-label3 {
    font-size: 12px;
  }



  /* for profile next */


  .my-projects4 {
    padding: 0.3rem;
  }

  .project-grid4 {
    gap: 0.75rem;
    padding-right: -100px;
  }

  .project-info4 {
    padding: 0.75rem;
  }

  .section-title4 {
    font-size: 1.5rem;
  }

  .section-subtitle4 {
    font-size: 1rem;
  }


}