:root {
    --primary-dark: #0a1628;
    --primary-blue: #1a365d;
    --primary-blue-light: #2c5282;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d78c;
    --text-dark: #1a202c;
    --text-gray: #718096;
    --text-light: #e2e8f0;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --bg-cream: #faf9f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

/* Navbar */
.navbar-custom {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 2px;
}

.navbar-custom.scrolled .navbar-brand {
    color: var(--primary-blue) !important;
}

.navbar-custom .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--white);
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--primary-blue);
}

.nav-search-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-search-btn:hover {
    background: var(--accent-gold);
    color: #fff;
}

.nav-search-btn:focus {
    outline: none;
    box-shadow: none;
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
	padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-gold:hover {
    background: var(--accent-gold-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline-light-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-stats {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.floating-shapes {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 40%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Section Styling */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
}

.gold-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 1.5rem 0;
}

.gold-line-center {
    margin: 1.5rem auto;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%);
}

/*       .about-image-overlay {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--accent-gold);
            padding: 2rem;
            color: var(--primary-dark);
        }*/

.about-image-overlay h4 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.about-image-overlay p {
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

/* Businesses Section */
.businesses-section {
    background: var(--bg-cream);
}

.business-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.business-card-image {
    /*height: 220px;*/
    overflow: hidden;
    position: relative;
}

.business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-card:hover .business-card-image img {
    transform: scale(1.1);
}

.business-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 54, 93, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-card:hover .business-card-overlay {
    opacity: 1;
}

.business-card-body {
    padding: 1.5rem;
}

.learn-more {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.business-card h5 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.business-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/*.business-card .learn-more {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.business-card .learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.business-card .learn-more:hover i {
    transform: translateX(5px);
}*/

.businesses-carousel .owl-stage {
    display: flex;
}

.businesses-carousel .owl-item {
    display: flex;
}

.businesses-carousel .business-card {
    width: 100%;
}

/* NAV BUTTONS */
.businesses-carousel .owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    gap: 12px;
}

.businesses-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--accent-gold) !important;
    background: transparent !important;
    color: var(--accent-gold) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.businesses-carousel .owl-nav button:hover {
    background: var(--accent-gold) !important;
    color: #fff !important;
}

/* DISABLE DEFAULT OUTLINE */
.businesses-carousel .owl-nav button:focus {
    outline: none;
}

/* MOBILE NAV POSITION */
@media (max-width: 767px) {
    .businesses-carousel .owl-nav {
        top: -70px;
    }
}


/* Announcements Section */
.announcements-section {
    background: var(--white);
}

.announcement-card {
    display: flex;
    background: var(--white);
    border: 1px solid #eee;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.announcement-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.announcement-date {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.announcement-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.announcement-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-content {
    padding: 1.5rem;
    flex: 1;
}

.announcement-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.announcement-content h5 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.announcement-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.featured-announcement {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-announcement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-announcement-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.featured-announcement-content .badge-featured {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.featured-announcement-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.team-section .section-title {
    color: var(--white);
}

.team-section .section-subtitle {
    color: var(--text-light);
}
.leader-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-gold);
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.leader-card:hover .leader-image img {
    filter: grayscale(0%);
}

.leader-card h5 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.leader-card .position {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.leader-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.leader-social {
    margin-top: 1.5rem;
}

.leader-social a {
    color: var(--text-gray);
    margin: 0 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.leader-social a:hover {
    color: var(--accent-gold);
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-gold);
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
}

.team-card h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-card .position {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-social {
    margin-top: 1.5rem;
}

.team-social a {
    color: var(--text-light);
    margin: 0 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--accent-gold);
}

/* Awards Section */
.awards-section {
    background: var(--bg-light);
}

.award-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.award-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.award-card h5 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.award-card .year {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.award-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    background: var(--white);
}

.value-item {
    padding: 3rem 2rem;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    background: var(--bg-cream);
}

.value-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 50px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 5rem 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--accent-gold);
}

.footer-about {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 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: var(--white);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.footer-contact-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* page banner */

/* Animated Banner */

.animated-banner{
    position:relative;
    padding:140px 20px;
    text-align:center;
    color:#fff;
    overflow:hidden;

    background: linear-gradient(-45deg,#0f172a,#1e293b,#334155,#0f172a);
    background-size:400% 400%;
    animation:gradientMove 12s ease infinite;
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.banner-title{
    font-size:48px;
    font-weight:700;
    letter-spacing:1px;
    animation:fadeUp 1s ease;
}

.banner-divider{
    width:80px;
    height:4px;
    background:#c9a857;
    margin:20px auto;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Floating shapes */

/*.floating-shapes span{
    position:absolute;
    border-radius:50%;
    opacity:0.25;
}

.shape1{
    width:120px;
    height:120px;
    background:#c9a857;
    top:20%;
    left:10%;
    animation:float 8s infinite ease-in-out;
}

.shape2{
    width:80px;
    height:80px;
    background:#ffffff;
    bottom:20%;
    left:20%;
    animation:float 10s infinite ease-in-out;
}

.shape3{
    width:100px;
    height:100px;
    background:#c9a857;
    top:30%;
    right:10%;
    animation:float 9s infinite ease-in-out;
}

.shape4{
    width:60px;
    height:60px;
    background:#ffffff;
    bottom:25%;
    right:20%;
    animation:float 7s infinite ease-in-out;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-20px);}
    100%{transform:translateY(0px);}
}*/

/* Banner */

.shape-banner{
    position:relative;
    padding:150px 20px;
    background:#0f172a;
    color:#fff;
    text-align:center;
    overflow:hidden;
}

.banner-title{
    font-size:48px;
    font-weight:700;
    position:relative;
    z-index:10;
}

/* Shapes */

.shapes span{
    position:absolute;
    display:block;
    border-radius:50%;
    opacity:0.15;
    animation:float 10s infinite ease-in-out;
}

.shapes span:nth-child(odd){
    background:#c9a857;
}

.shapes span:nth-child(even){
    background:#ffffff;
}

/* random positions */

.shape-1{width:60px;height:60px;top:10%;left:5%;}
.shape-2{width:100px;height:100px;top:20%;left:40%;}
.shape-3{width:80px;height:80px;top:30%;left:70%;}
.shape-4{width:50px;height:50px;top:70%;left:10%;}
.shape-5{width:120px;height:120px;top:60%;left:50%;}
.shape-6{width:90px;height:90px;top:40%;left:85%;}
.shape-7{width:70px;height:70px;top:15%;left:60%;}
.shape-8{width:110px;height:110px;top:75%;left:30%;}
.shape-9{width:60px;height:60px;top:50%;left:75%;}
.shape-10{width:95px;height:95px;top:80%;left:80%;}
.shape-11{width:70px;height:70px;top:10%;left:80%;}
.shape-12{width:120px;height:120px;top:35%;left:20%;}
.shape-13{width:80px;height:80px;top:55%;left:35%;}
.shape-14{width:60px;height:60px;top:65%;left:65%;}
.shape-15{width:90px;height:90px;top:25%;left:15%;}
.shape-16{width:110px;height:110px;top:45%;left:5%;}
.shape-17{width:70px;height:70px;top:70%;left:90%;}
.shape-18{width:100px;height:100px;top:5%;left:30%;}
.shape-19{width:80px;height:80px;top:85%;left:55%;}
.shape-20{width:60px;height:60px;top:50%;left:50%;}

/* animation */

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-30px);}
    100%{transform:translateY(0px);}
}

/* category  */
.news-category-section{
padding:80px 0;
background:#111;
}

.news-card{
display:block;
position:relative;
overflow:hidden;
border-radius:6px;
color:#fff;
}

.news-image{
position:relative;
height:420px;
overflow:hidden;
}

.news-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .5s ease;
}

.news-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2));
}

