/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/

* {
    font-family: 'Poppins', sans-serif;
}


.navbar {
    background: transparent;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar .navbar-nav {
    overflow: visible;
}

.navbar.scrolled {
    background: #082f49;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 290px;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-brand img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 160px;
    }
}

@media (max-width: 360px) {
    .navbar-brand img {
        width: 140px;
    }
}



.navbar .container {
    --bs-gutter-x: 1rem;
    /* Reduce from default 1.5rem */
    /* Or use padding utilities */
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #f5f5f5 !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #38bdf8 !important;
}

/* Bootstrap Dropdown Customization */
.navbar .nav-item.dropdown .dropdown-toggle::after {
    display: none; /* Hide Bootstrap's default caret on desktop */
}

/* Show caret on mobile/responsive view */
@media (max-width: 1199px) {
    .navbar .nav-item.dropdown .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.5rem;
        vertical-align: 0.125em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        transition: transform 0.2s ease;
    }
    
    .navbar .nav-item.dropdown .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

/* Desktop Dropdown Styles */
@media (min-width: 1200px) {
    .navbar .nav-item.dropdown .dropdown-menu {
        background: #38bdf8;
        border: none;
        border-radius: 20px;
        padding: 1rem 0.5rem;
        min-width: 280px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateX(-50%);
        left: 50% !important;
        right: auto !important;
    }

    .navbar .nav-item.dropdown .dropdown-item {
        color: white;
        font-weight: 500;
        font-size: 1.1rem;
        background: transparent;
        border: none;
        transition: all 0.2s ease;
        border-radius: 0;
    }

    .navbar .nav-item.dropdown .dropdown-item:hover,
    .navbar .nav-item.dropdown .dropdown-item:focus {
        color: #082f49;
        background: rgba(255, 255, 255, 0.2);
        padding-left: 1rem;
        transform: translateX(5px);
    }

    /* Hover to show dropdown on desktop */
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}



.btn-appointment {
    background: #0ea5e9 !important;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.navbar-toggler {
    border: 2px solid #ffffff !important;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
    border-color: #ffffff !important;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff !important;
}

.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Footer Styles - Add this to your site.css file */
.main-footer {
    background: #082f49;
    /*linear-gradient(135deg, #082f49 0%, #1e3f73 50%, #2c5aa0 100%);*/
    color: #f8f9fa;
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand img {
    width: 250px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-top: 1rem;
    font-weight: 500;
}

.footer-section h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 2px;
}

.footer-locations {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-locations li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.footer-locations li:hover {
    color: #38bdf8;
    padding-left: 0.5rem;
    background: rgba(56, 189, 248, 0.1);
}

.footer-locations li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-locations li:hover a {
    color: #38bdf8;
}

.footer-appointment-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50 !important;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.footer-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    color: #2c3e50 !important;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: #38bdf8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.footer-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 250px;
    background: #1e3f73;
    position: relative;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.2);
    transition: filter 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credit a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0 2rem 0;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-map {
        height: 200px;
        margin-top: 1rem;
    }
}

/* Mobile Dropdown Styles */
@media (max-width: 1199px) {
    .navbar .nav-item.dropdown .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: calc(100% - 2rem);
        background: rgba(56, 189, 248, 0.95);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border: none;
        padding: 1rem;
        float: none;
    }

    .navbar .nav-item.dropdown .dropdown-item {
        color: white;
        font-size: 0.95rem;
        padding: 0.7rem 0.8rem;
        border-radius: 6px;
        margin: 0.1rem 0;
        background: transparent;
        border: none;
        transition: all 0.2s ease;
    }

    .navbar .nav-item.dropdown .dropdown-item:hover,
    .navbar .nav-item.dropdown .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.2);
        color: #082f49;
        transform: translateX(5px);
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .navbar .nav-item.dropdown .dropdown-menu {
        margin-left: 0.5rem;
        width: calc(100% - 1rem);
        padding: 0.8rem;
    }

    .navbar .nav-item.dropdown .dropdown-item {
        font-size: 0.9rem;
        padding: 0.3rem 0.35rem;
    }
}

/*
 Navbar background for smaller screens */
@media (max-width: 1200px) {
    .navbar {
        background: #082f49 !important;
        backdrop-filter: blur(10px);
    }

    .navbar.scrolled {
        background: #082f49 !important;
    }
}
/* Main Button - Consistent button styling across the site */
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    color: rgba(8, 47, 73, 1);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.main-btn:hover::before {
    left: 100%;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 6px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #f0f8ff, #ffffff);
    color: rgba(8, 47, 73, 1);
    text-decoration: none;
}

.main-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.main-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-btn i {
    font-size: 1.2rem;
}

/* Button size variations */
.main-btn.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 150px;
}

.main-btn.btn-lg {
    padding: 20px 40px;
    font-size: 1.2rem;
    min-width: 250px;
}

/* Button color variations */
.main-btn.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.main-btn.btn-outline:hover {
    background: #ffffff;
    color: rgba(8, 47, 73, 1);
}

/* Office Gallery Carousel Styles */
.office-carousel-container {
    max-width: 800px;
    margin: 0 auto;
}

.office-gallery-main {
    height: 500px;
    background-color: transparent;
    margin-bottom: 10px;
}

    .office-gallery-main .swiper-slide {
        text-align: center;
        font-size: 18px;
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

        .office-gallery-main .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            background-color: transparent;
            transition: transform 0.3s ease;
        }

.office-gallery-main .swiper-slide:hover img {
    transform: scale(1.02);
}

.office-gallery-thumbs {
    height: 120px;
    box-sizing: border-box;
    padding: 10px 0;
}

    .office-gallery-thumbs .swiper-slide {
        width: 15%;
        height: 100%;
        opacity: 0.4;
        cursor: pointer;
        border-radius: 8px;
        overflow: hidden;
        background-color: transparent;
        transition: all 0.3s ease;
    }

.office-gallery-thumbs .swiper-slide:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.office-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #38bdf8;
    transform: translateY(-2px);
}

    .office-gallery-thumbs .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-color: transparent;
        padding: 2px;
    }

.swiper-button-next,
.swiper-button-prev {
    color: #38bdf8;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-carousel-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .office-gallery-main {
        height: 300px;
    }
    
    .office-gallery-thumbs {
        height: 80px;
    }
    
    .office-gallery-thumbs .swiper-slide {
        width: 20%;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}