*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.register_form_wrapper .scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.register_form_wrapper .scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Apply on a dark-mode */
:root {
    --background-color: rgb(255, 255, 255);
    --surface-color: rgb(241, 234, 234);
    --font-color-main: rgb(53, 51, 51);
    --font-color-medium: rgb(104, 97, 97);
    --search-button-color:  rgb(20, 11, 97);
    --font-color-disabled: rgb(134, 134, 134);
    --font-on-primary-color-main: rgb(0, 0, 0);
    --hero-text-color: rgb(228, 196, 14);
    --search-input-border: rgb(255, 217, 0);
}

/* Apply on a light-mode */
@media (prefers-color-scheme: dark) {
    :root{
        --background-color: rgb(18, 18, 18);
        --surface-color: rgb(36, 36, 36);
        --font-color-main: rgb(236, 228, 228);
        --font-color-medium: rgb(255, 255, 255);
        --font-color-disabled: rgb(255, 255, 255);
        --search-button-color: rgb(18, 18, 18);
        --font-on-primary-color-main: rgb(0, 0, 0);
        --hero-text-color: rgb(228, 196, 14);
        --search-input-border: rgb(255, 217, 0);
    }
}


/* Footer Styles */
.custom-footer {
  background: linear-gradient(135deg, #283593 0%, #1a237e 100%);
  color: white;
  padding: 3rem 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ff6d00;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-btn:hover {
  background-color: #ff9100;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.contact-btn svg {
  width: 18px;
  height: 18px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ff6d00;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #ff6d00;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.footer-links a:hover {
  color: #ff6d00;
  transform: translateX(5px);
}

.footer-links svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.footer-links a:hover svg {
  fill: #ff6d00;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.highlight {
  color: #ff6d00;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-icons {
    justify-content: flex-start;
    
  }
}


.__nav_container{
    background: var(--background-color) !important;
    z-index: 9999 !important;
}
.__navlinks ul li a{
    color: var(--font-color-medium) !important;
    font-family: 'Montserrat Alternates',sans-serif !important;
}
nav ul li a:hover,
nav ul li a:focus {
    background-color: transparent !important;
    color: orange !important;
}

body {
    overflow-x: hidden;
    font-family: 'Montserrat','Montserrat Alternates', 'Roboto', 'Quicksand','Outfit', sans-serif;
  }

.sidenav{
    z-index: 9999 !important;
}
.__logo .__logo-img{
    margin-top: -20px;
}
.__suapon{
    font-size: 20px;
    margin-left: -15px;
    margin-top: -10px;
}
.__brand{
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginWrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}
.loginWrapper .loginIcon{
    font-size: 14px; 
}
.__menu{
    color: var(--font-color-medium);
}
.__close-pop .__close-pop-up{
    cursor: pointer;
}
.__btn1{
    display: flex;justify-content: center;align-items: center;width: 100%;margin: auto;
}

/* Account Dropdown Styles */
  .account__dropdown {
    position: relative;
    display: inline-block;
    margin-top: 5px;
  }

  .account__btn {
    background: none;
    border: none;
    /* color: white; */
    cursor: pointer;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: inherit;
    font-family: inherit;
  }
  
  .account__btn:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .account__btn .material-icons {
    margin-left: 5px;
    transition: transform 0.3s;
  }
  
  .account__dropdown.active .account__btn .material-icons {
    transform: rotate(180deg);
  }
  
  .dropdown__content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .account__dropdown.active .dropdown__content {
    display: block;
  }
  
  .dropdown__content .dropdown__content_a {
    color: #333 !important;
    padding-left: 12px;
    border-top: 1px solid #e6e4e4;
    text-decoration: none;
    display: flex;
    grid-gap: 6px;
    align-items: center;
    transition: background 0.2s;
  }
  
  .dropdown__content .dropdown__content_a:hover {
    background-color: #e7e2e2 !important;
  }
  
  .dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0;
  }



/* ----nav-search----- */
.__nav-search{
    position: absolute;
    top: -10%; 
    background: var(--background-color);
    width: 100%;
    padding: 20px 50px;
    transition: opacity 200ms ease-out,
                top 300ms ease-in,
                background 300ms ease;
    opacity: 0;
}
.activeSearch {
    top: 63px;
    z-index: 1;
    opacity: 1;
    transition: opacity 200ms ease-in,
                top 300ms ease-in,
                background 300ms ease-out;
}
.__nav-search-input{
    border-radius: 25px;
    border: 1px solid var(--surface-color);
}
.__nav-search .__nav-input::placeholder{
    color: var(--font-color-disabled);
}
.__m-glass{
    cursor: pointer;
    color: var(--font-color-medium);
}
/* home */
.__label_text{
    color: var(--font-color-medium);
}
/* about */
.__vision_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    margin-top: 50px;
}
.__vision{
    width: 100%;
}

/* profile */
.__font_main_text{
    color: var(--font-color-main);
}

