    * { 
      margin:0; 
      padding:0; 
      box-sizing:border-box; 
    }
    html, body { 
      height: 100%; 
      overflow-x: hidden; 
      scroll-behavior: smooth; 
    }
    body {
      font-family: 'Poppins', sans-serif;
      background: #0a0a0a;
      color: #f0f0f0;
      padding-top: 0;
    }
/* ====================== BACK TO TOP BUTTON ====================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #FF6417;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 100, 23, 0.4);
  text-decoration: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.back-to-top:hover {
  background: #fff;
  color: #FF6417;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 100, 23, 0.5);
  border-color: #FF6417;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.3rem;
  }
}

    /* HEADER */
    header {
      position: fixed;
      top: 0; left: 0; width: 100%;
      padding: 18px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: transparent;
      height: 106px;
      transition: background 0.4s ease, padding 0.4s ease;
    }
    header.scrolled {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      padding: 12px 50px;
      height: 80px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    .logo img { 
      height: 80px; 
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); 
      transition: height 0.4s ease; 
    }
    header.scrolled .logo img { height: 60px; }

    /* NAVIGATION + ICONS */
    .nav-container { 
      display: flex; 
      align-items: center; 
      gap: 32px; 
    }
    nav ul { 
      display: flex; 
      gap: 32px; 
      list-style: none; 
      align-items: center; 
      margin: 0; 
    }
    nav ul a {
      color: #fff; 
      text-decoration: none; 
      font-size: 16px; 
      font-weight: 500;
      padding: 8px 0; 
      position: relative; 
      transition: color 0.3s;
    }
    nav ul li:not(.dropdown) > a::after {
      content: ''; 
      position: absolute; 
      bottom: 0; 
      left: 0;
      width: 0; 
      height: 2px; 
      background: #2fa9c9; 
      transition: width 0.4s ease;
    }
    nav ul li:not(.dropdown) > a:hover { color: #2fa9c9; }
    nav ul li:not(.dropdown) > a:hover::after { width: 100%; }

    .social-icons { 
      display: flex; 
      gap: 12px; 
      align-items: center; 
    }
    .social-icons a {
      width: 42px; 
      height: 42px; 
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px); 
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.25); 
      border-radius: 50%;
      display: flex; 
      align-items: center; 
      justify-content: center;
      color: #fff; 
      font-size: 18px; 
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
      text-decoration: none !important;
    }
    .social-icons a:hover {
      background: #2fa9c9; 
      color: #000; 
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(47, 169, 201, 0.5); 
      border-color: #2fa9c9;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      z-index: 1001;
    }

    /* DROPDOWN */
    .dropdown { position: relative; display: inline-block; }
    .dropdown-toggle {
      display: flex; 
      align-items: center; 
      gap: 6px; 
      cursor: pointer;
      color: #fff; 
      font-size: 16px; 
      font-weight: 500; 
      padding: 8px 0;
      text-decoration: none; 
      transition: color 0.3s;
    }
    .dropdown-toggle:hover { color: #2fa9c9; }
    .dropdown-toggle::after {
      content: '>'; 
      font-size: 12px; 
      font-weight: bold; 
      transform: rotate(90deg);
      transition: transform 0.3s ease; 
      margin-left: 2px;
    }
    .dropdown:hover .dropdown-toggle::after { transform: rotate(-90deg); }
    .dropdown-menu {
      position: absolute; 
      top: 100%; 
      left: 50%; 
      transform: translateX(-50%);
      min-width: 240px; 
      border-radius: 16px; 
      padding: 16px 0; 
      margin-top: 12px;
      z-index: 999; 
      opacity: 0; 
      visibility: hidden; 
      transform: translateX(-50%) translateY(-10px);
      transition: all 0.3s ease; 
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px); 
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2); 
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    .dropdown:hover .dropdown-menu { 
      opacity: 1; 
      visibility: visible; 
      transform: translateX(-50%) translateY(0); 
    }
    .dropdown-menu a {
      display: block; 
      padding: 12px 28px; 
      color: #fff; 
      text-decoration: none;
      font-size: 15px; 
      font-weight: 500; 
      transition: background 0.3s;
    }
    .dropdown-menu a:hover {
      background: rgba(47, 169, 201, 0.3); 
      border-radius: 8px; 
      margin: 0 8px;
    }

    /* HERO */
    .hero { 
      position: relative; 
      width: 100vw; 
      height: 100vh; 
      overflow: hidden; 
    }
    .hero-slider { width: 100%; height: 100%; }
    .hero-slider .swiper-slide { 
      width: 100% !important; 
      height: 100% !important; 
      position: relative; 
    }
    .hero-slider .swiper-slide img {
      width: 100vw !important; 
      height: 100vh !important; 
      object-fit: cover; 
      object-position: center;
      display: block; 
      position: absolute; 
      top: 0; 
      left: 0;
    }
    .hero-slider:after {
      content: ''; 
      position: absolute; 
      top: 0; 
      left: 0; 
      width: 100%; 
      height: 100%;
      background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
      z-index: 1;
    }
    .swiper-pagination {
      position: absolute; 
      bottom: 30px !important; 
      left: 50% !important;
      transform: translateX(-50%) !important; 
      z-index: 10; 
      display: flex; 
      gap: 10px;
      justify-content: center; 
      align-items: center;
    }
    .swiper-pagination-bullet {
      width: 14px; 
      height: 14px; 
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%; 
      opacity: 1; 
      transition: all 0.3s ease; 
      margin: 0 !important;
    }
    .swiper-pagination-bullet-active {
      background: #2fa9c9; 
      transform: scale(1.3); 
      box-shadow: 0 0 12px rgba(47, 169, 201, 0.6);
    }
    .hero-content {
      position: absolute; 
      z-index: 2; 
      max-width: 50%; 
      left: 5%; 
      top: 50%;
      transform: translateY(-50%); 
      text-align: left;
    }
