  /* RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: white;
  }


  /* NAVBAR */
  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
  }

  /* SCROLL EFFECT */
  .navbar.scrolled {
    background: #2e2e2e;
    backdrop-filter: blur(10px);
  }

  /* CONTAINER */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* LOGO */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
  }
  .logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
  }
  .logo-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-weight: bold;
    border-radius: 10px;
  }
  .subtle-logo-text h4 {
    font-size: 15px;
  }
  .subtle-logo-text p {
    font-size: 10px;
    color: #aaa;
    margin-top: 8px;
  }
  /* NAV LINKS */
  .nav-links {
    display: flex;
    gap: 25px;
    color:#f4d03f;
  }

  .nav-link {
    text-decoration: none;
    color: #c9aa71;
    position: relative;
    transition: 0.3s;
  }

  .nav-link:hover {
    color: #eee;
  }

  .nav-link.active {
    color: #fff;
  }
  /* DROPDOWN WRAPPER */
  .nav-item {
    position: relative;
  }

  /* DROPDOWN MENU */
  .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    background: rgba(10,10,20,0.95);
    backdrop-filter: blur(12px);

     border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);

    transition: all 0.3s ease;
    z-index: 999;
  }

  /* LINKS */
  .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #c9aa71;

    transition: 0.3s;
  }

  .dropdown-menu a:hover {
    background: rgba(212,175,55,0.1);
    color: #fff;
    transform: translateX(5px);
  }

  /* SHOW ON HOVER */
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)  scale(1);
  }
  /* MOBILE */
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* MOBILE MENU */
  /* MOBILE MENU FULL SCREEN */
  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);

    display: none;
    justify-content: center;
    align-items: flex-start;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);

    z-index: 999;
  }

  /* SHOW */
  .mobile-menu.show {
    display: flex;
  }

  /* CARD */
  .mobile-menu-card {
    width: 90%;
    margin-top: 20px;
    padding: 20px;

    border-radius: 20px;

    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 10px 40px rgba(0,0,0,0.6);

    animation: menuFade 0.4s ease;
  }

  /* LINKS */
  .mobile-menu-card > a {
    display: block;
    padding: 14px 10px;

    color: #fff;
    text-decoration: none;

    font-size: 16px;
    border-radius: 10px;

    transition: 0.3s;
  }

  .mobile-menu-card > a:hover {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
  }

  /* DROPDOWN HEADER */
  .mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 10px;
    cursor: pointer;

    border-radius: 10px;
  }

  .mobile-dropdown-header a {
    color: #fff;
    text-decoration: none;
  }

  /* ARROW */
  .dropdown-arrow {
    color: #d4af37;
    transition: 0.3s;
  }

  .dropdown-arrow.rotate {
    transform: rotate(180deg);
  }

  /* SUBMENU */
  .mobile-submenu {
    max-height: 0;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: max-height 0.4s ease;
  }

  /* ACTIVE */
  .mobile-dropdown.active .mobile-submenu {
    max-height: 400px;
  }

  /* SUB LINKS */
  .mobile-submenu a {
    padding: 12px 15px;

    color: #d4af37;
    text-decoration: none;

    font-size: 14px;
    border-radius: 8px;

    transition: 0.3s;
  }

  .mobile-submenu a:hover {
    background: rgba(212,175,55,0.08);
    color: #d4af37;
    transform: translateX(5px);
  }

  /* ANIMATION */
  @keyframes menuFade {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {

  .subtle-logo-text h4 {
    font-size: 12px;
  }
  .subtle-logo-text p {
    font-size: 10px;
    color: #aaa;
    margin-top: 6px;
  }
    .nav-links {
      display: none;
    }

    .menu-toggle {
      display: block;
    }

    .mobile-menu.show {
      display: flex;
    }
  }


  /* HERO CSS  */

  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

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

  /* OVERLAY */
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(10,20,40,0.85) 30%,
      rgba(10,20,40,0.5) 60%,
      rgba(10,20,40,0.2) 100%
    );
  }

  /* CONTENT */
  .content {
    position:relative;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: white;
    z-index: 10;
  }

  .subtitle {
    color: #d4af37;
    margin-bottom: 10px;
  }

  .content h1 {
       color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
  }

  .desc {
    color: #ddd;
    margin-bottom: 25px;
  }

  /* BUTTONS */
  .buttons {
    display: flex;
    gap: 15px;
  }

  .btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn.gold {
    background: #d4af37;
    color: black;
  }

  .btn.outline {
    border: 1px solid white;
    color: white;
  }

  .btn:hover {
    transform: scale(1.05);
  }

  /* ARROWS */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 25px;
    padding: 10px;
    cursor: pointer;
    color: white;
    z-index: 6;
  }

  .prev { left: 20px; }
  .next { right: 20px; }

  /* DOTS */
  .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
  }

  .dot {
    height: 10px;
    width: 10px;
    background: white;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    opacity: 0.5;
  }

  .dot.active {
    background: #d4af37;
    opacity: 1;
  }
  /*DIVIDER*/
  .hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 3;

    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.6) 50%,
      #000 100%
    );
  }
  .hero-divider::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 40px;

    background: radial-gradient(
      circle,
      rgba(212,175,55,0.15),
      transparent
    );
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .content h1 {
      font-size: 28px;
    }
  }

  /* FOOTER CSS */
  /* ===== FOOTER ===== */
  .footer {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.95)
  );
  backdrop-filter: blur(10px);
    padding: 70px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* GRID */
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  /* LOGO */
  .footer-logo {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
  }

  .footer-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
  }

  .footer-logo-text h3 {
    color: #fff;
    font-size: 16px;
  }

  .footer-logo-text p {
    color: #aaa;
    margin-top: 10px;
    font-size: 13px;
  }

  /* TEXT */
  .footer-text {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* HEADINGS */
  .footer-col h4 {
    color: #d4af37;
    margin-bottom: 15px;
  }

  /* LINKS */
  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }

  .footer-col ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
  }

  /* CONTACT */
  .footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-contact i {
    color: #d4af37;
  }

  /* SOCIAL ICONS */
  .footer-socials {
    display: flex;
    gap: 12px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration:none;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);

    color: #d4af37;
    font-size: 16px;

    transition: 0.3s;
  }

  .footer-socials a:hover {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
  }

  /* BOTTOM */
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    color: #777;
    font-size: 14px;
  }

  .footer-bottom a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    color: #d4af37;
  }

  /* RESPONSIVE */
  @media(max-width: 992px){
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media(max-width: 600px){
    .footer-container {
      grid-template-columns: 1fr;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
    .footer-logo-text h3 {
      font-size: 20px;
    }
  }
  /* HERO CSS */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  /* THREE BG */
  #bg-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  /* SLIDE */
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 1s;
  }

  .slide.active {
    opacity: 1;
    z-index: 2;
  }

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

  /* OVERLAY */
  .overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
      to right,
      rgba(10,20,40,0.85),
      rgba(10,20,40,0.4)
    );
  }

  /* 🔥 GLASS CARD */
  /* 🔥 PREMIUM GLASS CARD (FIXED) */
  .glass-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 92%;
    max-width: 850px; /* INCREASED */

    padding: 60px 50px; /* MORE SPACE */
    border-radius: 24px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.25);

    text-align: center;
    color: white;
    z-index: 5;

    box-shadow: 0 20px 60px rgba(0,0,0,0.5);


  }

  /* TEXT */
  .subtitle {
    color: #d4af37;
    margin-bottom: 10px;
  }

  .glass-card h1 {
    font-size: clamp(32px, 4vw, 56px); /* RESPONSIVE */
    margin-bottom: 20px;
    line-height: 1.2;
  }


  .glass-card span {
    color: #d4af37;
  }

  .desc {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
  }

  /* BUTTONS */
  .buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn.gold {
    background: #d4af37;
    color: black;
  }

  .btn.gold:hover {
    box-shadow: 0 0 20px #d4af37;
    transform: scale(1.05);
  }

  .btn.outline {
    border: 1px solid white;
    color: white;
  }

  /* DOTS */
  .dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
  }

  /* WAVE */
  .wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 5;
  }

  /* ANIMATION */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translate(-50%, -40%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  /* MOBILE */
  @media (max-width: 768px) {

    .glass-card {
      width: 92%;
      padding: 35px 20px;
      border-radius: 18px;
    }

    .glass-card h1 {
      font-size: 26px;
    }
     .desc {
      font-size: 14px;
    }

    .buttons {
      flex-direction: column;
    }
   .btn {
      padding: 12px 20px;
      font-size: 14px;
    }
  }

  /* STATS SECTION */
  .stats {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #000, #0f172a);
  }

  /* GRID */
  .stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  /* GLASS CARD */
  .stat-card {
    padding: 30px;
    border-radius: 18px;

    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);

    text-align: center;
    color: white;

    transition: 0.4s;
    position: relative;
    overflow: hidden;
  }

  /* GOLD GLOW EFFECT */
  .stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212,175,55,0.3), transparent);
    opacity: 0;
    transition: 0.4s;
  }

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

  .stat-card:hover {
    transform: translateY(-10px) scale(1.03);
  }

  /* ICON */
  .icon {
    font-size: 35px;
    margin-bottom: 15px;
    display: inline-block;
    /* animation:  6s linear infinite; */
  }

  /* ROTATION */
  @keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* NUMBER */
  .counter {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 10px;
  }

  /* TEXT */
  .stat-card p {
    color: #ccc;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    .stats-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 500px) {
    .stats-container {
      grid-template-columns: 1fr;
    }
  }

  /* ABOUT Section CSSS  */

  .about {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #020617, #000);
  }

  /* 🔥 BACKGROUND GLOW */
  .about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent);
    top: -100px;
    left: -100px;
    filter: blur(120px);
  }

  /* CONTAINER */
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  /* IMAGE */
  .about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s;
  }

  .about-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
  }

  /* GLOW EFFECT */
  .image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }

  /* HOVER EFFECT */
  .about-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
  }

  /* CONTENT */
  .about-content {
    color: white;
    animation: fadeUp 1s ease forwards;
  }

  .about-tag {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .about-content h2 span {
    color: #d4af37;
  }

  .about-desc {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  /* POINTS */
  .about-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .point {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards;
  }

  .point:nth-child(1) { animation-delay: 0.2s; }
  .point:nth-child(2) { animation-delay: 0.4s; }
  .point:nth-child(3) { animation-delay: 0.6s; }

  /* BUTTON */
  .about-btn {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* MOBILE */
  @media (max-width: 768px) {

    .about-container {
      grid-template-columns: 1fr;
    }

    .about-image {
      transform: none;
    }

    .about-content h2 {
      font-size: 28px;
    }
  }

  /* SERVICES SECTIONCSS  */
  .services {
    padding: 120px 20px;
    background: radial-gradient(circle, #0f172a, #000);
    text-align: center;
    overflow: hidden;
  }

  /* TITLE */
  .section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 80px;
  }

  .section-title span {
    color: #d4af37;
  }

  /* WRAPPER */
  .orbit-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: auto;
  }

  /*  CENTER FIXED */
  .center-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(110deg, #000, #a18a5e);
    border-radius: 50%;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    border: 2px solid rgba(212,175,55,0.3);
    box-shadow: 0 0 40px rgba(212,175,55,0.3);

    z-index: 5;
  }

  /*  ORBIT ROTATES */

  .orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitRotate  30s linear infinite;
  }

  /* Rotation  */
  @keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .orbit-wrapper:hover .orbit {
    animation-play-state: paused;
  }
  /* PERFECT CIRCLE POSITION */
  .planet {
    position: absolute;

    width: 100px;
    height: 100px;

    top: 50%;
    left: 50%;

    margin: -50px; /* half width */

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    border: 1px solid rgba(212, 152, 21, 0.1);

    /* PERFECT POSITION */
    transform:
      rotate(calc(var(--i) * 60deg))
      translateY(-180px)
      rotate(calc(var(--i) * -60deg));

    transition: 0.3s;
  }
  /* KEEP TEXT STRAIGHT */
  .planet span {
    display: inline-block;
    animation: textFix 30s linear infinite;
  }

  /* SAME SPEED AS ORBIT */
  @keyframes textFix {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
  }
  .orbit-wrapper:hover .planet span {
    animation-play-state: paused;
  }

  /* HOVER */
  .planet:hover {
    background: rgba(212,175,55,0.2);
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
  }

  /* MOBILE */
  @media(max-width:768px){

    .orbit-wrapper {
      width: 280px;
      height: 280px;
    }

    .planet {
      width: 70px;
      height: 70px;
      font-size: 11px;

      /* 🔥 IMPORTANT: smaller radius */
      transform:
        rotate(calc(var(--i) * 60deg))
        translateY(-122px)
        rotate(calc(var(--i) * -50deg));
    }

    .center-circle {
      width: 110px;
      height: 110px;
      font-size: 8.5px;
    }

  }


  /* FEATURES SECTION CSS */

  .features {
    padding: 120px 20px;
    background: radial-gradient(circle at center, #020617, #000);
    text-align: center;
    position: relative;
  }

  /* HEADER */
  .features-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
  }

  .features .tag {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 1px;
  }

  .features h2 {
    font-size: 36px;
    color: white;
    margin: 10px 0;
  }

  .features h2 span {
    color: #d4af37;
  }

  .features .subtitle {
    color: #aaa;
    font-size: 16px;
  }

  /* GRID */
  .features-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* CARD */
  .feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px 25px;
    color: white;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s;
    position: relative;
    overflow: hidden;
  }

  /* ICON */
  .feature-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  /* TITLE */
  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  /* TEXT */
  .feature-card p {
    color: #bbb;
    font-size: 14px;
  }

  /* HOVER EFFECT */
  .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 10px 40px rgba(212,175,55,0.2);
  }

  /* GOLD GLOW ANIMATION */
  .feature-card::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
  }

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

  /* ANIMATION (ON SCROLL) */
  .feature-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
  }

  .feature-card:nth-child(1) { animation-delay: 0.2s; }
  .feature-card:nth-child(2) { animation-delay: 0.4s; }
  .feature-card:nth-child(3) { animation-delay: 0.6s; }
  .feature-card:nth-child(4) { animation-delay: 0.8s; }

  /* KEYFRAMES */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* MOBILE */
  @media (max-width: 768px) {
  .feature-tag {
      font-size: 16px;
    }
    .features-grid {
      grid-template-columns: 1fr;
    }

    .features h2 {
      font-size: 28px;
    }

  }

  /* TESTIMONALS SECTION CSS */

  /* ===== TESTIMONIALS ===== */

  .testimonials {
    padding: 120px 20px;
    background: radial-gradient(circle at center, #020617, #000);
    text-align: center;
    position: relative;
  }
  .testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  /* HEADER */
  .testimonials-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
  }

  .testimonials .testimonials-tag {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 1px;
  }

  .testimonials h2 {
    font-size: 36px;
    color: white;
    margin: 10px 0;
  }

  .testimonials h2 span {
    color: #d4af37;
  }

  .testimonials .testimonials-subtitle {
    color: #aaa;
    font-size: 16px;
  }

  /* HORIZONTAL SCROLL */
  .testimonial-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
  }

  /* SLIDER CENTER FIX */
  .testimonial-slider {
    overflow: hidden;
    width: 100%;
    position:relative;
  }

  /* TRACK */
  .testimonial-track {
    width: max-content;
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
  }

  /* CARD */
  .testimonial-card {
    min-width: 300px;
    max-width: 300px;

    padding: 25px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: 0.3s;
  }

  /* HOVER */
  .testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    border: 1px solid #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
  }

  /* TEXT */
  .testimonial-card p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .testimonial-card h4 {
    color: #fff;
    font-size: 15px;
  }

  .testimonial-card span {
    color: #d4af37;
    font-size: 13px;
  }

  /* ANIMATION FIX */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* MOBILE */
  @media(max-width:768px) {

    .testimonial-card {
      min-width: 260px;
    }
  .testimonials-tag {
      font-size: 16px;
    }
    .testimonials-header h2 {
      font-size: 28px;
    }

  }

  /* BLOG SECTION CSS */
  .blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card {
  text-decoration: none;
}