/* Custom Footer Styles */
  .footer-logo {
    height: 50px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .footer-newsletter {
    margin-top: 25px;
  }
  
  .newsletter-form .input-field {
    margin-top: 10px;
  }
  
  .newsletter-form button {
    margin-top: 10px;
    border-radius: 20px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffab40 !important;
  }
  
  .contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .contact-info i {
    margin-right: 10px;
  }
  
  .social-media {
    margin-top: 25px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .social-icons .btn-floating {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  
  .social-icons i {
    font-size: 16px;
  }
  
  .footer-copyright {
    padding: 15px 0;
  }

/* home-sliders-image */
@media screen and (max-width:700px) {
    .__logo .__logo-img{
        height: 80px;
        margin-top: -13px;
        transition: margin-left 200ms ease,
                    margin-top 200ms ease;
    }
   
}



/* pdf styling */
.export-dropdown {
        position: relative;
        display: inline-block;
    }
    .export-btn {
        background: #3b5362;
        color: white;
        padding: 8px 16px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
    }
    .export-options {
        display: none;
        position: absolute;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 1;
    }
    .export-options a {
        display: block;
        padding: 8px 16px;
        color: #333;
        text-decoration: none;
    }
    .export-options a:hover {
        background: #f5f5f5;
    }
    .export-dropdown:hover .export-options {
        display: block;
    }
/* ---------start-header-section----- */
.__clear{
    width: 100%;
}
.__acct-links .__m-i-glass{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
}
.__acct-links .__m-glass{
    font-size: 40px;
}

/* ---------end-header-section----- */

/* -----------hero-section------ */
.background-image .bg-img{
    /* margin-top: -15px; */
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.__overlay-img{
    position: relative;
}
.__overlay-img::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: linear-gradient(to top,
                              rgba(3, 142, 255, 0.397),
                              rgba(3, 91, 255, 0.322));
}
.background-image{
    position: relative;

}
.__hero-text{
    color: white;
    font-weight: 600;
    font-family: 'Montserrat',sans-serif !important;
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%,-50%);
}
.__hero-search{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    padding: 30px;
    border-radius: 45px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    z-index: 999;
}
.__search-input{
    background: transparent;
    backdrop-filter: 2px;
    border: 1px solid var(--font-color-disabled);
    border-radius: 35px;
    padding: 0 20px;
    color: var(--font-color-medium);
}
.searchBtn{
    background: var(--search-button-color) !important;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
    border: 1px solid #d3c0c0 !important;
    height: 50px;
    border-left: none;
    padding: 15px 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    cursor: pointer;
}
.__input{
    border: none !important;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    width: 100%;
    height: 50px;
    padding: 15px 20px;
    background: var(--background-color) !important;
    color: #f7f1f1ea;
    font-family: "Montserrat Alternates",sans-serif !important;
    font-weight: 500;
    font-size: 17px;
    outline: none;
    border: none;
}
._input{
    border: none;
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    color: var(--font-color-main) !important;
    font-family: roboto;
    font-weight: 500;
    font-size: 17px;
    outline: none;
}
.__input::placeholder{
    color: var(--font-color-disabled) !important;
}
._input::placeholder{
    color: var(--font-color-disabled) !important;
}
.__btn_search .__glass{
    color: var(--surface-color);
}
/* Select-field */
.select-wrapper{
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.select-content {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.select-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    text-wrap: nowrap;
}
.select-content select {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.5rem;
    background-color: white !important;
    color: #3b5361;
    font-size: 0.9rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}
.select-content select:hover {
    border-color: #cbd5e0;
}
.select-content select:focus {
    outline: none;
    border-color: #3b5361;
    box-shadow: 0 0 0 2px rgba(59, 83, 97, 0.1);
}
.select-content::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-25%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b5361'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

 
/* buttons-color */
.__btn{
    color: var(--background-color);
}

/* page-btn */
.page-btn{
    background: var(--background-color);
    border-radius: 25px;
    padding: 10px;
    color: var(--font-color-main);
    text-align: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 200ms ease; 
}
/* ----------end-hero-section------ */

/* home-slider-card-section */
.Carousel{
    padding: 20px;
}

.swiper-container-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.swiper-container{
    margin-top: 1rem;
    /* display: flex;
    gap: 20px; */
    width: 100%;
    padding: 20px 0;
}
.swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
}
.carousel-img-container{
    /* width: 350px; */
    height: 300px;
    overflow: hidden;
    border-radius: 25px;
}
.carousel-img{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}
.carousel-img-container{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}
.carousel-img-container::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* backdrop-filter: blur(0.5px); */
    background: linear-gradient(to bottom,
                              rgba(27, 135, 224, 0.616),
                              rgb(4, 19, 48));
}
.swiper-container-wrapper .Carousel-content{
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    padding: 0 20px;
    color: #FFFFFF;
}
.Carousel-hero{
    font-family: "Montserrat Alternates", sans-serif !important;
    font-size: 28px;
    text-align: center;
    font-weight: 600;
}
.Carousel-link{
    text-decoration: none;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 15px 20px;
    color: #100D64;
    display: flex; 
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat Alternates',sans-serif !important;
    transition: all 200ms ease;
    cursor: pointer;
}
.Carousel-link:hover{
    background: #100D64;
    color: #FFFFFF;
    transition: background 300ms ease,
                color 300ms ease;
}


/* ---about-section---- */
.__about_text{
    color: var(--font-color-main);
}
.__about-para{
    color: var(--font-color-main) !important;
    line-height: 1.8rem;
    font-size: 18px;
}
.__card{
    background-color: var(--background-color);
}
.__contact-img{
    width: 100%;
}
.__cardimg{
    width: 100%;
}

/* article */
.fa-2xl{
    font-size: 5rem;
}
.__over-para{
    font-size: 16px;
    line-height: 2rem;
    font-family: roboto;
    font-weight: 500;
    color: var(--font-color-medium);
}
.__modal-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}
._choose-inst{
    width: 50%;
    margin: auto;
}
@media screen and (max-width:1000px){
    .background-image .bg-img{
        margin-top: 0;
    }
}
@media screen and (max-width:950px){
   
    .__hero-search{
        width: 95%;
        margin: auto;
    }
    .__search-input{
        width: 80vw;
    }
    .__input{
        border: none;
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        color: var(--font-color-main);
        font-family: roboto;
        font-weight: 500;
        font-size: 17px;
        outline: none;
    }
    .__hero-text{
        font-weight: 700;
        width: 80%;
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translate(-50%,-50%);
        font-size: 30px;
    }
    ._choose-inst{
        width: 80%;
        margin: auto;
    }
}
@media screen and (max-width:900px){
    .__hero-search{
        width: 95%;
        margin: auto;
    }
    .__search-input{
        width: 80vw;
    }
    .__input{
        border: none;
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        color: var(--font-color-main);
        font-family: roboto;
        font-weight: 500;
        font-size: 17px;
        outline: none;
    }
    .__hero-text{
        font-weight: 700;
        width: 80%;
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translate(-50%,-50%);
        font-size: 30px;
    }
    ._choose-inst{
        width: 60%;
        margin: auto;
    }
}
@media screen and (max-width:700px) {
    .__hero-search{
       width: 95%;
       margin: auto;
       border-radius: 25px;
       padding:20px 10px;
    }
    .__search-input{
        width: 100%;
    }

    ._input-field select option{
        font-family: "Montserrat Alternates",sans-serif !important;
    }
    
    ._input-field .__label_text{
        font-size: 12px;
        font-weight: 500;
        color: var(--font-color-medium);
    }
    .__input{
        border: none;
        width: 100%;
        padding: 15px 10px;
        background: transparent;
        color: var(--font-color-main);
        font-family: roboto;
        font-weight: 500;
        font-size: 17px;
        outline: none;
    }
    .__hero-text{
        font-weight: 700;
        width: 80%;
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translate(-50%,-50%);
        font-size: 30px;
    }
    ._choose-inst{
        width: 80%;
        margin: auto;
    }
}