.hero h1 {
    font-size: 5.5rem;
    font-weight: 600;

    background: linear-gradient(90deg, #2fa9c9, #ffffff);

    -webkit-background-clip: text;
    background-clip: text; /* important */

    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback */

    margin-bottom: 8px;
    letter-spacing: 2px;
    line-height: 1.1;
}
    .hero h2 { 
      font-size: 2.5rem; 
      color: #2fa9c9; 
      margin: 6px 0 12px; 
      font-weight: 500; 
    }
    .hero h3 { 
      font-size: 1.4rem; 
      color: #fff; 
      margin: 0 0 12px; 
      font-weight: 500; 
    }
    .hero p { 
      font-size: 1.2rem; 
      max-width: 500px; 
      margin: 0 0 30px; 
      color: #ddd; 
      line-height: 1.6; 
    }
    .hero-buttons { 
      display: flex; 
      gap: 18px; 
      flex-wrap: wrap; 
    }
    .btn {
      padding: 14px 38px; 
      border-radius: 50px; 
      font-weight: 600; 
      font-size: 1.1rem;
      text-decoration: none; 
      min-width: 160px; 
      text-align: center; 
      transition: all 0.4s ease;
      background: rgba(255, 255, 255, 0.1); 
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); 
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff; 
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    .btn:hover {
      background: #2fa9c9; 
      color: #000; 
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(47, 169, 201, 0.5); 
      border-color: #2fa9c9;
    }

    /* SINGLE HERO */
.single-hero { 
  position: relative; 
  width: 100vw; 
  height: 70vh; 
  overflow: hidden; 
}

/* Image */
.single-hero img {
  width: 100vw; 
  height: 70vh; 
  object-fit: cover; 
  object-position: center;
  display: block; 
  position: absolute; 
  top: 0; 
  left: 0;
}

/* Overlay FIX (important change) */
.single-hero::after {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Content */
.single-hero-content {
  position: absolute; 
  z-index: 2; 
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%); 
  text-align: center;
}

/* Heading */
.single-hero h1 {
  font-size: 5rem; 
  font-weight: 700; 
  background: linear-gradient(90deg, #ffffff, #00e0ff);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* 🔥 missing tha */

  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 25px rgba(47, 169, 201, 0.6);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 5px;
}

.breadcrumb a {
  color: #2fa9c9;
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }
}

    /* === GALLERY SECTION WITH DARK GLASS BUBBLES === */
    .gallery-section {
        padding: 100px 5% 80px;
        background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
        min-height: 100vh;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
        color: #e2e8f0;
    }

    /* Floating Glass Bubbles Background - Dark Theme */
    .gallery-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
            radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
            radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .bubbles-light {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .bubble-light {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1.5px solid rgba(63, 94, 150, 0.3);
        box-shadow:
            0 20px 50px rgba(20, 30, 48, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
        animation: float-light 24s infinite ease-in-out;
        opacity: 0.7;
        transition: all 0.6s ease;
    }

    /* 6 Dark-Themed Bubbles with Subtle Blue Glow */
    .bubble-light:nth-child(1) { 
        width: 420px; height: 420px; top: -12%; right: -10%; 
        background: rgba(63, 94, 150, 0.15); 
        animation-delay: 0s; animation-duration: 28s; 
    }
    .bubble-light:nth-child(2) { 
        width: 300px; height: 300px; top: 45%; left: -15%; 
        background: rgba(20, 30, 48, 0.2); 
        animation-delay: 5s; animation-duration: 22s; 
    }
    .bubble-light:nth-child(3) { 
        width: 200px; height: 200px; bottom: 10%; right: 8%; 
        background: rgba(63, 94, 150, 0.22); 
        animation-delay: 8s; animation-duration: 19s; 
    }
    .bubble-light:nth-child(4) { 
        width: 280px; height: 280px; top: 15%; left: 5%; 
        background: rgba(80, 110, 160, 0.18); 
        animation-delay: 3s; animation-duration: 26s; 
    }
    .bubble-light:nth-child(5) { 
        width: 160px; height: 160px; bottom: 35%; left: 15%; 
        background: rgba(40, 60, 100, 0.25); 
        animation-delay: 11s; animation-duration: 21s; 
    }
    .bubble-light:nth-child(6) { 
        width: 400px; height: 400px; bottom: -18%; right: -8%; 
        background: rgba(63, 94, 150, 0.12); 
        animation-delay: 7s; animation-duration: 32s; 
    }

    @keyframes float-light {
        0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
        25% { transform: translateY(-70px) translateX(60px) rotate(15deg) scale(1.08); }
        50% { transform: translateY(-110px) translateX(-50px) rotate(-12deg) scale(0.94); }
        75% { transform: translateY(-60px) translateX(70px) rotate(10deg) scale(1.05); }
    }

    /* Gallery Header - Dark Mode */
    .gallery-header {
        margin-bottom: 60px;
        position: relative;
        z-index: 10;
    }
    .gallery-heading {
        color: #3F5E96;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 0 2px 10px rgba(63, 94, 150, 0.3);
    }
    .gallery-title {
        color: #e2e8f0;
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .gallery-description {
        color: #94a3b8;
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Swiper Slides - Glass Cards on Dark */
    .gallery-slider .swiper-slide {
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        width: 300px;
        height: 380px;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 12px 35px rgba(20, 30, 48, 0.4);
        border: 1px solid rgba(63, 94, 150, 0.25);
    }
    .gallery-slider .swiper-slide:hover {
        transform: translateY(-18px) scale(1.06);
        box-shadow: 0 30px 60px rgba(63, 94, 150, 0.35);
        border-color: rgba(63, 94, 150, 0.5);
    }
    .gallery-slider .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transition: transform 0.5s ease;
    }
    .gallery-slider .swiper-slide:hover img {
        transform: scale(1.10);
    }

    /* Navigation - Dark Theme */
    .swiper-button-next,
    .swiper-button-prev {
        color: #3F5E96 !important;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        width: 50px; height: 50px;
        border-radius: 50%;
        border: 1px solid rgba(63, 94, 150, 0.3);
        transition: all 0.3s ease;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(63, 94, 150, 0.25);
        transform: scale(1.0);
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px !important;
    }
    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.2);
    }
    .swiper-pagination-bullet-active {
        background: #3F5E96;
        box-shadow: 0 0 15px rgba(63, 94, 150, 0.6);
    }

    /* Lightbox - Dark Mode */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background: rgba(10, 15, 25, 0.98);
        backdrop-filter: blur(8px);
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    .lightbox.show {
        display: flex;
        opacity: 1;
    }
    .lightbox img {
        max-width: 92%;
        max-height: 88vh;
        border-radius: 16px;
        box-shadow: 0 0 60px rgba(63, 94, 150, 0.5);
        border: 2px solid rgba(63, 94, 150, 0.3);
        transform: scale(0.85);
        opacity: 0;
        transition: all 0.5s ease;
    }
    .lightbox.show img {
        transform: scale(1);
        opacity: 1;
    }
    .close-lightbox {
        position: absolute;
        top: 30px; right: 50px;
        color: #e2e8f0;
        font-size: 45px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        transition: all 0.3s;
        text-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    .close-lightbox:hover {
        color: #3F5E96;
        transform: scale(1.3) rotate(90deg);
    }

/* === ABOUT US SECTION - DARK GLASS BUBBLE THEME === */
.about-section {
  padding: 100px 5% 80px;
  background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #e2e8f0;
}

/* Floating Glass Bubbles Background (Same as Gallery) */
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
      radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
      radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bubbles-about {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble-about {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(63, 94, 150, 0.3);
  box-shadow:
      0 20px 50px rgba(20, 30, 48, 0.3),
      inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: float-light 24s infinite ease-in-out;
  opacity: 0.7;
}

/* 6 Bubbles - Same as Gallery but Slightly Repositioned */
.bubble-about:nth-child(1) { width: 380px; height: 380px; top: -8%; right: -6%; background: rgba(63, 94, 150, 0.14); animation-delay: 1s; animation-duration: 27s; }
.bubble-about:nth-child(2) { width: 290px; height: 290px; top: 60%; left: -10%; background: rgba(20, 30, 48, 0.18); animation-delay: 7s; animation-duration: 23s; }
.bubble-about:nth-child(3) { width: 170px; height: 170px; bottom: 20%; right: 12%; background: rgba(63, 94, 150, 0.2); animation-delay: 10s; animation-duration: 19s; }
.bubble-about:nth-child(4) { width: 250px; height: 250px; top: 25%; left: 10%; background: rgba(80, 110, 160, 0.16); animation-delay: 4s; animation-duration: 29s; }
.bubble-about:nth-child(5) { width: 150px; height: 150px; bottom: 40%; left: 20%; background: rgba(40, 60, 100, 0.22); animation-delay: 13s; animation-duration: 21s; }
.bubble-about:nth-child(6) { width: 360px; height: 360px; bottom: -12%; right: -4%; background: rgba(63, 94, 150, 0.11); animation-delay: 9s; animation-duration: 31s; }

/* Content (Z-index upar) */
.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-image {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(63, 94, 150, 0.2);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  text-align: left;
}
.about-comment {
  font-size: 1.1rem;
  color: #3F5E96;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 8px rgba(63, 94, 150, 0.3);
}
.about-heading h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #3F5E96;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.about-bullets {
  list-style: none;
  margin-bottom: 40px;
}
.about-bullets li {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}
.about-bullets li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #3F5E96;
  font-size: 0.9rem;
}

/* Author Info */
.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.author-signature {
  width: 130px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: -8px;
}
.author-name {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Progress Bar */
.progress-container {
  margin: 30px 0;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(63, 94, 150, 0.2);
}
.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3F5E96, #5c7fb8);
  border-radius: 4px;
  transition: width 1.8s ease;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25));
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.about-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.about-author p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
}