.blog-content a {
  color: #d4af37;
  text-decoration: none;
}

.blog-content a:hover {
  color: #fff;
}

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  .blog-card {
    background: linear-gradient(145deg, #0b1220, #050a14);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
     text-decoration: none;
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .blog-content {
    padding: 20px;
    text-align: center;
    flex: 1;
  }

  .blog-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .blog-content p {
    color: #aaa;
    font-size: 14px;
  }


  /* ===== BLOG SECTION ===== */

  .blog-section {
    padding: 120px 20px;
    background: radial-gradient(circle at center, #020617, #000);
    text-align: center;
    position: relative;
  }
  .blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  /* HEADER */
  .blog-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
  }

  .blog-section .blog-tag {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 1px;
  }

  .blog-section h2 {
    font-size: 36px;
    color: white;
    margin: 10px 0;
  }

  .blog-section h2 span {
    color: #d4af37;
  }

  .blog-section .blog-subtitle {
    color: #aaa;
    font-size: 16px;
  }
  /* GRID */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }

  /* CARD */
  .blog-card {
    border-radius: 20px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: 0.4s;
    position: relative;
  }

  /* IMAGE */
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* CONTENT */
  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .blog-content p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* BUTTON */
  .btn-blog {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 8px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }

  .btn-blog:hover {
    background: #fff;
    color: #000;
  }

  /* HOVER EFFECT */
  .blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  }

  /* GRADIENT GLOW EFFECT */
  .blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(212,175,55,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
     text-decoration: none;
  }

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

  /* RESPONSIVE */
  @media(max-width:992px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:600px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }

    .blog-card img {
      height: 180px;
    }
  }
  /* CTA SECTION CSS */

  .cta-section {
     padding: 120px 20px;
    background: radial-gradient(circle at center, #020617, #000);
    text-align: center;
    position: relative;

  }

  /* LAYOUT */
  .cta-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  /* HEADER */
  .cta-header {
  max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
  }

  .cta-header h2 {
    font-size: 36px;
    color: white;
    margin: 10px 0;
  }

  .cta-tag {
   color: #d4af37;
    font-size: 20px;
    letter-spacing: 1px;
  }

  .cta-header span {
    color: #d4af37;
  }

  .cta-subtitle {
      color: #aaa;
    font-size: 16px;
  }

  /* MAIN GRID */
  .cta-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
  }

  /* MOBILE */
  @media(max-width:768px){
    .cta-main {
      grid-template-columns: 1fr;
    }
  }

  /* ===== FORM ===== */

  /* heading */
  .form-header {
    margin-bottom: 40px;
  }

  .form-header h3 {
    background: linear-gradient(90deg, #fff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
  }

  .form-header p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
  }
  .cta-form {
     width: 100%;
    max-width: 520px;
    padding: 60px 30px; ;
    border-radius: 25px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.4s;
  }

  .cta-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(212,175,55,0.15);
  }

  .cta-heading h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 8px;
  }

  .cta-heading p {
    color: #aaa;
    margin-bottom: 25px;
  }

  /* INPUT GROUP */
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 28px;

    border-radius: 12px;
    border: none;

    background: rgba(255,255,255,0.08);
    color: #fff;

    transition: 0.3s;
  }

  .input-group input:focus,
  .input-group textarea:focus {
    outline: none;
    border: 1px solid #d4af37;
    background: rgba(255,255,255,0.12);
  }

  /* BUTTON */
  .cta-btn {
    width: 70%;
    padding: 14px;

    border-radius: 12px;
    border: none;

    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
  }

  .cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
  }

  /* ===== RIGHT SIDE ===== */

  .cta-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* CARD */
  .cta-card {
    padding: 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
  }

  .cta-card:hover {
    transform: translateY(-5px);
    border: 1px solid #d4af37;
    box-shadow: 0 0 25px rgba(212,175,55,0.2);
  }

  .cta-card h3 {
     background: linear-gradient(90deg, #fff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    margin-bottom: 15px;
  }


  /* CONTACT LIST */
  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* CONTACT ITEM */
  .contact-itemm {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #ccc;

    padding: 12px 14px;
    border-radius: 12px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);

    transition: all 0.3s ease;
    position: relative;
  }

  /* ICON STYLE */
  .contact-itemm .iconnS {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(212,175,55,0.1);
    color: #d4af37;

    font-size: 16px;

    transition: 0.3s;
  }

  /* HOVER EFFECT */
  .contact-itemm:hover {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.4);

    transform: translateX(5px);
  }

  .contact-itemm:hover .icon {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    transform: scale(1.1);
  }

  /* TEXT */
  .contact-itemm span:last-child {
    font-size: 14px;
    font-weight: 500;
  }

  /* SOCIAL ICONS */
  .socials {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    justify-content: center;
  }

  .social-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(212,175,55,0.3);

    color: #d4af37;
    font-size: 18px;

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  /* GOLD GLOW EFFECT */
  .social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
  }

  /* ICON ABOVE GRADIENT */
  .social-icon i {
    position: relative;
    z-index: 2;
  }

  /* HOVER EFFECT */
  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon:hover {
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  }

  /* ===== MOBILE ===== */

  @media(max-width: 768px) {

    .cta-wrapper {
      grid-template-columns: 1fr;
      padding: 0 10px;
    }

    .cta-main {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .cta-form {
      max-width: 100%;
      padding: 25px 20px;
    }

    .cta-card {
      width: 100%;
      padding: 20px;
    }

    .form-header h3 {
      font-size: 20px;
    }

    .form-header p {
      font-size: 13px;
    }

  }

  /* WHATAPP TOGGLE SECTION CSS */

  /* FLOAT BUTTON */
  .wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;

   background: linear-gradient(135deg, #d4af37, #b8962e);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;

    cursor: pointer;
    z-index: 9999;
    transition: 0.3s ease;
  }

  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(212,175,55,0.9);
  }

  /* CHAT BOX */
  .wa-chat-box {
    position: fixed;
    bottom: 100px;
    right: 25px;

    width: 320px;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;

   display: none;
    z-index: 9999;
    border: 1px solid rgba(212,175,55,0.3);

  }

  /* HEADER */
  .wa-header {
     background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    padding: 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 600;
  }

  .wa-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000;
  }


  /* ===== BODY ===== */
  .wa-body {
    padding: 16px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
  }
  /* CHAT BODY */
  .wa-chat-body {
    height: 260px;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* BOT MESSAGE */
  .bot-msg {
    align-self: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 10px 14px;
    border-radius: 12px;
    color: #ddd;
    max-width: 80%;
  }

  /* USER MESSAGE */
  .user-msg {
    align-self: flex-end;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
  }

  /* INPUT AREA */
  .wa-input {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .wa-input input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
  }

  .wa-input button {
    width: 50px;
    border: none;
    background: #d4af37;
    color: #000;
    cursor: pointer;
  }
  /* ===== FOOTER BUTTON ===== */
  .wa-footer {
    padding: 12px;
  }
  .wa-footer a {
    display: block;
    text-align: center;

    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;

    padding: 12px;
    border-radius: 30px;

    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
  }

  .wa-footer a:hover {
    background: #d4af37;
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
  }
  /* ===== MOBILE RESPONSIVE ===== */
  @media (max-width: 768px) {

    /* FLOAT BUTTON */
    .wa-float {
      width: 55px;
      height: 55px;
      bottom: 20px;
      right: 20px;
      font-size: 24px;
    }

    /* CHAT BOX → FULL WIDTH */
    .wa-chat-box {
      width: 75%;
      height: 45vh;

      right: 30px;
      bottom: 80px;

      border-radius: 20px 20px 0 0;
      transition: all 0.3s ease;
    }

    /* HEADER */
    .wa-header {
      padding: 12px 16px;
      font-size: 14px;
    }

    /* CHAT BODY */
    .wa-chat-body {
      height: calc(75vh - 120px);
      padding: 12px;
      scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    }

    /* MESSAGES */
    .bot-msg,
    .user-msg {
      font-size: 13px;
      max-width: 85%;
      line-height: 1.4;
    }

    /* INPUT AREA */
    .wa-input {
      position: sticky;
      bottom: 0;
      background: #111;
    }

    .wa-input input {
      padding: 14px;
      font-size: 14px;
    }

    .wa-input button {
      width: 55px;
      font-size: 16px;
    }

  }