@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");

:root {
  --main-color: #242444;
  /* --primary-color: #DFBF48; */
  --primary-color: #D0B244;
  /* --primary-color: #c7a800; */
  --main-color-light: #242544;
  --main-color-shadow: #24244498;
}
body{
    font-family: 'Hind', Arial, sans-serif !important;
    font-weight: 500;
    /* font-family: "Work Sans", Arial, sans-serif !important; */
}

p{
    font-weight: 400;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu {
    background-color: var(--main-color);
    border-bottom: 2px solid var(--primary-color);
    /* border-color: var(--primary-color); */
   
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    /* margin-left: 0.1rem;
    margin-right: 0.1rem; */
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
}
/* .dropdown-menu li{
border-bottom: .5px solid var(--primary-color);
} */

.dropdown-item {
    color: var(--primary-color);
}

.dropdown-item:hover {
    background-color: var(--main-color);
    color: #ffff;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-color);
    color: var(--main-color);
}

.logo img {
    max-height: 68px;
    width: auto;
}

.navbar .container {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.navbar-toggler {
    margin-left: auto;
}

.navbar-collapse {
    flex-basis: 100%;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
    padding: 0.75rem 0;
    margin-left: 0 !important;
}

.navbar-nav .nav-item {
    width: 100%;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    white-space: normal;
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--primary-color);
    background-color: var(--main-color-light);
}

@media (max-width: 767.98px) {
    .logo img {
        max-height: 52px;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
    }
}

@media (min-width: 992px) {
    .navbar .container {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .navbar-collapse {
        flex-basis: auto;
    }

    .navbar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        gap: 0.25rem 1.25rem;
        justify-content: flex-end;
        padding: 0;
        margin-left: auto !important;
    }

    .navbar-nav .nav-item {
        width: auto;
        flex: 0 1 auto;
    }

    .navbar-nav .nav-link {
        width: auto;
        white-space: nowrap;
    }
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(223, 191, 72, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border-color: var(--primary-color) !important;
}
form .submit{
    background-color: var(--main-color);
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}
form .submit:hover{
   color: #ffff !important;
   
}
.form-control {
    /* background-color: var(--main-color-light); */
    color: var(--primary-color);
    border-color: var(--main-color);
}
form label{
    color: var(--main-color);
    font-weight: 600;
}
.form-control::placeholder {
    color: var(--primary-color);
    opacity: 0.5;
}

.form-control:focus {
    /* background-color: var(--main-color-light); */
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(223, 191, 72, 0.25) !important;
}


.btn-outline-light:hover {
    color: var(--primary-color) !important;
    
}
.btn-primary{
     background-color: transparent;
     border-color: var(--main-color) !important;
     color: var(--main-color) !important;
     border-radius: 50px;
     padding: 10px 15px;
}
.btn-primary:hover {
    background-color: var(--main-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-success:hover {
    background-color: var(--primary-color) !important;
    color: var(--main-color) !important;
}

.top-bar a:hover i {
    color: var(--main-color-light) !important;
}

/* Redesigned Footer Styles */
.site-footer {
    background-color: var(--main-color);
    color: #a9b3c6; /* Lighter than main text for contrast */
    padding: 60px 0;
    font-size: 15px;
}

.footer-about .footer-logo-redesign {
    height: 100px;
    width: auto;
}

.footer-title-redesign {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-subtitle-redesign {
    color: #a9b3c6;
    font-size: 14px;
}

.footer-text-redesign {
    color: #a9b3c6;
    line-height: 1.8;
}


.footer-links-redesign li {
    margin-bottom: 12px;
}

.footer-links-redesign a {
    color: #a9b3c6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-redesign a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-redesign li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-redesign i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-contact-redesign a {
    color: #a9b3c6;
    text-decoration: none;
}

.footer-contact-redesign a:hover {
    color: #fff;
}

.footer-social-redesign {
    display: flex;
}

.social-icon-redesign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color-light);
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--primary-color);
}

.social-icon-redesign:hover {
    background-color: var(--primary-color);
    color: var(--main-color);
    transform: translateY(-2px);
}

.footer-bottom-redesign {
    border-top: 1px solid var(--main-color-light);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #a9b3c6;
    font-size: 14px;
}

/* Main Slider Styles */
.main-slider {
    position: relative;
    width: 100%;
    height: auto; /* Adjust height automatically */
    overflow: hidden; /* Hide horizontal scrollbar */
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
}

.swiper-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.swiper-caption p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .swiper-caption h2 {
        font-size: 2rem;
    }

    .swiper-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .swiper-caption h2 {
        font-size: 1.5rem;
    }

    .swiper-caption p {
        font-size: 0.8rem;
    }
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.swiper-button-next, .swiper-button-prev {
    display: none !important;
}
/* .about-us-section{
    background-image: url(https://gsnursingcollege.in/images/about/medical-nurses-day-banner-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
} */
 /* Redesigned Benefits Section Styles */
.benefits-section-redesigned {
    background-color: #fff;
}

.benefits-section-redesigned .section-title {
    color: var(--main-color);
}

.benefits-list {
    padding-left: 0;
}

.benefit-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-list-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--main-color-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-list-text h5 {
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-list-text p {
    color: #555;
    margin-bottom: 0;
}

.contact-form {
    border: 1px solid var(--main-color);
    padding: 20px;
    border-radius: 5px;
}