.about-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(63, 94, 150, 0.3);
  color: #e2e8f0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.about-btn:hover {
  background: #2fa9c9; color: #000; transform: translateY(-5px);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(47, 169, 201, 0.5); border-color: #2fa9c9;
  border-color: #3F5E96;
}

/* === FEATURED WORK SECTION - HOVER EXPAND GALLERY (RESPONSIVE) === */
.featured-work-section {
  padding: 100px 5%;
  background: #0a0a0a;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Section Header */
.featured-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
  text-align: center;
  flex-shrink: 0;
  width: 100%;
}
.featured-heading {
  color: #3F5E96;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(63, 94, 150, 0.3);
}
.featured-title {
  color: #e2e8f0;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.featured-description {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* HOVER EXPAND GALLERY */
.kodfun-galeri {
  display: flex;
  height: 22rem;
  width: 90%;
  max-width: 1000px;
  gap: 1rem;
  margin: 0 auto;
}

.kodfun-galeri > div {
  flex: 1;
  border-radius: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: all .8s cubic-bezier(.25, .4, .45, 1.4);
  filter: brightness(0.9);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.kodfun-galeri > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kodfun-galeri > div:hover::before {
  opacity: 1;
}

.kodfun-galeri > div:hover {
  flex: 5;
  filter: brightness(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* Project labels */
.project-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.kodfun-galeri > div:hover .project-label {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 900px) {
  .kodfun-galeri {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .kodfun-galeri > div {
    flex: none;
    width: 100%;
    height: 220px;
    border-radius: 1rem;
    transition: none;
  }

  .kodfun-galeri > div:hover {
    flex: none;
    transform: scale(1.03);
  }

  .project-label {
    opacity: 1;
    transform: translateY(0);
    font-size: 1rem;
    bottom: 15px;
    left: 15px;
  }

  .featured-title {
    font-size: 2rem;
  }
}

/* ==== SINGLE LINE NEON COUNTER - FIXED TEXT & SYMBOLS ==== */
.counter-section {
  padding: 120px 5%;
  background: #0a0a0a;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(47, 169, 201, 0.08) 50%, transparent 100%);
  z-index: 0;
}

.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  z-index: 10;
  flex-wrap: nowrap;
  padding: 40px 20px;
}

.counter-item {
  position: relative;
  text-align: center;
  padding: 35px 25px;
  min-width: 280px;
  flex: 1;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(63, 94, 150, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.counter-item:hover {
  transform: translateY(-15px) scale(1.08);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(47, 169, 201, 0.3);
  box-shadow: 0 20px 40px rgba(47, 169, 201, 0.2);
}

.counter-number-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 80px;
}

.counter-number {
  font-size: 5.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2.5px #e2e8f0; 
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  line-height: 1;
}

.counter-number::before {
  content: attr(data-target);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  color: #2fa9c9;
  -webkit-text-stroke: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 2.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-number.active::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.counter-symbol {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2fa9c9;
  margin-left: 8px;
  text-shadow: 0 0 25px rgba(47, 169, 201, 0.9);
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 15px;
}

.counter-label {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0 10px;
}

.counter-item:hover .counter-label {
  color: #2fa9c9;
  text-shadow: 0 0 15px rgba(47, 169, 201, 0.7);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .counter-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .counter-item {
    flex: 1 1 45%;
    min-width: 250px;
  }

  .counter-number {
    font-size: 4rem;
  }

  .counter-symbol {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .counter-section {
    padding: 80px 5%;
  }

  .counter-container {
    flex-direction: column;
    gap: 25px;
  }

  .counter-item {
    width: 100%;
    min-width: auto;
    max-width: 380px;
  }

  .counter-number {
    font-size: 3.5rem;
  }

  .counter-symbol {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .counter-number {
    font-size: 2.8rem;
  }

  .counter-symbol {
    font-size: 1.8rem;
  }

  .counter-label {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}


    /* ==== COMMENTS CARD SECTION ==== */
    .comments-section {
      padding: 120px 5%;
      background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
      min-height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .comments-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
          radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    .comments-header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
      z-index: 10;
    }

    .comments-heading {
      color: #3F5E96;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 0 2px 10px rgba(63, 94, 150, 0.3);
    }

    .comments-title {
      color: #e2e8f0;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .comments-description {
      color: #94a3b8;
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .comments-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    .comment-card {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 20px;
      padding: 40px 35px;
      border: 1px solid rgba(63, 94, 150, 0.25);
      box-shadow: 0 12px 35px rgba(20, 30, 48, 0.4);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .comment-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 6rem;
      color: rgba(63, 94, 150, 0.3);
      font-family: serif;
      line-height: 1;
      opacity: 0.7;
    }

    .comment-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 30px 60px rgba(63, 94, 150, 0.35);
      border-color: rgba(63, 94, 150, 0.5);
      background: rgba(255, 255, 255, 0.1);
    }

    .comment-text {
      color: #e2e8f0;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 30px;
      position: relative;
      z-index: 2;
    }

    .comment-author {
      display: flex;
      align-items: center;
      gap: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 25px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3F5E96, #2fa9c9);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.2rem;
    }

    .author-info h4 {
      color: #e2e8f0;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .author-info p {
      color: #94a3b8;
      font-size: 0.9rem;
      margin: 0;
    }

    /* Floating Bubbles for Comments Section */
    .bubbles-comments {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .bubble-comment {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1.5px solid rgba(63, 94, 150, 0.3);
      box-shadow:
          0 20px 50px rgba(20, 30, 48, 0.3),
          inset 0 0 30px rgba(255, 255, 255, 0.1);
      animation: float-light 24s infinite ease-in-out;
      opacity: 0.7;
    }

    .bubble-comment:nth-child(1) { width: 200px; height: 200px; top: 10%; left: 5%; background: rgba(63, 94, 150, 0.15); animation-delay: 0s; animation-duration: 25s; }
    .bubble-comment:nth-child(2) { width: 150px; height: 150px; bottom: 20%; right: 8%; background: rgba(63, 94, 150, 0.22); animation-delay: 8s; animation-duration: 19s; }
    .bubble-comment:nth-child(3) { width: 180px; height: 180px; top: 60%; left: 10%; background: rgba(80, 110, 160, 0.18); animation-delay: 4s; animation-duration: 26s; }

    /* ==== FOOTER SECTION ==== */
    .footer-section {
      background: linear-gradient(135deg, #0a0a0a 0%, #141E30 100%);
      padding: 80px 5% 40px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(63, 94, 150, 0.3);
    }

    .footer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 80%, rgba(47, 169, 201, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 50px;
      position: relative;
      z-index: 10;
    }

    .footer-column h3 {
      color: #2fa9c9;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 3px;
      background: #2fa9c9;
      border-radius: 2px;
    }

    /* Logo and Description */
    .footer-logo img {
      height: 60px;
      margin-bottom: 20px;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    }

    .footer-description {
      color: #94a3b8;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .social-icons-footer {
      display: flex;
      gap: 15px;
    }

    .social-icons-footer a {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(63, 94, 150, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e2e8f0;
      font-size: 1.2rem;
      transition: all 0.4s ease;
      text-decoration: none;
    }

    .social-icons-footer a:hover {
      background: #2fa9c9;
      color: #000;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(47, 169, 201, 0.4);
    }

    /* Contact Details */
    .contact-info {
      list-style: none;
    }

    .contact-info li {
      color: #94a3b8;
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      line-height: 1.5;
    }

    .contact-info li i {
      color: #2fa9c9;
      font-size: 1.1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* Services List */
    .services-list {
      list-style: none;
    }

    .services-list li {
      margin-bottom: 12px;
    }

    .services-list a {
      color: #94a3b8;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .services-list a::before {
      content: '▸';
      color: #2fa9c9;
      font-size: 0.9rem;
    }

    .services-list a:hover {
      color: #2fa9c9;
      transform: translateX(5px);
    }

    /* Newsletter */
    .newsletter-text {
      color: #94a3b8;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .newsletter-input {
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(63, 94, 150, 0.3);
      border-radius: 8px;
      color: #e2e8f0;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #2fa9c9;
      background: rgba(255, 255, 255, 0.1);
    }

    .newsletter-input::placeholder {
      color: #94a3b8;
    }

    .subscribe-btn {
      padding: 14px 25px;
      background: #2fa9c9;
      color: #000;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.4s ease;
      text-align: center;
    }

    .subscribe-btn:hover {
      background: #1e8ba8;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(47, 169, 201, 0.4);
    }

    /* Footer Bottom */
    .footer-bottom {
      margin-top: 60px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* ========== MOBILE RESPONSIVE STYLES ========== */
    
    /* Mobile Navigation */
    @media (max-width: 1024px) {
      .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.4s ease;
        z-index: 999;
      }
      
      .nav-container.active {
        right: 0;
      }
      
      nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 20px;
      }
      
      .social-icons {
        margin-top: 30px;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      /* FIXED: Dropdown menu opens downwards in mobile view */
      .dropdown {
        position: relative;
        width: 100%;
      }
      
      .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 10px !important;
        margin-left: 20px !important;
        display: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }
      
      .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
      }
      
      .dropdown-menu a {
        padding: 10px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 0 !important;
        border-radius: 0;
      }
      
      .dropdown-menu a:last-child {
        border-bottom: none;
      }
      
      .dropdown-menu a:hover {
        background: transparent !important;
        color: #2fa9c9 !important;
      }
    }

    /* Tablet Styles */
    @media (max-width: 992px) {
      .counter-container {
        gap: 25px;
        padding: 20px 5px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
      }
      
      .counter-container::-webkit-scrollbar {
        display: none;
      }
      
      .counter-item {
        min-width: 260px;
        padding: 25px 20px;
        scroll-snap-align: center;
        flex-shrink: 0;
        min-height: 190px;
      }
      
      .counter-number {
        font-size: 5rem;
      }
      
      .counter-symbol {
        font-size: 3rem;
        margin-left: 6px;
        margin-bottom: 12px;
      }
      
      .counter-label {
        font-size: 1rem;
        letter-spacing: 2px;
      }

      .comments-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
      }
      
      .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 20px;
      }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      header { 
        padding: 15px 20px; 
        height: 90px; 
      }
      header.scrolled { 
        padding: 10px 20px; 
        height: 70px; 
      }
      .logo img { 
        height: 60px; 
      }
      header.scrolled .logo img { 
        height: 50px; 
      }
      .nav-container { 
        gap: 12px; 
      }
      nav ul { 
        gap: 12px; 
        font-size: 14px; 
      }
      .social-icons { 
        gap: 8px; 
      }
      .social-icons a { 
        width: 34px; 
        height: 34px; 
        font-size: 14px; 
      }
      .hero-content { 
        max-width: 90%; 
        text-align: center; 
        left: 50%; 
        transform: translateX(-50%) translateY(-50%); 
      }
      .hero h1 { 
        font-size: 3.2rem; 
      }
      .hero h2 { 
        font-size: 1.9rem; 
      }
      .hero h3 { 
        font-size: 1.3rem; 
      }
      .hero p { 
        font-size: 1.1rem; 
      }
      .hero-buttons { 
        justify-content: center; 
      }
      .btn { 
        padding: 12px 32px; 
        font-size: 1rem; 
      }
      .swiper-pagination { 
        bottom: 20px !important; 
      }
      .swiper-pagination-bullet { 
        width: 12px; 
        height: 12px; 
      }

      .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      .about-image { 
        height: 300px; 
      }
      .about-author { 
        justify-content: center; 
      }
      .about-text { 
        text-align: center; 
      }

      .gallery-slider .swiper-slide { 
        width: 220px; 
        height: 300px; 
      }
      .close-lightbox { 
        top: 15px; 
        right: 20px; 
        font-size: 30px; 
      }
      .lightbox img { 
        width: 95%; 
      }

      .counter-section {
        padding: 80px 5%;
        min-height: 300px;
      }
      
      .counter-container {
        gap: 20px;
        padding: 15px 5px;
      }
      
      .counter-item {
        min-width: 230px;
        padding: 22px 15px;
        min-height: 170px;
      }
      
      .counter-number {
        font-size: 4.2rem;
      }
      
      .counter-symbol {
        font-size: 2.5rem;
        margin-left: 4px;
        margin-bottom: 8px;
      }
      
      .counter-label {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
      }

      .comments-section {
        padding: 80px 5%;
      }
      
      .comments-container {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      
      .comment-card {
        padding: 30px 25px;
      }
      
      .comments-title {
        font-size: 2.2rem;
      }

      .footer-section {
        padding: 60px 5% 30px;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .footer-column:last-child {
        grid-column: auto;
        margin-top: 0;
      }
      
      .social-icons-footer {
        justify-content: center;
      }

      .kodfun-galeri {
        flex-direction: column;
        height: auto;
        width: 95%;
      }
      .kodfun-galeri > div {
        width: 100%;
        height: 200px;
      }
      .kodfun-galeri > div:hover {
        flex: none;
        transform: scale(1.05);
      }

      .bubble-light { 
        transform: scale(0.6); 
        opacity: 0.5; 
      }
      .bubble-light:nth-child(1) { 
        width: 280px; height: 280px; top: -25%; right: -35%; 
      }
      .bubble-light:nth-child(2) { 
        width: 200px; height: 200px; left: -40%; 
      }
      .bubble-light:nth-child(6) { 
        width: 260px; height: 260px; bottom: -30%; 
      }
    }

    /* Small Mobile Styles */
    @media (max-width: 480px) {
      .gallery-slider .swiper-slide { 
        width: 200px; 
        height: 280px; 
      }
      .hero h1 { 
        font-size: 2.5rem; 
      }
      .hero h2 { 
        font-size: 1.5rem; 
      }
      .hero h3 { 
        font-size: 1.1rem; 
      }
      .hero p { 
        font-size: 1rem; 
      }

      .counter-section {
        padding: 60px 5%;
        min-height: 250px;
      }
      
      .counter-container {
        gap: 15px;
        padding: 10px 5px;
      }
      
      .counter-item {
        min-width: 200px;
        padding: 18px 12px;
        min-height: 150px;
      }
      
      .counter-number {
        font-size: 3.8rem;
        -webkit-text-stroke: 1.5px #e2e8f0;
      }
      
      .counter-symbol {
        font-size: 2.2rem;
        margin-left: 3px;
        margin-bottom: 6px;
      }
      
      .counter-label {
        font-size: 0.85rem;
        letter-spacing: 1.2px;
      }

      .comments-section {
        padding: 60px 5%;
      }
      
      .comment-card {
        padding: 25px 20px;
      }
      
      .comment-text {
        font-size: 1rem;
      }
      
      .comments-title {
        font-size: 2rem;
      }

      .footer-section {
        padding: 50px 5% 25px;
      }
      
      .footer-column h3 {
        font-size: 1.2rem;
      }
      
      .footer-description,
      .newsletter-text {
        font-size: 0.95rem;
      }
      
      .social-icons-footer a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }
    }
    


    /* Floating Glass Bubbles Background */
    .contact-section::before,
    .image-card-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
          radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    .bubbles-contact {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .bubble-contact {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1.5px solid rgba(63, 94, 150, 0.3);
      box-shadow: 0 20px 50px rgba(20, 30, 48, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.1);
      animation: float-light 24s infinite ease-in-out;
      opacity: 0.7;
    }

    /* 6 Bubbles */
    .bubble-contact:nth-child(1) { width: 380px; height: 380px; top: -8%; right: -6%; background: rgba(63, 94, 150, 0.14); animation-delay: 1s; animation-duration: 27s; }
    .bubble-contact:nth-child(2) { width: 290px; height: 290px; top: 60%; left: -10%; background: rgba(20, 30, 48, 0.18); animation-delay: 7s; animation-duration: 23s; }
    .bubble-contact:nth-child(3) { width: 170px; height: 170px; bottom: 20%; right: 12%; background: rgba(63, 94, 150, 0.2); animation-delay: 10s; animation-duration: 19s; }
    .bubble-contact:nth-child(4) { width: 250px; height: 250px; top: 25%; left: 10%; background: rgba(80, 110, 160, 0.16); animation-delay: 4s; animation-duration: 29s; }
    .bubble-contact:nth-child(5) { width: 150px; height: 150px; bottom: 40%; left: 20%; background: rgba(40, 60, 100, 0.22); animation-delay: 13s; animation-duration: 21s; }
    .bubble-contact:nth-child(6) { width: 360px; height: 360px; bottom: -12%; right: -4%; background: rgba(63, 94, 150, 0.11); animation-delay: 9s; animation-duration: 31s; }

    @keyframes float-light {
      0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
      25% { transform: translateY(-70px) translateX(60px) rotate(15deg) scale(1.08); }
      50% { transform: translateY(-110px) translateX(-50px) rotate(-12deg) scale(0.94); }
      75% { transform: translateY(-60px) translateX(70px) rotate(10deg) scale(1.05); }
    }

    /* Contact Section */
    .contact-section {
      padding: 120px 5% 100px;
      background: linear-gradient(135deg, #0a0a0a 0%, #141E30 100%);
      position: relative;
      overflow: hidden;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }

    .contact-info-box, .contact-form-right {
      flex: 1;
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 12px 35px rgba(20, 30, 48, 0.4);
      border: 1px solid rgba(63, 94, 150, 0.25);
      transition: all 0.4s ease;
    }

    .contact-info-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(63, 94, 150, 0.35);
      border-color: rgba(63, 94, 150, 0.5);
      background: rgba(255, 255, 255, 0.1);
    }

    .contact-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .contact-heading {
      color: #2fa9c9;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .contact-title {
      color: #e2e8f0;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .contact-description {
      color: #94a3b8;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .info-icon {
      width: 50px;
      height: 50px;
      background: rgba(47, 169, 201, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      font-size: 1.4rem;
      color: #2fa9c9;
    }

    .info-content h3 {
      color: #e2e8f0;
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .info-content p {
      color: #94a3b8;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Form Styles */
    .form-title {
      color: #e2e8f0;
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-row {
      display: flex;
      gap: 15px;
    }

    .form-row .form-group {
      flex: 1;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #e2e8f0;
    }

    input, textarea {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(63, 94, 150, 0.3);
      border-radius: 8px;
      color: #e2e8f0;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #2fa9c9;
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-5 {
      background: #2fa9c9;
      color: #000;
      border: none;
      padding: 14px 25px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.4s ease;
      width: 100%;
    }

    .btn-5:hover {
      background: #1e8ba8;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(47, 169, 201, 0.4);
    }

    /* Map Section */
    .map-section {
      padding: 100px 5%;
      background: linear-gradient(135deg, #0a0a0a 0%, #141E30 100%);
      position: relative;
    }

    .map-wrapper {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(14px);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 12px 35px rgba(20, 30, 48, 0.4);
      border: 1px solid rgba(63, 94, 150, 0.25);
    }

    .map-iframe {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: 12px;
      filter: grayscale(30%) invert(90%) hue-rotate(180deg);
    }

    /* === IMAGE CARD SECTION === */
.image-card-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Updated Image Card Styles */
.card-scene {
  width: 1056px;
  height: 600px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.card-image {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.6s ease;
}

.front-image {
  width: 60%;
  height: 60%;
  top: 10%;
  left: 20%;
  z-index: 2;
  transform: translateX(0);
}

.back-image {
  width: 60%;
  height: 60%;
  z-index: 1;
  top: 10%;
  left: 20%;
  transform: scale(0.9);
  opacity: 0.8;
  filter: blur(2px) brightness(0.8);
}

.card-scene:hover .front-image {
  transform: translateX(-40%);
}

.card-scene:hover .back-image {
  transform: scale(1) translateX(40%);
  opacity: 1;
  filter: blur(0) brightness(1);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-instruction {
  margin-top: 30px;
  color: #94a3b8;
  font-size: 1.1rem;
  font-style: italic;
}