@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');




    /* * {
      scroll-behavior: smooth;
      box-sizing: border-box;
    }


html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: hidden;
   margin: 0;
      background-color: #f6f8f8;
      padding: 0;

} */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       html, body {
            font-family: 'Poppins', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
                        margin: 0;
            padding: 0;
            box-sizing: border-box;
              overflow-x: hidden;
  /* overflow-y: hidden; */
        }



                








        /* === 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.6);
  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;
  }
}












        .section-title {
            
            font-family: 'Baskervville', serif !important;

            font-size: 3.5rem;
            font-weight: normal;
            color: #fff;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #fff, transparent);
        }

        .content-section {
            padding: 100px 0;
            background: #000;
        }
        .content-section img{
          border-radius: 30px;
        }

        .content-section:nth-child(even) {
            background: #0a0a0a;
        }

        .text-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e0e0e0;
            margin-bottom: 2rem;
        }

        .text-content p {
            margin-bottom: 1.5rem;
        }

        .vision-mission {
            background: linear-gradient(135deg, #111 0%, #000 100%);
            padding: 80px 0;
            position: relative;
        }

        .vm-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            height: 100%;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
        }

        .vm-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .vm-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #d0d0d0;
        }




.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
          border: 1px solid rgb(144, 141, 141);

}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(143, 142, 142, 0.947);
}


        /* .service-card:hover{
          border: 1px solid white;
        } */

        .why-choose-us {
            background: #000;
            padding: 100px 0;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-number {
            font-family: 'Libre Baskerville', serif;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .feature-text {
            color: #ccc;
            line-height: 1.6;
        }

        .process-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
            padding: 100px 0;
        }

        .process-timeline {
            position: relative;
            margin-top: 3rem;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 60px;
            width: 2px;
            height: calc(100% + 3rem);
            background: linear-gradient(180deg, #fff, transparent);
            opacity: 0.3;
        }

        .process-step:last-child::before {
            display: none;
        }

        .process-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(30deg, #f9d742, white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-right: 2rem;
            flex-shrink: 0;
        }

        .process-content h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .process-content p {
            color: #d0d0d0;
            line-height: 1.6;
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, #fff, #ccc);
            width: 0%;
            transition: width 0.1s ease;
        }

        @media (max-width: 768px) {
            .brand-title {
                font-size: 2.5rem;
            }
            
            .brand-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .vm-card {
                padding: 2rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
            }
            
            .process-number {
                margin: 0 auto 1rem auto;
            }
            
            .process-step::before {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }
        .stagger-6 { animation-delay: 0.6s; }



.why-choose-us i{
  color: #f9d742;
}











        /* 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;
  }
    }}