body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar-brand {
    font-size: 14px;
}

.mainColor {
    color: #de59ad !important;
}


.navbar.scrolled span{
    color: black !important;
}

.subColor{
    color: #462143 !important;
}

.subColor2{
    color: #462143 !important;  
}


/* .navbar-sec {
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: transparent; 
    box-shadow: none; 
} */

.navbar {
    position: fixed; /* Sticks navbar to the top */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px); /* Glass effect */
    background-color: transparent; /* Semi-transparent glass effect */
    box-shadow: none; /* No shadow initially */
}

  .modal{
    z-index: 6000;
  }

  .navbar-toggler:focus {
  outline: none;
  box-shadow: none; /* Optional: removes any shadow that may appear */
}





/* Navbar Styling After Scroll */
.navbar.scrolled {
    background-color: white; /* Solid white background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    color: black;


    .nav-link {
    color: rgb(0, 0, 0);
    transition: color 0.3s ease;
    }

    .nav-link.active {
    color: #000000 !important; /* Customize active link color */
    font-weight: bold;
    }

    .navbar-brand {
        color:#000000;
    }

    /* .navbar-brand span:hover{
        color: #000;
    } */

    .navbar-toggler-icon{
  background-image: url('data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%2833, 37, 41, 0.75%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e') !important;

    }

    .navbar-brand:focus, .navbar-brand span:hover{
    color:#000 !important;  
}

}

/* Navbar Brand and Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    color: #fffdfd;
    transition: color 0.3s ease;
}

/* .navbar-brand img:hover, .navbar-brand span:hover{
    color:#fff !important;  
} */

/* Navbar Links */
.nav-link {
    font-size: .9rem;
    color: rgb(168, 168, 168);
    text-decoration: none;
    padding: 5px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:focus,.nav-link:hover {
    color: #fff; /* Hover effect for links */
}

/* Active Navbar Link */
.nav-link.active {
    color: #ffffff !important; /* Customize active link color */
    font-weight: bold;
}



/* Responsive enhancements */
@media (max-width: 768px) {
 

    

    .navbar-nav .nav-link {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

.video-container {
    margin: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 10;
}

.video-container.scrolled {
    width: 85%;
    height: 70vh;
    border-radius: 30px;
    top: 100px;
    margin-left: 7.5%; /* Centering using margin-left when scrolled */
    transition: all 0.5s ease-in-out; /* Smooth transition */
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}



.controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.control-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.main-content {
    margin-top: 120vh;
    /* Add space below the video */
}

.promo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #fff;
    color: #000;
}

.promo-section h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
}

.promo-section p {
    font-size: 1.2rem;
    margin: 0;
}

.card {
    /* position: relative; */
    border: none;
    border-radius: 32px !important;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 100%;
    height: 35vh;
    display: block;
}

.card-overlay {
    /* position: absolute; */
    /* top: 15px;
    left: 15px; */
    color: rgb(0, 0, 0);
    z-index: 2;
    padding: 20px;
    border-radius: 8px;
}

.card-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    /* background: linear-gradient(to right, #482245, #eb5eb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-weight: bold;
    /* Adjust as needed */
}

.card-title-common {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    margin-top: 5px;
}

.plus-button:focus{
    outline: none !important;
    border: none !important;
}

.plus-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #c53892;
    color: #fff;
    border: none !important;
    border-radius: 50%;
    font-size: 28px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hide {
    display: none;
}

.plus-button:hover {
    background-color: #462143 ;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.modal-body {
    font-size: 1.1rem;
    overflow-y: auto; 
    height: calc(100% - 120px);
}

.modal-backdrop.show {
    backdrop-filter: blur(8px);
}

.vision-mission-section {
    margin-top: 3rem;
}

/* Modal Styling */
.custom-modal {
    border-radius: 30px;
    overflow: hidden;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-text small {
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    /* Muted color for small text */
    margin-bottom: 5px;
}

.header-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000;
    /* Black text for the heading */
}

.close-btn {
    width: 30px;
    height: 30px;
    background-color: #c53892;
    /* Black background color for the close button */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #462143;
    /* Slightly lighter black on hover */
}

.custom-modal-body {
    padding: 0px 20px;
    max-height: 550px;
    overflow-y: auto;
}

.modal-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-secondary-img {
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
}

/* Scrollbar Styling */
.custom-modal-body::-webkit-scrollbar {
    width: 8px;
}

.custom-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.custom-modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.new-section{
    background-color: rgb(247, 247, 247);
}

.new-section .card-custom {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: start;
}

.new-section .card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.new-section .card-img {
    width: 50%;
    object-fit: cover;
}

.new-section .card-text-content {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.plus-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.card-overlay1{
    padding-top:20px;
}

.card-overlay1>h2 {
    font-size: 1.5rem !important;
}

.card-overlay1>p {
    color: grey !important;
}

.headings-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.newSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 100%;
}

.heading-left {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.heading-right {
    font-size: 16px;
    text-align: right;
    margin: 0;
    line-height: 1.5;
}

.card-custom .card-img {
    transition: transform 0.5s ease;
    /* Smooth transition for the zoom effect */
}

.card-custom:hover .card-img {
    transform: scale(1.1);
    /* Zoom in the image slightly */
}

/* Optional: Add a subtle shadow effect on hover */
.card-custom:hover {
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  */
    transition: box-shadow 0.3s ease;
    /* Smooth transition for the shadow */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    /* Ensure it takes full width of the container */
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide{
   box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.12) !important;
   padding: 1rem;
}

.swiper-card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-buttons-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.swiper-button {
    border: none;
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.swiper-button:hover {
    background-color: #e0e0e0;
}

/* Media query for 991px and below */
@media (max-width: 991px) {
    /* .show {
        display: none;
    } */

    .hide {
        display: flex;
        /* Show the .hide navbar */
    }
}

@media (max-width: 425px) {
    .missionContainer{
        margin-top: 2rem;
    }
    .marginT{
        margin-top: 1rem !important;
    }
    .newSection{
        flex-direction: column;
    }
}

.card-title.subColor {
    position: relative;
    display: inline-block;
    color:#d154a4 !important; 
    margin-bottom: 1rem;
  }
  .card:hover .card-title.subColor {
    color: #462143 !important;
}

  .card-title.subColor::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: #d154a4;
  }


  
  .card-title-common.subColor {
    position: relative;
    display: inline-block;
    color:#d154a4 !important; 
    margin-bottom: 1rem;
  }
  .card:hover .card-title-common.subColor {
    color: #462143 !important;
}
  .card-title-common.subColor::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: #d154a4;
  }
  
  .customSwiperSilde{
    box-shadow: none !important;
  }


  .store-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .store-card img {
    height: 50px; /* Set the same height for both images */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
  }
  
  .store-card img:hover {
    transform: scale(1.1);
  }
  
  .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }

  /* uday's css start */

  .testimonial-content .testimonial-review
  {
    min-height: 80px;
  }

  /* uday's css end */




 .cust-footer{
        text-align: center;
        padding: 15px;
        background-color: #fafafa75;
        border-top: 1px solid #ddd;
 }