/* Theme variables for quick color changes */

{box-sizing: border-box; margin: 0; padding: 0;}
html, body {
    overflow-x: hidden;
}
:root {
  --bg-deep: #ffffff;
  --bg-navy: #0e1b4a;
  --bg-royal: #12235f;
  --accent-blue: #4169E1;
  --accent-orange: #ff6a2a;
  --text-main: #ffffff;
  --text-muted: #a8b3cf;
  --divider: rgba(255,255,255,0.12);
}

/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
}

/* Utility */
a {
  text-decoration: none;
  color: inherit;
}

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(to right, #0000b6, #060ab8);x
  color: #a8b3cf;
  font-size: 13px;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar .social-icons a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
}

.top-bar .social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(123, 44, 191, 0.5);
  background: linear-gradient(135deg, #0a0e27 0%, #151b3d 100%);
}

.top-bar .social-icons a i {
  font-size: 16px;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar .contact-info a {
  color: #ffffff;
  transition: color 0.3s ease;
  font-size: 15px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600px;
}

.top-bar .contact-info a:hover {
  color: #ffffff;
}

.top-bar .contact-info i {
  margin-right: 6px;
}

/* Stack top bar on small screens */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 20px;
    
    align-items: flex-start;
    gap: 12px;
  }
  
  .top-bar .social-icons {
    gap: 10px;
    margin-top: 10px;
  }
  
  .top-bar .social-icons a {
    width: 28px;
    height: 28px;
  }
  
  .top-bar .social-icons a i {
    font-size: 14px;
  }
  
  .top-bar .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .top-bar .contact-info a {
    font-size: 12px;
  }

/* Phone layout: icon chips row + image + title */
@media (max-width: 576px) {
  .tabs-container { gap: 16px; }
  .tabs-left { order: 0; }
  .tabs-right { order: 1; }
  /* turn left list into horizontal chips */
  .tabs-left {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .tabs-left::-webkit-scrollbar { height: 6px; }
  .tabs-left::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 999px; }
  .service-tab {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0; /* hide long text inside chip */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  }
  .service-tab.active { background: #4169e1e0; box-shadow: 0 12px 26px rgba(65,105,225,0.35); }
  /* use icon inside chips via pseudo-dot for now */
  .service-tab::before {
    
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: #e7ebff;
    border: 1px solid #000000;
  }
  .tabs-media img { border-radius: 16px; }
  .tabs-content h3 { font-size: 22px; }
  .tabs-content p { font-size: 15px; }
  .tabs-cta { gap: 12px; }
}
}

/* ===== Header / Main Nav ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Desktop Nav */
nav#navMenu > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav#navMenu ul li a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #000000;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

nav#navMenu ul li a:hover,
nav#navMenu ul li a.active {
  background: linear-gradient(to right, #5252d7, #060ab8);
  color: #ffffff;
}

/* Let's Talk button in nav */
.btn-talk {
  background: linear-gradient(to right, #5252d7, #060ab8);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.btn-talk:hover {
  background: #5178e8 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(65, 105, 225, 0.4);
}

.btn-talk i {
  font-size: 14px;
}

/* Remove the bottom border animation */
nav#navMenu ul li a::after {
  display: none;
}

/* Dropdown (desktop) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 200;
  
}

/* Ensure dropdown menu is vertical and not affected by parent flex */
.dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.dropdown-menu li { 
  width: 100%; 
  list-style: none;
}
.dropdown-menu li a { display: block; white-space: nowrap; }

.dropdown-menu li {
  width: 100%;
  list-style: none;
}

.dropdown-menu li a { 
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #d4d7de;
}

.dropdown-menu li a:hover {
  background: rgba(42, 111, 240, 0.1);
  color: #ffffff;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* Menu toggle (hamburger) */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #020ff9;
}

