        
        
        
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #0e0f0f;
            color: #fff;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        

[id] {
  scroll-margin-top: 100px; /* adjust based on your navbar height */
}



                
/* === Navbar Base === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 10rem;
  transition: all 0.3s ease;
  background: transparent;
  height: 100px;
}


.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9); /* black with transparency */
  backdrop-filter: blur(5px);     /* adds blur effect */
}

.offcanvas{
    background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);

}

.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}




.navbar .container {
  max-width: 1200px;
  padding: 0 15px;
}

.nav-logo {
  height: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  background-color: transparent;
  padding-left: 15px;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.navbar-brand small {
  font-size: 0.6rem;
  display: block;
  letter-spacing: 2px;
  margin-top: -5px;
}

/* Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
  margin-right: 15px;
}
.menu-toggle:hover {
  transform: scale(1.1);
}
.menu-toggle.active {
  transform: rotate(90deg);
}


.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 100px 30px 50px 30px;
  overflow-y: auto;
}
.offcanvas-menu.active {
  right: 0;
}


.menu-item {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
  /* margin: 10px 0; */
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}



.dropdown-toggle,
.dropdown-toggle:focus,
.dropdown-toggle:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important; /* optional */
}

.m{
  margin: 10px 0;

}

.ser{
  margin:  0px !important;
}
.menu-item:hover {
  color: #ccc;
}

.dropdown-item {
  position: relative;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 300;

  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}
.dropdown-arrow {
  font-size: 1.2rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.dropdown-arrow.active {
  transform: rotate(180deg);
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
  padding-left: 20px;
}
.dropdown-content.active {
  max-height: 500px;
}
.dropdown-item {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 1.4rem;
  margin: 10px 0;
  transition: color 0.3s ease;
}
.dropdown-item:hover {
  color: #fff;
}

.offcanvas-header .btn-close {
  filter: invert(1) !important;    
  width: 1.5rem !important;        
  height: 1.5rem !important;
  opacity: 1 !important;  
  float: right;         
}

.offcanvas-header .btn-close:focus {
  box-shadow: none !important;     
}




/* === Responsive === */
@media (max-width: 768px) {
  .navbar {
    height: 80px;
  padding: 1rem 1rem;

  }
  .nav-logo {
    height: 60px;
    padding-left: 10px;
  }
  .menu-item {
    font-size: 1.6rem;
  }
  .dropdown-toggle {
    font-size: 1.6rem;
  }
  .dropdown-item {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 70px;
  }
  .nav-logo {
    height: 40px;
    margin-left: 15px;
  }
  .menu-item {
    font-size: 1.4rem;
  }
  .dropdown-item {
    font-size: 1rem;
  }
}












       












        .baskerville {
            font-family: 'Libre Baskerville', serif;
        }
   
        .hero-section {
            min-height: 100vh;
            background-color: #0e0f0f;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: normal;
            line-height: 1.1;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: normal;
            opacity: 0.9;
            margin-bottom: 3rem;
            animation: slideInUp 1s ease-out 0.3s both;
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Service Cards */
        .service-card {
            background-color: #131616;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 20px 40px rgba(255,255,255,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: #191D1D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background-color: #333;
            transform: rotate(360deg) scale(1.1);
        }



.service-top-icon {
    width: 80px;
    height: 80px;
    background-color: #191D1D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;  /* auto will center it */
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

        
        .service-card:hover .service-top-icon {
            background-color: #333;
            transform: rotate(360deg) scale(1.1);
        }
        
        .service-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .service-description {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 2rem;
        }




                .service-top-title {
            font-size: clamp(1.8rem,3vw,2.8rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .service-top-description {
            font-size: clamp(1.1rem,1.3vw,1.3rem);
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 2rem;
        }



        
        .service-features {
            list-style: none;
            padding: 0;
        }
        
        .service-features li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 2rem;
        }
        
        .service-features li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #fff;
            font-weight: bold;
        }
        
      
        

        .process-section {
            background-color: #191D1D;
            padding: 8rem 0;
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .process-step:nth-child(1) { animation-delay: 0.2s; }
        .process-step:nth-child(2) { animation-delay: 0.4s; }
        .process-step:nth-child(3) { animation-delay: 0.6s; }
        .process-step:nth-child(4) { animation-delay: 0.8s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .process-number {
            width: 100px;
            height: 100px;
            background-color: #131616;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }
        
        .process-number::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: rotate 3s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .process-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
     


        .cta-section {
            background-color: #131616;
            padding: 8rem 0;
            text-align: center;
        }
        
        .cta-btn {
            background-color: #fff;
            color: #0e0f0f;
            border: none;
            padding: 1.5rem 4rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
            transition: left 0.5s;
        }
        
        .cta-btn:hover::before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255,255,255,0.2);
            color: #0e0f0f;
            background-color: #f0f0f0;
        }

        .section-padding {
            padding: 8rem 0;
        }
        
        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            width: 100px;
            height: 3px;
            background-color: #fff;
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
                text-align: center;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
            
            .process-section {
                padding: 4rem 0;
            }
            
            .cta-section {
                padding: 4rem 0;
            }
            
            .section-padding {
                padding: 4rem 0;
            }
        }
        
      
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }















        /* footeerrr? */




    footer {
      padding-top: 40px;
      background-color: #0e0f0f;
      
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: end;
      gap: 50px;
      flex-wrap: wrap;
    }

    .footer-nav li a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .footer-nav li a:hover {
      color: #fff;
    }

    .footer-line {
      border-top: 1px solid #444;
      margin: 60px 0;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #ccc;
      text-align: left;
    }

    .footer-icons {
      text-align: right;
    }

    .footer-icons a {
      display: inline-block;
      margin-left: 15px;
      color: #ccc;
      font-size: 1rem;
      border: 1px solid #555;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      transition: all 0.3s;
    }

    .footer-icons a:hover {
      color: white;
      border-color: white;
    }

    .footer-copy {
      text-align: left;
      font-size: 0.85rem;
      color: #FFFFFF;
      margin-top: 10px;
      padding-bottom: 20px;
      font-weight: 400;
    }

    @media (max-width: 576px) {
      .footer-text,
      .footer-icons {
        text-align: center;
      }

      .footer-icons a {
        margin-left: 10px;
        margin-right: 10px;
      }
    }

    @media (max-width:769px) {
        .footer-nav{
            justify-content: center;
            gap: 20px;
        }

            .footer-nav li a {
      
      font-size: 0.80rem;
      transition: color 0.3s;
    }

    @media (max-width: 576px) {
  .footer-copy {
    text-align: center;
  }
    }}