  /* ===== CSS RESET & BASE ===== */
  *,
  *::before,
  *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --primary: #3A6EA5;
      --primary-dark: #2d5a87;
      --primary-light: #E8F4FF;
      --accent: #673de6;
      --dark: #0d141a;
      --dark-navy: #1A1A2E;
      --gray: #56585e;
      --gray-light: #f2f3f6;
      --white: #ffffff;
      --font-primary: 'Open Sans', sans-serif;
      --header-height: 90px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--font-primary);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
      background: var(--white);
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  ul {
      list-style: none;
  }

  img {
      max-width: 100%;
      height: auto;
      display: block;
  }

  /* ===== HEADER ===== */
  .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
  }

  .header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  }

  .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--header-height);
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 1001;
  }

  .logo img {
      height: 70px;
      width: auto;
      transition: var(--transition);
  }

  .header.scrolled .logo img {
      height: 60px;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .nav-links a {
      position: relative;
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 500;
      color: var(--dark);
      transition: var(--transition);
      border-radius: 8px;
      letter-spacing: 0.3px;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 20px;
      right: 20px;
      height: 2px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      border-radius: 2px;
  }

  .nav-links a:hover {
      color: var(--primary);
  }

  .nav-links a:hover::after {
      transform: scaleX(1);
  }

  .nav-links a.active {
      color: var(--primary);
      background: var(--primary-light);
  }

  .nav-links a.active::after {
      transform: scaleX(1);
  }

  /* ===== SUBMENU DROPDOWN ===== */
  .submenu-wrapper {
      position: relative;
      display: flex;
      align-items: center;
  }

  .arrow {
      font-size: 11px;
      margin-left: 6px;
      display: inline-block;
      transition: transform 0.3s ease;
  }

  .submenu-wrapper:hover .arrow {
      transform: rotate(180deg);
  }

  .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      border-radius: 12px;
      min-width: 220px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      margin-top: 8px;
      z-index: 999;
      border: 1px solid #e0e0e0;
  }

  .submenu-wrapper:hover .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .submenu a {
      display: block;
      padding: 12px 20px;
      color: var(--dark);
      font-size: 14px;
      font-weight: 500;
      transition: var(--transition);
      border-radius: 0;
  }

  .submenu a:first-child {
      border-radius: 12px 12px 0 0;
  }

  .submenu a:last-child {
      border-radius: 0 0 12px 12px;
  }

  .submenu a:hover {
      background: var(--primary-light);
      color: var(--primary);
      padding-left: 24px;
  }

  .header-cta {
      padding: 10px 28px !important;
      background: var(--primary) !important;
      color: var(--white) !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      font-size: 14px !important;
      letter-spacing: 0.5px;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(58, 110, 165, 0.3);
  }

  .header-cta:hover {
      background: var(--primary-dark) !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(58, 110, 165, 0.4) !important;
  }

  .header-cta::after {
      display: none !important;
  }

  /* Hamburger */
  .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      padding: 8px;
      border: none;
      background: transparent;
  }

  .hamburger span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: var(--dark);
      border-radius: 4px;
      transition: var(--transition);
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ===== HERO CAROUSEL ===== */
  .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 650px;
      max-height: 900px;
      overflow: hidden;
      margin-top: var(--header-height);
  }

  .hero-carousel {
      position: relative;
      width: 100%;
      height: 100%;
  }

  .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 1;
  }

  .hero-slide.active {
      opacity: 1;
      z-index: 2;
  }

  .hero-slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .hero-slide-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform 8s ease-out;
  }

  .hero-slide.active .hero-slide-bg img {
      transform: scale(1.08);
  }

  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
              rgba(13, 20, 26, 0.75) 0%,
              rgba(58, 110, 165, 0.45) 50%,
              rgba(26, 26, 46, 0.7) 100%);
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 10;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
  }

  .hero-text {
      max-width: 700px;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideUp 0.8s ease forwards;
      animation-delay: 0.3s;
  }

  .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: #00e676;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
  }

  .hero-title {
      font-size: clamp(36px, 5vw, 62px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeSlideUp 0.8s ease forwards;
      animation-delay: 0.5s;
  }

  .hero-title span {
      background: linear-gradient(135deg, #64B5F6, #42A5F5, #90CAF9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero-subtitle {
      font-size: clamp(16px, 2vw, 19px);
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
      margin-bottom: 36px;
      font-weight: 400;
      max-width: 560px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeSlideUp 0.8s ease forwards;
      animation-delay: 0.7s;
  }

  .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeSlideUp 0.8s ease forwards;
      animation-delay: 0.9s;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 36px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      font-family: var(--font-primary);
      letter-spacing: 0.3px;
  }

  .btn-primary {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
      box-shadow: 0 4px 20px rgba(58, 110, 165, 0.4);
  }

  .btn-primary:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(58, 110, 165, 0.5);
  }

  .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
  }

  .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
      transform: translateY(-3px);
  }

  .btn-icon {
      width: 20px;
      height: 20px;
  }

  /* ===== STATS SECTION (standalone below hero) ===== */
  .stats-section {
      position: relative;
      background: linear-gradient(135deg, #0d141a 0%, #1A1A2E 50%, #0d141a 100%);
      z-index: 10;
  }

  .hero-stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: center;
      gap: 0;
  }

  .stat-item {
      flex: 1;
      max-width: 280px;
      text-align: center;
      padding: 32px 32px;
      position: relative;
      transition: var(--transition);
  }

  .stat-item:hover {
      background: rgba(255, 255, 255, 0.04);
  }

  .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 40px;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
  }

  .stat-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 12px;
      background: rgba(58, 110, 165, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .stat-icon svg {
      width: 22px;
      height: 22px;
      stroke: #64B5F6;
      fill: none;
      stroke-width: 2;
  }

  .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
  }

  .stat-number span {
      color: #64B5F6;
  }

  .stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-top: 6px;
  }

  /* ===== ABOUT US SECTION ===== */
  .about-section {
      padding: 100px 0;
      background: var(--white);
      position: relative;
      overflow: hidden;
  }

  .about-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(58, 110, 165, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
  }

  .about-section::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(103, 61, 230, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
  }

  .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: var(--primary-light);
      border-radius: 50px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .section-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
  }

  .section-title {
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
  }

  .section-title span {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .section-subtitle {
      font-size: 17px;
      color: var(--gray);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .about-image-wrapper {
      position: relative;
  }

  .about-image-main {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
      position: relative;
      z-index: 2;
  }

  .about-image-main img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      transition: transform 0.6s ease;
  }

  .about-image-main:hover img {
      transform: scale(1.03);
  }

  .about-image-accent {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 20px;
      z-index: 1;
      opacity: 0.2;
  }

  .about-image-dots {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 100px;
      height: 100px;
      background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      z-index: 1;
      opacity: 0.3;
  }

  .about-experience-badge {
      position: absolute;
      bottom: 30px;
      left: -30px;
      background: var(--white);
      padding: 20px 28px;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 14px;
      animation: float 4s ease-in-out infinite;
  }

  .about-exp-number {
      font-size: 38px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
  }

  .about-exp-text {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.4;
  }

  .about-content {
      position: relative;
      z-index: 2;
  }

  .about-content .section-badge {
      margin-bottom: 16px;
  }

  .about-content .section-title {
      text-align: left;
      margin-bottom: 20px;
  }

  .about-description {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 32px;
  }

  .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 36px;
  }

  .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--gray-light);
      border-radius: 14px;
      transition: var(--transition);
  }

  .about-feature:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
  }

  .about-feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--white);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .about-feature-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--primary);
      fill: none;
      stroke-width: 2;
  }

  .about-feature-text h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 2px;
  }

  .about-feature-text p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.5;
  }

  .about-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 34px;
      background: var(--primary);
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(58, 110, 165, 0.3);
  }

  .about-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(58, 110, 165, 0.4);
  }

  .about-cta svg {
      width: 18px;
      height: 18px;
      stroke: var(--white);
      fill: none;
      stroke-width: 2;
      transition: transform 0.3s ease;
  }

  .about-cta:hover svg {
      transform: translateX(4px);
  }

  /* Scroll animations */
  .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .fade-up.delay-1 {
      transition-delay: 0.1s;
  }

  .fade-up.delay-2 {
      transition-delay: 0.2s;
  }

  .fade-up.delay-3 {
      transition-delay: 0.3s;
  }

  .fade-up.delay-4 {
      transition-delay: 0.4s;
  }

  /* Carousel Controls */
  .carousel-controls {
      position: absolute;
      bottom: 40px;
      right: 40px;
      z-index: 10;
      display: flex;
      gap: 12px;
  }

  .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
  }

  .carousel-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--white);
      transform: scale(1.1);
  }

  .carousel-btn svg {
      width: 20px;
      height: 20px;
  }

  /* Carousel Dots */
  .carousel-dots {
      position: absolute;
      bottom: 48px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
  }

  .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.5);
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
      padding: 0;
  }

  .carousel-dot.active {
      background: var(--white);
      border-color: var(--white);
      transform: scale(1.2);
  }

  .carousel-dot:hover {
      border-color: var(--white);
  }

  /* Progress Bar */
  .carousel-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 10;
  }

  .carousel-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), #64B5F6);
      width: 0%;
      transition: width 0.1s linear;
  }

  /* WhatsApp Float */
  .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: var(--transition);
      cursor: pointer;
  }

  .whatsapp-float:hover {
      transform: scale(1.1) translateY(-4px);
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-float svg {
      width: 32px;
      height: 32px;
      fill: white;
  }

  .whatsapp-pulse {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 18px;
      height: 18px;
      background: #ff4444;
      border-radius: 50%;
      border: 2px solid var(--white);
      animation: pulse-dot 2s infinite;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeSlideUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes pulse-dot {

      0%,
      100% {
          opacity: 1;
          transform: scale(1);
      }

      50% {
          opacity: 0.7;
          transform: scale(1.3);
      }
  }

  /* ===== SERVICES SECTION ===== */
  .services-section {
      padding: 100px 0;
      background: var(--primary-light);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
  }

  .service-card {
      background: transparent;
      border-radius: 20px;
      transition: var(--transition);
  }

  .service-card:hover {
      transform: translateY(-10px);
  }

  .service-image {
      width: 100%;
      height: 250px;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
  }

  .service-card:hover .service-image img {
      transform: scale(1.1);
  }

  .service-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
  }

  .cta-link {
      display: inline-block;
      margin-top: 16px;
      color: var(--primary);
      font-weight: 600;
      font-size: 14px;
      transition: var(--transition);
      text-decoration: none;
      border-bottom: 2px solid transparent;
  }

  .cta-link:hover {
      color: var(--primary-dark);
      border-bottom-color: var(--primary);
  }

  /* ===== BLOG SECTION ===== */
  .blog-section {
      padding: 120px 0;
      background: #f8fafc;
  }

  .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
      margin-top: 60px;
  }

  .blog-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .blog-card:hover {
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
      transform: translateY(-8px);
  }

  .blog-image {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
  }

  .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-image img {
      transform: scale(1.08);
  }

  .blog-category {
      position: absolute;
      top: 16px;
      left: 16px;
      display: inline-block;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--white);
      z-index: 10;
  }

  .blog-category.strategy {
      background: #3A6EA5;
  }

  .blog-category.performance {
      background: #673de6;
  }

  .blog-category.growth {
      background: #ff6b35;
  }

  .blog-content {
      padding: 32px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .blog-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1.4;
      flex-grow: 1;
  }

  .blog-card p {
      font-size: 15px;
      color: var(--gray);
      margin-bottom: 24px;
      line-height: 1.6;
      flex-grow: 1;
  }

  .read-more {
      display: inline-block;
      color: #3A6EA5;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: var(--transition);
      border-bottom: 2px solid transparent;
      width: fit-content;
  }

  .read-more:hover {
      color: #2d5a87;
      border-bottom-color: #3A6EA5;
  }

  @media (max-width: 768px) {
      .blog-section {
          padding: 80px 0;
      }

      .blog-grid {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .blog-content {
          padding: 24px;
      }

      .blog-card h3 {
          font-size: 18px;
      }
  }

  /* ===== PREMIUM TESTIMONIALS (LUXURY STYLE) ===== */
  .premium-testimonials {
      padding: 140px 0;
      background: linear-gradient(135deg, rgba(11, 14, 23, 0.97) 0%, rgba(26, 31, 46, 0.9) 100%),
          url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      text-align: center;
  }

  .premium-testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
          radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 40%);
      pointer-events: none;
      z-index: 1;
  }

  .premium-stars {
      font-size: 50px;
      color: #FFC107;
      margin-bottom: 25px;
      letter-spacing: 5px;
      filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
  }

  .premium-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      margin-bottom: 50px;
  }

  .premium-title span {
      height: 1px;
      width: 100px;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  }

  .premium-title h2 {
      font-family: 'Dancing Script', cursive;
      font-size: 60px;
      font-weight: 600;
      color: #ffffff;
      margin: 0;
  }

  .premium-carousel {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
  }

  .premium-track {
      position: relative;
      min-height: 300px;
  }

  .premium-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transition: all 0.8s ease;
      transform: translateY(20px);
  }

  .premium-item.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .premium-text {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 40px;
      font-style: italic;
  }

  .premium-author {
      font-family: 'Dancing Script', cursive;
      font-size: 36px;
      color: #ffffff;
      margin: 0;
  }

  .premium-controls {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 60px;
  }

  .p-btn {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .p-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #FFC107;
      color: #FFC107;
      transform: scale(1.1);
  }

  /* ===== FOOTER SECTION ===== */
  .main-footer {
      background: linear-gradient(135deg, #001f3f 0%, #002147 100%);
      color: #ffffff;
      padding: 80px 0 0;
      position: relative;
      z-index: 2;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-logo img {
      height: 60px;
      margin-bottom: 25px;
  }

  .footer-about p {
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
      font-size: 15px;
      margin-bottom: 30px;
      max-width: 300px;
  }

  .social-links {
      display: flex;
      gap: 15px;
  }

  .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .social-link:hover {
      background: var(--primary);
      transform: translateY(-5px);
  }

  .footer-col h4 {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 30px;
      position: relative;
  }

  .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 30px;
      height: 2px;
      background: var(--primary);
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 15px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
      display: inline-block;
  }

  .footer-links a:hover {
      color: var(--primary);
      transform: translateX(5px);
  }

  .contact-item {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
      line-height: 1.6;
  }

  .contact-item svg {
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 3px;
  }

  .footer-bottom {
      padding: 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.4);
  }

  .footer-bottom-links {
      display: flex;
      gap: 30px;
  }

  .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .footer-bottom-links a:hover {
      color: #ffffff;
  }

  @media (max-width: 992px) {
      .footer-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 576px) {
      .footer-grid {
          grid-template-columns: 1fr;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 20px;
          text-align: center;
      }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
      .hero {
          min-height: 550px;
      }

      .stat-item {
          padding: 20px 20px;
      }

      .stat-number {
          font-size: 26px;
      }

      .carousel-controls {
          right: 24px;
          bottom: 36px;
      }

      .about-grid {
          gap: 40px;
      }

      .about-image-main img {
          height: 360px;
      }
  }

  @media (max-width: 768px) {
      :root {
          --header-height: 80px;
      }

      .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          width: 80%;
          max-width: 360px;
          height: 100vh;
          background: var(--white);
          flex-direction: column;
          align-items: flex-start;
          padding: 100px 32px 40px;
          gap: 4px;
          transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
      }

      .nav-links.open {
          right: 0;
      }

      .nav-links a {
          width: 100%;
          padding: 14px 16px;
          font-size: 16px;
          border-radius: 10px;
      }

      .submenu-wrapper {
          width: 100%;
          display: flex;
          flex-direction: column;
      }

      .submenu-wrapper a {
          width: 100%;
      }

      .submenu {
          position: static;
          background: transparent;
          box-shadow: none;
          border: none;
          opacity: 1;
          visibility: visible;
          transform: none;
          margin: 0;
          padding: 0;
          margin-top: 0;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
      }

      .submenu-wrapper:hover .submenu {
          max-height: 500px;
      }

      .submenu a {
          padding: 10px 32px;
          font-size: 14px;
          background: #f5f5f5;
      }

      .submenu a:first-child {
          border-radius: 0;
          margin-top: 8px;
      }

      .submenu a:last-child {
          border-radius: 0;
      }

      .submenu a:hover {
          padding-left: 38px;
      }

      .arrow {
          display: none;
      }

      .header-cta {
          width: 100%;
          justify-content: center;
          margin-top: 16px;
      }

      .hamburger {
          display: flex;
      }

      .mobile-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.4);
          z-index: 999;
          opacity: 0;
          visibility: hidden;
          transition: var(--transition);
      }

      .mobile-overlay.show {
          opacity: 1;
          visibility: visible;
      }

      .hero {
          min-height: 500px;
          max-height: 700px;
      }

      .hero-title {
          font-size: 32px;
      }

      .hero-subtitle {
          font-size: 15px;
      }

      .hero-buttons {
          flex-direction: column;
          align-items: flex-start;
      }

      .btn {
          padding: 13px 30px;
          font-size: 14px;
          width: 100%;
          justify-content: center;
      }

      .hero-stats-inner {
          flex-wrap: wrap;
      }

      .stat-item {
          flex: 1 1 50%;
          max-width: 50%;
          padding: 20px 16px;
      }

      .stat-item:nth-child(2)::after {
          display: none;
      }

      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .stat-number {
          font-size: 28px;
      }

      .stat-label {
          font-size: 11px;
      }

      .stat-icon {
          width: 36px;
          height: 36px;
          margin-bottom: 8px;
      }

      .carousel-controls {
          display: none;
      }

      .carousel-dots {
          bottom: 36px;
      }

      .carousel-progress {
          bottom: 0;
      }

      .about-section {
          padding: 70px 0;
      }

      .about-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .about-image-wrapper {
          order: -1;
      }

      .about-image-main img {
          height: 320px;
      }

      .about-experience-badge {
          left: 10px;
          bottom: 20px;
      }

      .about-content .section-title {
          text-align: center;
      }

      .about-content .section-badge {
          display: flex;
          justify-content: center;
      }

      .about-description {
          text-align: center;
      }

      .about-features {
          grid-template-columns: 1fr;
      }

      .services-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .service-card {
          text-align: center;
      }

      .flex-reviews {
          flex-direction: column;
          gap: 40px;
      }

      .reviews-left {
          width: 100%;
          order: 2;
      }

      .reviews-right {
          width: 100%;
          order: 1;
          text-align: center;
      }

      .reviews-right h2 {
          font-size: 40px;
      }

      .reviews-carousel-v2 {
          padding: 30px 20px;
          border-radius: 30px;
      }

      .card-header-v2 {
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }

      .agg-info {
          text-align: center;
      }

      .footer-v2 {
          flex-direction: column;
          gap: 20px;
      }

      .whatsapp-float {
          width: 54px;
          height: 54px;
          bottom: 20px;
          right: 20px;
      }
  }

  @media (max-width: 480px) {
      .hero-badge {
          font-size: 12px;
          padding: 6px 16px;
      }

      .hero-title {
          font-size: 28px;
      }

      .hero-content {
          padding: 0 16px;
      }

      .about-section {
          padding: 50px 0;
      }

      .about-image-main img {
          height: 260px;
      }

      .about-experience-badge {
          padding: 14px 20px;
      }

      .about-exp-number {
          font-size: 30px;
      }

      .section-header {
          margin-bottom: 40px;
      }
  }