/* ===== Mobile Nav ===== */
@media (max-width: 991px) {
  header {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
  }

  nav#navMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #0e1116;
    padding: 80px 16px 20px;
    transition: left 0.3s ease;
    z-index: 150;
  }

  nav#navMenu.active {
    left: 0;
  }

  nav#navMenu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  nav#navMenu ul li a::after {
    display: none; /* remove underline animation in mobile */
  }

  /* Comfortable mobile pill buttons */
  nav#navMenu ul li a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(65,105,225,0.15);
    color: #e7ebff;
    box-shadow: 0 10px 24px rgba(65,105,225,0.25);
  }

  nav#navMenu ul li a.active,
  nav#navMenu ul li a:hover {
    background: #4169E1;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(65,105,225,0.35);
  }

  /* Dropdown in mobile – open class controlled via JS */
  .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    padding: 6px 0 0 14px;
    margin-top: 6px;
  }

  .dropdown-menu li a {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #cfd3da;
  }

  .dropdown-menu li a:hover {
    background: rgba(65,105,225,0.18);
    color: #ffffff;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }
}

/* ===== Overlay Right Panel ===== */
.overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  max-width: 86%;
  height: 100vh;
  background: #15191f;
  color: #ffffff;
  z-index: 200;
  padding: 24px 24px 32px;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.8);
  transition: right 0.3s ease;
}

.overlay.open {
  right: 0;
}

.overlay .close-btn {
  text-align: right;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 16px;
}

.overlay .logo-img {
  height: 48px;
  margin-bottom: 16px;
}

.overlay p {
  font-size: 14px;
  color: #cfd3da;
  margin-bottom: 18px;
}

.overlay .info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #e2e5ec;
}

.overlay .info-item i {
  margin-top: 3px;
  color: #2A6FF0;
}

.overlay .social-icons {
  margin: 18px 0;
}

.overlay .social-icons a {
  margin-right: 10px;
  color: #cfd3da;
}

.overlay .social-icons a:hover {
  color: #2A6FF0;
}

.overlay .purchase-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2A6FF0, #4c8dff);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