/* dashboard--------------------styles */
.profile-nav-modal{
    display: none;
}
.profile-nav-modal4{
    display: none;
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
}
 .backdropActive1{
    display: block;
}
 .backdropActive4{
    display: block;
}
.mobile-profile-modal{
    overflow-y: auto;
    background: none;
    opacity: 0;
    transform: scale(0.05);
    transition: opacity 200ms ease,
                transform 200ms ease,
                background 200ms ease;
}
.backdropActive2{
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9));
    opacity: 1;
    transform: scale(1);
    transition: opacity 200ms ease,
                transform 200ms ease,
                background 200ms ease;
}
.mobile-nav-wrapper{
    display: none;
}
.mobile-footer-wrapper{
    display: none;
}
.img-container .img-overlay{
     background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}
.product-items{
     display: none;
}
.product-items.product-active{
     display: block;
}
@media screen and (max-width:1000px) {
    .change .m_bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .change .m_bar:nth-child(2) {
        opacity: 0;
    }
    .change .m_bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .list_t .nav_v.showing{
        height: 500px;
        margin-top: 0;
        opacity: 1;
        transition: height 200ms ease-in-out, 
                    opacity 500ms ease;
       }
    
    .list_t .nav_v li{
        display: none;
        opacity: 0;
        transition: opacity 500ms ease,
                    display 300ms ease;
    }
    .list_t .nav_v li:last-child{
        border-bottom: none;
    }
    .list_t .nav_v.showing li{
        display: block;
        opacity: 1;
        transition: opacity 500ms ease,
                    display 300ms ease;
    }
    .list_t .nav_v{
        margin-top: -65px;
        background: #3D5361;
        position: absolute;
        width: 100%;
        padding: 2rem 2rem;
        top: 10px;
        height: 0;
        opacity: 0;
    }
}