.news-content{
position:absolute;
bottom:30px;
left:30px;
right:30px;
z-index:2;
}

.news-category{
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:10px;
opacity:.8;
}

.news-title{
font-size:26px;
font-weight:600;
margin-bottom:12px;
}

.news-excerpt{
font-size:14px;
opacity:.85;
line-height:1.6;
}

/*.news-arrow{
position:absolute;
right:25px;
bottom:25px;
font-size:22px;
opacity:.8;
transition:.3s;
}

.news-card:hover img{
transform:scale(1.08);
}*/

/*.news-card:hover .news-arrow{
transform:translateX(6px);
opacity:1;
}*/

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .floating-shapes {
        display: none;
    }

    .navbar-collapse {
        background: var(--primary-dark);
        padding: 1rem;
        margin-top: 1rem;
    }

    .navbar-custom.scrolled .navbar-collapse {
        background: var(--white);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /*     .about-image-overlay {
                position: relative;
                bottom: 0;
                right: 0;
            }*/

    .announcement-card {
        flex-direction: column;
    }

    .announcement-date {
        flex-direction: row;
        min-width: auto;
        padding: 1rem;
    }

    .announcement-date .day {
        font-size: 1.5rem;
        margin-right: 0.5rem;
    }
}

/* Loading Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.preloader-logo span {
    color: var(--accent-gold);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--accent-gold);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }
}