/* ===== Hero Section (Left content / Right image) ===== */
.header.creative {
  position: relative;
  padding: 80px 60px 80px;
  background: url("../images/banner-image-4.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/* Add decorative gradient orbs */
.header.creative::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(65, 105, 225, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.header.creative::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.custom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.header-content {
  flex: 1 1 55%;
}

.header-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

.header-image img {
  max-width: 110%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Badge */
  .badge {
  display: inline-block;
  background: rgba(65, 105, 225, 0.15);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(65, 105, 225, 0.3);
}

.badge h1 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

/* Hero Text - H1 and H2 with same style */
.main-heading,

h2.main-heading {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(50px, 5vw, 70px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #a8b3cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-heading {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 580px;
}

/* Buttons */
.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.btn.gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #4169e100;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
  border: 1px solid #ffffff;
}

.btn.gradient-btn i {
  font-size: 16px;
}

.btn.gradient-btn:hover {
  background: linear-gradient(to right, #5252d7, #060ab8);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(65, 105, 225, 0.4);
}

/* Stats Section */
.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: #a8b3cf;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero responsive */
@media (max-width: 991px) {
  .header.creative {
    padding: 60px 24px 70px;
  }

  .custom-container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .header-content,
  .header-image {
    flex: 1 1 100%;
  }

  .header-content {
    max-width: 100%;
    
  }

  .sub-heading {
    max-width: 100%;
    font-size: 16px;
  }

  .button-container {
    justify-content: center;
    gap: 12px;
  }

  .hero-stats {
    justify-content: center;
    gap: 40px;
  }

  .header-image img {
    max-width: 350px;
  }

  header {
    padding: 14px 24px;
  }
}

@media (max-width: 768px) {
  .header.creative {
    padding: 50px 20px 60px;
  }

  .main-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .sub-heading {
    font-size: 15px;
    line-height: 1.5;
  }

  .header-image img {
    max-width: 350px;
  }

  .button-container {
    gap: 10px;
  }

  .hero-stats {
    gap: 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .header.creative {
    padding: 35px 15px 45px;
  }

  .main-heading {
    font-size: 26px;
    line-height: 1.3;
  }

  .sub-heading {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }

  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 12px;
  }

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

  .btn.gradient-btn {
    font-size: 14px;
    padding: 12px 15px;
  }

  .top-bar {
    font-size: 11px;
    padding: 8px 15px;
  }

  header {
    padding: 12px 15px;
  }

  .logo img {
    height: 40px;
  }
  
  .button-container {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0px;
  }
  
  .button-container a {
    font-size: 14px;
    padding: 10px 20px;
  }
}

.seo-expert-section1 {
  padding: 60px 60px;
  background: linear-gradient(to right, #0000b6, #060ab8);
}

.seo-expert-content1 h2 {
  font-size: 36px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
}


.seo-expert-content1 p { font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "Nunito", sans-serif;
  margin-top: 15px;
}

.feature-item1  {
  
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 5px;
} 

.features-grid1 .experience-text1 {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin-top: 12px;
  font-family: "Nunito", sans-serif;
}

.features-grid1 h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}


/* ===== SEO Expert Section ===== */
.seo-expert-section {
  padding: 60px 60px;
  background: #ffffff;
}

.seo-expert-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seo-expert-image {
  position: relative;
}

.seo-expert-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  
}

.seo-expert-content h2 {
  font-size: 36px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.seo-expert-content .intro-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "Nunito", sans-serif;
}

.seo-expert-content .experience-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: "Nunito", sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}

.feature-item i {
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .seo-expert-section {
    padding: 70px 30px;
  }

  .seo-expert-container {
    grid-template-columns: 1fr;
    gap: 05px;
  }

  .seo-expert-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

@media (max-width: 576px) {
  .seo-expert-section {
    padding: 40px 15px;
  }

  .seo-expert-content h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .seo-expert-content .intro-text,
  .seo-expert-content .experience-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .feature-item {
    font-size: 14px;
    padding: 8px 0;
  }
  
  .feature-item i {
    margin-right: 8px;
  }
}

/* ===== Services Section - Purple Gradient Cards ===== */
.services-modern {
  padding: 60px 60px;
  background: linear-gradient(to right, #0000b6, #060ab8);
}

.services-modern h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
 
}

.services-modern p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: center;
  margin-left: 60px;
  margin-right: 60px;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, rgba(20, 15, 40, 0) 0%, rgba(30, 20, 60, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.612);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(130, 71, 229, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(130, 71, 229, 0.6);
  box-shadow: 0 20px 40px rgba(130, 71, 229, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8147e500 0%, #a955f700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.559);
  box-shadow: 0 8px 24px rgba(130, 71, 229, 0.4);
  margin-left: 140px;
}

.service-icon i {
  font-size: 28px;
  color: #ffffff;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #8147e500 0%, #a955f700 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.612);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(130, 71, 229, 0.3);
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(130, 71, 229, 0.5);
  background: linear-gradient(135deg, #9257F5 0%, #B865FF 100%);
}

/* Responsive */
@media (max-width: 991px) {
  .services-modern {
    padding: 60px 30px;
  }
  
  .services-modern h2 {
    font-size: 32px;
  }
  
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .service-card {
    padding: 32px 24px;
  }
  
  .service-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .services-modern {
    padding: 40px 15px;
  }
  
  .services-modern h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .services-modern p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .services-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    padding: 24px 16px;
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
        margin-bottom: 16px;
    margin-left: 150px;
  }
  
  .service-icon i {
    font-size: 22px;
  }
  
  .service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .service-card p {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
}

/* ===== Tabbed Services (Left list -> Right content) ===== */
.services-tabs {
  padding: 80px 60px;
  background: #ffffff ;
}

.services-tabs .section-head {
  max-width: 860px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.services-tabs .section-head .bar {
  display: inline-block;
  width: 220px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
  border-radius: 10px;
  margin-bottom: 16px;
}

.services-tabs .section-head h2 {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: #000000;
}

.services-tabs .section-head p {
  color: #000000;
  font-size: 16px;
}

.tabs-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
}

.tabs-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-right: 55px;
  margin-top: 55px;
}

.service-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  border-radius: 999px;
  border: 1px solid #0100c0;
  background: rgba(255, 255, 255, 0);
  color: #0100c0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(7, 7, 7, 0);
  transition: all 0.25s ease;
  font-family: "Rajdhani", sans-serif;

}

.service-tab i {
  display: none;
}

.service-tab:hover {
  background: rgba(255,255,255,0.08);
}

.service-tab.active {
  background: linear-gradient(to right, #0000b6, #060ab8);

  color: #ffffff;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 26px rgba(65,105,225,0.35);
  border: 1px solid #0100be;
}

.tabs-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tabs-media img {
  width: 52%;
  height: auto;
  border-radius: 18px;
  margin-left: 120px;
}

.tabs-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000000;
}

.tabs-content p {
  color: #000000;
  font-size: 16px;
  line-height: 1.8;
}

.tabs-cta {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn.primary {
  background: #4169E1;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn.primary:hover { background: #5178e8; transform: translateY(-2px); }

.btn.secondary {
  background: transparent;
  color: #e7ebff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
}

.btn.secondary:hover { background: rgba(255,255,255,0.06); }

@media (max-width: 1100px) {
  .tabs-container { grid-template-columns: 1fr; }
  .tabs-left { order: 2; }
  .tabs-right { order: 1; }
}

@media (max-width: 768px) {
  .services-tabs {
    padding: 50px 20px;
  }

  .services-tabs .section-head h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .services-tabs .section-head p {
    font-size: 14px;
  }

  .tabs-container {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .tabs-left {
    margin-right: 0;
    margin-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1px;
    order: 1;
    justify-content: center;
    padding: 10px 0;
  }

  .service-tab {
    flex: 0 0 auto;
    width: 55px;
    height: 55px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #0100c0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .service-tab.active {
    background: linear-gradient(to right, #0000b6, #060ab8);
    border-color: #0100be;
    box-shadow: 0 4px 12px rgba(1, 0, 192, 0.3);
    color: #ffffff;
  }
  
  .service-tab i {
    display: inline-block;
    font-size: 18px;
  }
  
  .service-tab .tab-text {
    display: none;
  }

  .tabs-right {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .tabs-media {
    order: 1;
  }

  .tabs-media img {
    width: 100%;
    margin-left: 0;
    border-radius: 16px;
  }

  .tabs-content {
    order: 2;
  }

  .tabs-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .tabs-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .tabs-cta {
    margin-top: 16px;
  }

  .btn.primary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  padding: 80px 60px;
  background: /* Light wave highlight */ radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.08), transparent 60%), /* Dark curved layer */ radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.25), transparent 70%), /* Medium curved layer */ radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.05), transparent 70%), /* Main deep blue gradient */ linear-gradient(135deg, #0514A6 0%, #0817B8 35%, #0A1ECF 65%, #0C25E8 100%);
  text-align: center;
}

.why-choose-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.section-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.section-header .dot.orange {
  background: #ff6a2a;
}

.section-header .dot.blue {
  background: #2563eb;
}

.section-header .subtitle {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 8px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.why-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2564eb00 0%, #1d4fd800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.why-feature:hover .why-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.why-icon i {
  font-size: 32px;
  color: #ffffff;
}

.why-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}



.bottom-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bottom-section .bottom-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  font-weight: 500;
  margin-bottom: 24px;
}

.bottom-section .bottom-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  text-align: justify;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .why-choose-us {
    padding: 60px 30px;
  }

  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .bottom-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .why-choose-us {
    padding: 50px 20px;
  }

  .why-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .why-feature:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header .subtitle {
    font-size: 18px;
  }

  .bottom-section h2 {
    font-size: 22px;
  }

  .bottom-section .bottom-subtitle {
    font-size: 18px;
  }

  .bottom-section .bottom-text {
    font-size: 15px;
    text-align: left;
  }

  .why-icon {
    width: 70px;
    height: 70px;
  }

  .why-icon i {
    font-size: 28px;
  }

  .why-feature h3 {
    font-size: 16px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 80px 60px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  position: relative;
}

.faq-container {
  max-width: 1320px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.faq-category-btn {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #0100c0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-category-btn i {
  font-size: 32px;
  color: #0f03ff;
  transition: all 0.3s ease;
}

.faq-category-btn span {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.faq-category-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.faq-category-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.faq-category-btn.active i,
.faq-category-btn.active span {
  color: #ffffff;
}

.faq-items-container {
  position: relative;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
}

.faq-question i {
  font-size: 14px;
  color: #0100c0;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 163, 97, 0);
  border: 1px solid #0100c0;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: #0100c0;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 60px 30px;
  }

  .faq-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq-category-btn {
    padding: 20px 16px;
  }

  .faq-category-btn i {
    font-size: 28px;
  }

  .faq-category-btn span {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 50px 20px;
  }

  .faq-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-header p {
    font-size: 16px;
  }

  .faq-category-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-category-btn i {
    font-size: 20px;
  }

  .faq-category-btn span {
    display: none;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(to right, #0000b6, #060ab8);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  margin-left: 20px;
  border-radius: 50px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%);
  background-size: 100px 100px;
  pointer-events: none;
  opacity: 0.5;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: #e0e7ff;
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.btn-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: #ffffff;
  color: #0020a0;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: linear-gradient(to right, #0000b6, #060ab8);
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: #0000b6;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cta-heading {
    font-size: 24px;
  }

  .cta-description {
    font-size: 15px;
  }
}

/* ===== SEO Stich FAQ Section ===== */
.seostich-faq-section {
  background: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.seostich-faq-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seostich-faq-left {
  color: #000000;
}

.seostich-faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #161515;
  margin-bottom: 20px;
  line-height: 1.2;
}

.seostich-faq-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  max-width: 500px;
  margin-bottom: 20px;
}

.seostich-faq-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seostich-faq-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.seostich-faq-questions {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seostich-faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.seostich-faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.seostich-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  user-select: none;
  transition: all 0.3s ease;
  background: #e0e7ff;
}

.seostich-faq-question:hover {
  background: rgba(30, 95, 255, 0.05);
}

.seostich-faq-question i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3b9a 0%, #1e5fff 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.seostich-faq-item.active .seostich-faq-question i {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #1e5fff 0%, #0d47a1 100%);
}

.seostich-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.seostich-faq-item.active .seostich-faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.seostich-faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .seostich-faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .seostich-faq-right {
    order: -1;
  }

  .seostich-faq-image img {
    max-width: 400px;
  }

  .seostich-faq-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .seostich-faq-section {
    padding: 60px 15px;
  }

  .seostich-faq-title {
    font-size: 28px;
  }

  .seostich-faq-subtitle {
    font-size: 15px;
  }

  .seostich-faq-question {
    padding: 20px 20px;
    font-size: 16px;
  }

  .seostich-faq-question i {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .seostich-faq-item.active .seostich-faq-answer {
    padding: 0 20px 20px 20px;
  }

  .seostich-faq-answer p {
    font-size: 14px;
  }

  .seostich-faq-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .seostich-faq-title {
    font-size: 24px;
  }

  .seostich-faq-question {
    font-size: 15px;
    padding: 18px 16px;
  }

  .seostich-faq-answer p {
    font-size: 13.5px;
  }
}

/* ===== Contact & Join Section ===== */
.contact-join-section {
  background: #f8f9fb;
  padding: 80px 20px;
  text-align: center;
}

.contact-join-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: #0000b6;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-join-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-join-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, 	#060ab8, #0d47a1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #ffffff;
}

