    :root {
        --primary-blue: #1a3a8f;
        --secondary-blue: #2c4aa8;
        --accent-gold: #f5a623;
        --accent-yellow: #ffc107;
        --dark-blue: #0d1f5c;
        --light-bg: #f8f9fa;
        --green-accent: linear-gradient(52deg, #006404, #40cd46);
        --red-accent: linear-gradient(52deg, #a00d0d, #ff4444);
        --orange-accent: linear-gradient(52deg, #ab2900, #ff5722);
    }



    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    p {
        letter-spacing: 0.5px;
        margin-top: 0;
        line-height: 28px;
        margin-bottom: 1rem;
    }

    body {
        font-family: 'Poppins', sans-serif;
        overflow-x: hidden;
    }

    /* Header Styles */
    .top-header {

        background: linear-gradient(90deg, rgb(14 33 96 / 53%) 0%, rgb(14 34 97 / 27%) 35%, rgb(13 32 95 / 53%) 100%) center bottom / cover no-repeat, url(../asset/images/logo/header-bg.png) !important;
        padding: 15px 0;
        position: relative;
        border-bottom: 5px solid var(--accent-gold);
    }

    .navbar::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 97%;
        height: 15px;
        background: var(--accent-gold);
        border-radius: 0 0 100px 100px;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .school-logo {

        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .school-info {
        text-align: center;
        flex: 1;
        padding: 0 20px;
    }

    .school-name {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 5px;
        animation: slideInDown 1s ease;
    }

    .school-location {
        font-size: 1.3rem;
        color: var(--accent-gold);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .school-quote {
        font-style: italic;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .st-damien {
        text-align: center;
    }

    .st-damien img {
        width: 80px;
        height: 100px;
        object-fit: cover;
        border: 3px solid var(--accent-gold);
        border-radius: 5px;
    }

    .st-damien-label {
        background: var(--primary-blue);
        color: #fff;
        padding: 3px 15px;
        font-size: 0.8rem;
        margin-top: 5px;
        border-radius: 3px;
    }

    /* Navigation */
    .main-nav {
        background: linear-gradient(90deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--dark-blue) 100%);
        padding: 0;

    }

    .navbar-nav .nav-link {
        color: #fff !important;
        padding: 15px 20px !important;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--accent-gold);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--accent-gold);
        color: var(--dark-blue) !important;
    }

    /* Dropdown hover on desktop */
    @media (min-width: 992px) {

        .navbar-nav .dropdown:hover>.dropdown-menu {
            display: block;
            margin-top: 0;
            animation: fadeIn 0.3s ease;
        }

        .navbar-nav .dropdown-menu {
            border: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 0;
            min-width: 200px;
        }

        .navbar-nav .dropdown-item {
            padding: 12px 20px;
            transition: all 0.3s ease;
            border-bottom: 1px solid #eee;
        }

        .navbar-nav .dropdown-item:last-child {
            border-bottom: none;
            border-radius: 0 0 8px 8px;
        }

        .navbar-nav .dropdown-item:hover {
            background: var(--primary-blue);
            color: #fff;
            padding-left: 25px;
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero Slider */
    .hero-section {
        position: relative;
        overflow: hidden;
    }

    .carousel-item img {
        height: 500px;
        object-fit: cover;
        filter: brightness(0.8);
    }

    .carousel-caption {
        background: rgba(26, 58, 143, 0.9);
        padding: 30px;
        border-radius: 10px;
        animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Section Titles */
    .section-title {
        background: linear-gradient(52deg, #006404, #40cd46);
        color: #fff;
        padding: 10px 20px;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0;
        border-radius: 5px 5px 0 0;
    }

    .section-title.orange {
        background: var(--orange-accent);
    }

    .section-title.red {
        background: var(--red-accent);
    }

    .section-title.blue {
        background: var(--primary-blue);
    }

    .section-title.gold {
        background: var(--accent-gold);
        color: var(--dark-blue);
    }

    /* Cards */

    .subpage-section {
        padding: 60px 0px 50px 0 !important;
    }

    .about-section {
        padding: 60px 0px 120px 0;
    }

    .info-card {
        border: 1px solid #ddd;
        border-radius: 0 0 5px 5px;
        padding: 20px;
        background: #fff;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .info-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .btn-primary-custom {
        background: var(--primary-blue);
        border: none;
        padding: 8px 25px;
        border-radius: 5px;
        color: #fff;
        transition: all 0.3s ease;
    }

    .btn-primary-custom:hover {
        background: var(--accent-gold);
        color: var(--dark-blue);
        transform: scale(1.05);
    }

    /* Document Links */
    .doc-link {
        display: flex;
        align-items: center;
        padding: 8px 0;
        color: var(--primary-blue);
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px dashed #eee;
    }

    .doc-link:hover {
        color: #ff0000;
        padding-left: 10px;
    }

    .doc-link i {
        color: var(--red-accent);
        margin-right: 10px;
        font-size: 1.2rem;
    }

    /* Principal Section */
    .gallery-section,
    .news-section,
    .principal-message {
        padding: 60px 0px;
    }

    .principal-section {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }

    .principal-img {
        margin-left: auto;
        margin-right: auto;
        display: table;

        object-fit: cover;
        border-radius: 5px;
        border: 3px solid var(--accent-gold);
    }

    .quote-text {
        font-style: italic;
        color: #555;
        border-left: 3px solid var(--accent-gold);
        padding-left: 15px;
        margin: 15px 0;
    }

    /* Vision Mission */
    .vision-mission {
        background: linear-gradient(135deg, var(--accent-gold), #f8b500);
        color: var(--dark-blue);
        padding: 25px;
        border-radius: 5px;
        height: 100%;
    }

    .vision-mission h4 {
        font-weight: 700;
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: 1px dashed #001f8a;
    }

    /* News Events */
    .news-item {
        display: flex;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
    }

    .news-item:hover {
        background: #f8f9fa;
        padding-left: 10px;
    }

    .news-item img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 5px;
        margin-left: auto;
    }

    .news-title {
        color: var(--primary-blue);
        font-weight: 600;
        font-size: 0.95rem;
    }

    /* Improved Faculty Table Design */
    .faculty-table-wrapper {
        overflow-x: auto;
    }

    .faculty-table {
        width: 100%;
        font-size: 0.85rem;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .faculty-table thead {
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    }

    .faculty-table th {
        color: #fff;
        padding: 14px 12px;
        text-align: left;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        border-bottom: 3px solid var(--accent-gold);
    }

    .faculty-table td {
        padding: 14px 4px;
        border-bottom: 1px solid #e9ecef;
        vertical-align: middle;
        background: #fff;
    }

    .faculty-table tbody tr {
        transition: all 0.3s ease;
    }

    .faculty-table tbody tr:hover {
        background: linear-gradient(90deg, rgba(26, 58, 143, 0.05), rgba(26, 58, 143, 0.1));
        transform: scale(1.01);
    }

    .faculty-table tbody tr:hover td {
        background: transparent;
    }

    .faculty-table tbody tr:nth-child(even) td {
        background: #f8f9fa;
    }

    .faculty-table tbody tr:nth-child(even):hover td {
        background: transparent;
    }

    .faculty-table .sl-no {
        font-weight: 700;
        color: var(--primary-blue);
        text-align: center;
        width: 60px;
    }

    .faculty-table .staff-name {
        font-weight: 600;
        color: var(--dark-blue);
    }

    .faculty-table .designation {
        color: var(--green-accent);
        font-weight: 500;
    }

    .faculty-table .qualification {
        color: #666;
        font-size: 0.8rem;
    }

    /* Photo Gallery */
    .gallery-section {
        background: var(--light-bg);
        padding: 50px 0;
    }

    .gallery-title {
        text-align: center;
        font-size: 2rem;
        color: var(--dark-blue);
        margin-bottom: 30px;
        position: relative;
    }

    .gallery-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: var(--accent-gold);
    }

    /* Auto carousel gallery */
    .gallery-carousel {
        position: relative;
        overflow: hidden;
    }

    .gallery-carousel .carousel-inner {
        display: flex;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        margin: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 58, 143, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item .overlay i {
        color: #fff;
        font-size: 2rem;
    }

    /* Lightbox Custom Styles */
    .lightbox-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .lightbox-overlay.active {
        display: flex;
    }

    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 10px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        position: absolute;
        top: -50px;
        right: 0;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lightbox-close:hover {
        color: var(--accent-gold);
        transform: rotate(90deg);
    }

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 20px;
        background: rgba(26, 58, 143, 0.8);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-prev {
        left: -100px;
    }

    .lightbox-next {
        right: -100px;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: var(--accent-gold);
        color: var(--dark-blue);
    }

    .lightbox-counter {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 1rem;
    }

    @media (max-width: 768px) {
        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }
    }

    /* Footer */
    .main-footer {
        background: linear-gradient(3deg, #3f1d82, #0d1f5c);
        color: #fff;
        padding: 50px 0 20px;
    }

    .footer-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent-gold);
        display: inline-block;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        padding: 8px 0;
    }

    .footer-links a {
        color: rgb(255 255 255);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--accent-gold);
        padding-left: 10px;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary-blue);
        color: #fff;
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: var(--accent-gold);
        color: var(--dark-blue);
        transform: translateY(-5px);
    }

    .contact-info p {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgb(255 255 255);
    }

    .contact-info a {
        color: #fff;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #fff89b;
        text-decoration: none;
    }

    .contact-info i {
        color: var(--accent-gold);
        margin-right: 15px;
        font-size: 1.2rem;
        margin-top: 3px;
    }

    .copyright {
        background: var(--dark-blue);
        padding: 15px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .copyright a {
        color: var(--accent-gold);
        text-decoration: none;
    }

    .ratio {
        --bs-aspect-ratio: 65.25%;
    }



    /* Responsive */
    @media (max-width: 992px) {

        .main-nav {
            background: linear-gradient(90deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--dark-blue) 100%);
            padding: 0;
            /* height: 0 !important; */
        }

        .navbar-toggler {
            background: var(--accent-gold);
            position: relative;
            top: -106px;
            right: -90%;
        }

        .dropdown-menu.show {
            display: block !important;
        }

        .school-name {
            font-size: 1.8rem;
        }

        .school-location {
            font-size: 1rem;
        }

        .header-content {
            flex-direction: column;
            text-align: center;
        }

        .school-logo {
            margin-bottom: 15px;
            width: 85%;
            float: left;
        }

        .st-damien {
            margin-top: 15px;
        }
    }

    @media (max-width: 768px) {
        .carousel-item img {
            height: 300px;
        }

        .school-name {
            font-size: 1.5rem;
        }
    }

    /* Pulse Animation for Buttons */
    .pulse {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
        }
    }

    /* Scroll to Top */
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--accent-gold);
        color: var(--dark-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background: var(--primary-blue);
        color: #fff;
        transform: translateY(-5px);
    }

    /* Page Banner */
    .page-banner {
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        padding: 20px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/placeholder.svg?height=400&width=1920') center/cover;
        opacity: 0.2;
    }

    .page-banner h1 {
        color: #fff;
        font-size: 3rem;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .page-banner .breadcrumb {
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        float: left;
        padding-right: var(--bs-breadcrumb-item-padding-x);
        color: rgb(255 255 255) !important;
        content: var(--bs-breadcrumb-divider, "/");
    }

    .page-banner .breadcrumb-item a {
        color: var(--accent-gold);
        text-decoration: none;
    }

    .page-banner .breadcrumb-item.active {
        color: #fff;
    }

    /* Gallery Section */
    .gallery-page {
        padding: 80px 0;
        background: var(--light-bg);
    }

    .filter-buttons {
        text-align: center;
        margin-bottom: 40px;
    }

    .filter-btn {
        background: #fff;
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        padding: 10px 25px;
        margin: 5px;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--primary-blue);
        color: #fff;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .gallery-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(transparent 50%, rgba(13, 31, 92, 0.9));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item .overlay h5 {
        color: #fff;
        margin-bottom: 5px;
    }

    .gallery-item .overlay p {
        color: var(--accent-gold);
        font-size: 0.9rem;
        margin: 0;
    }

    .gallery-item .zoom-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: var(--accent-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-blue);
        font-size: 1.5rem;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .gallery-item:hover .zoom-icon {
        opacity: 1;
    }

    /* Lightbox */
    .lightbox-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .lightbox-overlay.active {
        display: flex;
    }

    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 10px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        position: absolute;
        top: -50px;
        right: 0;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lightbox-close:hover {
        color: var(--accent-gold);
        transform: rotate(90deg);
    }

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        padding: 15px;
        background: rgba(26, 58, 143, 0.8);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .lightbox-prev {
        left: -100px;
    }

    .lightbox-next {
        right: -100px;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: var(--accent-gold);
        color: var(--dark-blue);
    }

    .lightbox-counter {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 1rem;
    }

    .lightbox-caption {
        position: absolute;
        bottom: -80px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        text-align: center;
    }

    @media (max-width: 768px) {
        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }
    }

    /* Contact Section */
    .contact-section {
        padding: 80px 0;
        background: var(--light-bg);
    }

    .contact-info-card {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: all 0.3s ease;
        border-left: 4px solid var(--accent-gold);
    }

    .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .contact-info-card i {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-info-card h5 {
        color: var(--dark-blue);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .contact-info-card p {
        color: #666;
        margin: 0;
        line-height: 1.8;
    }

    .contact-info-card a {
        color: var(--primary-blue);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-info-card a:hover {
        color: var(--accent-gold);
    }

    /* Contact Form */
    .contact-form-wrapper {
        background: #fff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-title {
        font-size: 1.8rem;
        color: var(--dark-blue);
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }

    .form-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--accent-gold);
    }

    .form-control {
        border: 2px solid #e9ecef;
        border-radius: 10px;
        padding: 15px 20px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.1);
    }

    .form-label {
        font-weight: 500;
        color: var(--dark-blue);
        margin-bottom: 8px;
    }

    .btn-submit {
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        border: none;
        color: #fff;
        padding: 15px 40px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-submit:hover {
        background: var(--accent-gold);
        color: var(--dark-blue);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
    }

    /* Map Section */
    .map-section {
        padding: 0 0 80px;
        background: var(--light-bg);
    }

    .map-wrapper {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .map-wrapper iframe {
        width: 100%;
        height: 400px;
        border: none;
    }

/* Active menu color */

.navbar-nav .dropdown-menu .dropdown-item.active {
    background: var(--accent-gold);
    color: #fff !important;
    font-weight: 600;
    border-radius: 6px;
}

/* End Active menu color */

.feedback-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: #fff9eb;
    border: 1px solid #fddc8c;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #b7791f;
    text-align: center;
    margin-bottom: 24px;
}

/* Form Fields */
.feedback-container input,
.feedback-container textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.feedback-container input:focus,
.feedback-container textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Floating Labels */
.feedback-container .form-group {
    position: relative;
    margin-bottom: 20px;
}

.feedback-container label {
    position: absolute;
    left: 14px;
    top: 12px;
    background-color: #fff9eb;
    padding: 0 4px;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    pointer-events: none;
    transition: 0.2s;
}

.feedback-container input:focus+label,
.feedback-container input:not(:placeholder-shown)+label,
.feedback-container textarea:focus+label,
.feedback-container textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    color: #b7791f;
}

/* Button */
.feedback-container button {
    width: 100%;
    padding: 14px 0;
    background-color: #f59e0b;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.feedback-container button:hover {
    background-color: #d97706;
}

/* Success & Error Messages */
.feedback-success {
    background-color: #dcfce7;
    border: 1px solid #22c55e;
    color: #166534;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.feedback-error {
    background-color: #fee2e2;
    border: 1px solid #f87171;
    color: #b91c1c;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.feedback-error ul {
    padding-left: 20px;
    margin: 0;
}