.info-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 14px;
  color: #666666;
  margin: 8px 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-join-section {
    padding: 60px 15px;
  }

  .contact-join-title {
    font-size: 32px;
  }

  .contact-join-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-card {
    padding: 24px 20px;
  }
}

/* ===== Contact Form Section ===== */
.contact-form-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-form-left {
  position: relative;
}

.contact-form-image {
  position: relative;
}

.contact-form-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.contact-form-card {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: linear-gradient(135deg, #ff6a2a 0%, #ff8a4d 100%);
  color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: 0 12px 40px rgba(255, 106, 42, 0.3);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-form-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-form-card p {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-btn {
  display: inline-block;
  background: #ffffff;
  color: #ff6a2a;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form-right {
  padding-left: 20px;
}

.contact-form-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  margin-top: 10px;
  line-height: 1.3;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0000b6;
  box-shadow: 0 0 0 3px rgba(89, 55, 40, 0.1);
}

.submit-btn {
  background: linear-gradient(to right, #0000b6, #060ab8);
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 42, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-right {
    padding-left: 0;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-form-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 15px;
  }

  .contact-form-container {
    gap: 30px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-form {
    gap: 16px;
  }

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

  .submit-btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }
}


/* ===== What Sets Us Apart (seostich) ===== */
.seostich-apart-section {
  background: #ffffff;
  padding: 72px 20px;
}

.seostich-apart-container {
  max-width: 1100px;
  margin: 0 auto;
}

.seostich-apart-title {
  font-size: 34px;
  text-align: center;
  color: #0b1320;
  margin-bottom: 12px;
}

.seostich-apart-sub {
  text-align: center;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.seostich-apart-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.seostich-apart-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.seostich-apart-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg,#1e5fff 0%, #0d47a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.seostich-apart-content {
  flex: 1 1 auto;
}

.seostich-apart-heading {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0b1320;
}

.seostich-apart-item p {
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

.seostich-apart-divider {
  border: 0;
  border-top: 2px dotted rgba(99,102,241,0.35);
  margin: 18px 0 6px 74px;
}

@media (max-width: 992px) {
  .seostich-apart-container { padding: 0 20px; }
}

@media (max-width: 768px) {
  .seostich-apart-section { padding: 48px 16px; }
  .seostich-apart-item { flex-direction: row; gap: 14px; }
  .seostich-apart-divider { margin-left: 64px; }
}

/* ===== Suresh: Working Process ===== */
.suresh-process-section {
  background: linear-gradient(to right, #0000b6, #060ab8);
  padding: 72px 20px;
  color: #fff;
  margin-bottom: 30px;
}

.suresh-process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.suresh-process-title {
  font-size: 36px;
  margin-bottom: 36px;
  font-weight: 700;
  color: #ffffff;
}

.suresh-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

.suresh-process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.suresh-process-icon {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.06), 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.suresh-process-icon img {
  max-width: 70%;
  max-height: 70%;
  display: block;
}

.suresh-process-icon.suresh-highlight {
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 18px 36px rgba(2,6,23,0.4);
  transform: scale(1.04);


}

.suresh-process-label {
  font-size: 16px;
  color: #f8fbff;
  max-width: 220px;
  line-height: 1.4;
  text-align: center;
}

.suresh-process-item:hover .suresh-process-icon {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(2,6,23,0.45);
}

@media (max-width: 1024px) {
  .suresh-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .suresh-process-title { font-size: 28px; }
  
  .suresh-process-icon { width: 140px; height: 140px; }
  .suresh-process-label { max-width: 320px; font-size: 15px; }
}

/* ===== Footer Modern ===== */
.footer-modern {
  /* background: url("E:/SEO Stich/new/images/banner-image-4.jpg") no-repeat center center; */
  background: url("../images/banner-image-4.jpg") no-repeat center center;
  background-size: cover;
  color: #e7ebff;
}

.footer-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */
.footer-topbar {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-topbar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.footer-topbar .ft-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e7ebff;
}

.footer-topbar .ft-item i {
  background: rgba(255,255,255,0.12);
  color: #ff6a2a;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.footer-topbar a { color: #e7ebff; }

/* Body */
.footer-body {
  padding: 40px 0 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-body .cols {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-modern .brand img {
  height: 60px;
  border-radius: 6px;
  margin-bottom: 16px;
  
}

.footer-modern h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 10px 0 12px 0;
}

.footer-modern h4 i {
  color: #ff6a2a;
  margin-right: 8px;
}

.footer-modern p { color: #ffffff; line-height: 1.8; margin-right: 5px;}

.footer-modern ul { list-style: none; padding: 0; margin: 0; }
.footer-modern ul li { margin: 12px 0; }
.footer-modern ul li a { color: #e7ebff; }
.footer-modern ul li a:hover { color: #ffbf00; }

/* Contact Info with Icons */
.footer-modern .contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #e7ebff;
}

.footer-modern .contact-list li i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4169E1 0%, #1e4db7 100%);
  color: #ffffff;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.footer-modern .contact-list li span,
.footer-modern .contact-list li a {
  color: #e7ebff;
  font-size: 14px;
}

.footer-modern .contact-list li a:hover {
  color: #ffbf00;
}

.footer-modern .social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
   margin-left: 30px;
}

.footer-modern .social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a2cbf00 0%, #59189a00 100%);
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
}

.footer-modern .social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(123, 44, 191, 0.5);
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.footer-modern .social a i {
  font-size: 16px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 16px 0;
}
.footer-bottom p { color: #e7ebff; font-size: 14px; }
.footer-bottom strong { color: #ffffff; }

/* Responsive */
@media (max-width: 992px) {
  .footer-body .cols { 
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-modern .col.about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-body .cols { 
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-modern .col.about {
    grid-column: auto;
  }
  
  .footer-modern .contact-list li {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .footer-modern .contact-list li i {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .footer-modern .contact-list li span,
  .footer-modern .contact-list li a {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .footer-body {
    padding: 30px 0 20px 0;
  }
  
  .footer-modern h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-modern .brand img {
    
    height: 60px;
  }
  
  .footer-modern p {
    font-size: 14px;
  }
  
  .footer-modern .contact-list li {
    margin: 12px 0;
  }
  
  .footer-modern .social {
    gap: 10px;
    margin-top: 12px;
   
  }
  
  .footer-modern .social a {
    width: 38px;
    height: 38px;
  }
  
  .footer-modern .social a i {
    font-size: 14px;
  }
  
  .footer-bottom p {
    font-size: 12px;
    padding: 0 10px;
  }
}

/* ===== Experience Highlight (About Us) ===== */
.dm-experience {
  background: linear-gradient(135deg, #f7f5f3 0%, #ffffff 60%);
  color: #1f2733;
  padding: 80px 20px 60px;
}

.dm-experience__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dm-experience__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.dm-experience__blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #f0d7c3;
  z-index: 1;
}

.dm-experience__image {
  position: relative;
  z-index: 2;
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.dm-experience__pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  color: #1f2733;
  min-width: 140px;
}

.dm-experience__pill-value {
  font-size: 20px;
}

.dm-experience__pill-label {
  font-size: 13px;
  color: #4a5568;
}

.dm-experience__pill--top {
  top: 18%;
  left: 8%;
}

.dm-experience__pill--bottom {
  bottom: 12%;
  right: 4%;
}

.dm-experience__card {
  position: absolute;
  top: 36%;
  right: -6%;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
  min-width: 140px;
  z-index: 3;
  border: 1px solid rgba(0,0,0,0.05);
}

.dm-experience__card-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 6px;
}

.dm-experience__card-value {
  font-size: 22px;
  font-weight: 800;
  color: #16a34a;
}

.dm-experience__content {
  z-index: 2;
}

.dm-experience__tag {
  display: inline-block;
  padding: 8px 14px;
  background: #fff3e6;
  color: #d97706;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dm-experience__title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1f2733;
}

.dm-experience__text {
  font-size: 16px;
  color: #334155;
  margin-bottom: 14px;
}

.dm-experience__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dm-experience__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #eef2ff;
  color: #312e81;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(49, 46, 129, 0.12);
}

@media (max-width: 1024px) {
  .dm-experience__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .dm-experience__visual {
    order: -1;
    min-height: 320px;
  }
  .dm-experience__card { right: 10%; }
  .dm-experience__pill--top { left: 12%; }
  .dm-experience__pill--bottom { right: 12%; }
}

@media (max-width: 640px) {
  .dm-experience {
    padding: 60px 16px;
  }
  .dm-experience__title {
    font-size: 26px;
  }
  .dm-experience__text {
    font-size: 15px;
  }
  .dm-experience__pill {
    min-width: 0;
    padding: 10px 12px;
    gap: 8px;
  }
  .dm-experience__card { right: 6%; }
  .dm-experience__pill--top { left: 6%; }
  .dm-experience__pill--bottom { right: 6%; }
}

/* ===== Metrics Strip ===== */
.metrics-strip {
  background: linear-gradient(to right, #0000b6, #060ab8);
  color: #ffffff;
  padding: 42px 20px;
  border-radius: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.metrics-strip__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.metrics-strip__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.metrics-strip__value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.metrics-strip__suffix {
  font-size: 16px;
  color: #ff7a36;
  font-weight: 800;
}

.metrics-strip__label {
  font-size: 15px;
  font-weight: 700;
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .metrics-strip__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }
}

@media (max-width: 540px) {
  .metrics-strip__container {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .metrics-strip__value { font-size: 30px; }
  .metrics-strip__label { font-size: 14px; }
}

/* ===== Team Grid ===== */
.team-grid {
  background: #ffffff;
  color: #e5e7eb;
  padding: 80px 20px 70px;
}

.team-grid__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.team-grid__head h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #000000;
}

.team-grid__head p {
  margin: 0;
  color: #000000;
  font-size: 16px;
}

.team-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  background: linear-gradient(to right, #0000b6, #060ab8);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1425;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  text-align: left;
}

.team-card__role {
  font-size: 15px;
  font-weight: 700;
  color: #f7fbff;
  margin: 2px 0 6px;
}

.team-card__bio {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

.team-card__socials {
  display: flex;
  gap: 10px;
}

.team-card__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #060ab8;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.team-card__socials a:hover {
  transform: translateY(-2px);
  background: #2c3c5f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .team-grid__cards {
    grid-template-columns: 1fr;
  }
  .team-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .team-card__avatar {
    margin: 0 auto;
  }
  .team-card__socials {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .team-grid {
    padding: 64px 16px 56px;
  }
  .team-grid__head h2 { font-size: 26px; }
  .team-card { padding: 18px; }
  .team-card__avatar {
    width: 100px;
    height: 100px;
  }
}

/* ===== Vision / Mission / Philosophy ===== */
.vm-block {
  background: linear-gradient(to right, #0000b6, #060ab8);
  padding: 70px 20px 60px;
  color: #ffffff;
}

.vm-block__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vm-block__row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: flex-start;
}

.vm-block__title h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.vm-block__underline {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 8px;
}

.vm-block__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #ffffff;
}

@media (max-width: 900px) {
  .vm-block__row {
    grid-template-columns: 1fr;
  }
  .vm-block__title { order: -1; }
}

@media (max-width: 640px) {
  .vm-block {
    padding: 56px 16px 48px;
  }
  .vm-block__title h3 {
    font-size: 22px;
  }
  .vm-block__copy p {
    font-size: 15px;
  }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}

.whatsapp-float i {
  color: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}
