:root {
    --primary-color: #295266;
    --hover-color: #8f643a;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-links a,
.logo-text,
.hero-cta,
.cta-button,
.contact-button,
.main-heading,
.benefit-title,
.counter h3,
.author-name,
.footer-section h3 {
    font-family: var(--heading-font);
}

/* Update specific text elements to use Inter */
.hero-content p,
.main-description,
.benefit-text,
.about-content p,
.feature-content p,
.why-us-intro,
.why-us-content p,
.testimonial-text,
.author-title,
.contact-intro,
.contact-card p,
.footer-section p,
.contact-info span {
    font-family: var(--body-font);
}

/* Updated Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);

}

.logo img {
    height: 70px;
    margin-right: 1rem;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;

}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
    position: relative;
}

.nav-links a:hover {
    color: var(--hover-color);
}

.nav-link.active {
    color: var(--hover-color);
}

/* Responsive navbar styles */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links li {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-links li {
        margin: 0.5rem;
    }

    .logo {
        margin-bottom: 0.5rem;
    }
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px;
    margin-left: 1rem;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, rgba(26, 60, 97, 0.95) 0%, rgba(41, 82, 102, 0.90) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
    animation: floatBg 15s linear infinite;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, var(--hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    display: flex;
    /* gap: 1.5rem; */
    justify-content: center;
    /* margin-top: 2rem; */
    animation: fadeInUp 1.2s ease-out;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #fff;
}

.primary-cta {
    background: transparent;
    color: var(--hover-color);
    border: 2px solid var(--hover-color);
}

.secondary-cta {
    background: var(--hover-color);
    color: white;
    border: 2px solid var(--hover-color);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.primary-cta:hover {
    background: var(--hover-color);
    color: white;
}

.secondary-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        display:none;
    }
    .slide-caption {
          display:none;
        padding: 0px;
        text-align: center;
        color: white;
        z-index: 200;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
}

/* Slider Section */
.slider-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 3;
    margin-top: -240px;
    margin-bottom: -240px;
}

.hero-slider {
    height: 680px;
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-slide {
    position: relative;
    height: 680px;
    /* background-color: rgb(0 0 0 / 31%) !important; */
    background-size: cover;
    background-position: center;
    /* border-radius: 20px; */
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 60, 97, 0.4) 0%,
            rgba(41, 82, 102, 0.4) 100%);
    z-index: 1;
}

.slide-caption {
    padding: 200px;
    text-align: center;
    color: white;
    z-index: 200;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-caption h3 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slide-caption p {
    font-size: 2.1rem;
    opacity: 0.9;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .hero-slider {
        height: 350px;
        margin-top: -40px;
    }

    .hero-slide {
        height: 350px;
    }

    .slide-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .slide-caption h3 {
        font-size: 1.4rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }
}

/* H1 Section */
.main-heading-section {
    padding: 20rem 2rem 5rem;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    z-index: 2;
}

.main-heading {
    color: #1a3c61;
    font-size: 2.6rem;

    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--hover-color);
    border-radius: 2px;
}

.main-description {
    width: 80%;

    text-align: justify;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    color: #1a3c61;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .hero-slider {
        height: 350px;
        margin-top: -40px;
    }

    .hero-slide {
        height: 350px;
    }

    .slide-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .slide-caption h3 {
        font-size: 1.4rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }

    .main-heading {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.05) 0%, rgba(143, 100, 58, 0.05) 100%);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--hover-color);
    border-radius: 2px;
}

.about-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    padding: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button2 {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--hover-color);

    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button2:hover {
    background: var(--primary-color);

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about::before {
        display: none;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section */
.why-us {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

.why-us h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.why-us-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
}

.why-us-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.why-us-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateX(10px);
}

.why-us-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
    animation: bounce 2s infinite;
}

.why-us-content {
    flex: 1;
}

.why-us-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-us-content p {
    color: #666;
    line-height: 1.6;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-10px);
    }
}

.why-us-footer {
    margin-top: 3rem;
    font-style: italic;
    font-size: 30px;
    color: #b3600f !important;
    font-weight: 600;

}

/* Testimonials */
.testimonials {
    padding: 5rem 1rem;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--hover-color);
    border-radius: 2px;
}

.testimonial-slider {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-title {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-rating {
    color: #ffd700;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Update Swiper navigation for testimonials */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--primary-color) !important;
    background: white;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
    font-size: 1.2rem !important;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.testimonial-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--hover-color);
    transform: scale(1.2);
}

@media (min-width: 992px) {
    .testimonial-slider .swiper-slide {
        width: calc(33.333% - 40px) !important;
        margin: 0 20px;
    }
}

@media (max-width: 991px) {
    .testimonial-slider .swiper-slide {
        width: calc(50% - 30px) !important;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        width: 100%;
        padding: 1rem;
    }

    .testimonial-slider .swiper-slide {
        width: 100% !important;
        margin: 0;
    }

    .testimonial-card {
        padding: 2rem;
        margin: 0.5rem;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }
}

/* Contact Section */
.contact {
    /*padding: 4rem 2rem;*/
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23295266" opacity="0.05"/></svg>');
    opacity: 0.5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--hover-color);
    border-radius: 2px;
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.contact-button:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .contact-info-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s; z-index: 10000; 
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
    position: relative;
}

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

.footer-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--hover-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.quick-links a:hover {
    color: var(--hover-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--hover-color);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: #ccc;
}

.contact-info i {
    color: var(--hover-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

/* Counter Section */
.counters {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a3c61 0%, #295266 100%);
    position: relative;
    overflow: hidden;
}

.counters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
    animation: floatBg 20s linear infinite;
}

@keyframes floatBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

.counters h2 {
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
}

.counters h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--hover-color);
    border-radius: 2px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.counter:hover {
    transform: translateY(-10px);
    border-color: var(--hover-color);
}

.counter:hover::before {
    transform: translateY(0);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.counter-icon i {
    background: linear-gradient(45deg, #ffffff, var(--hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.counter h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, var(--hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.counter p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter .plus-symbol {
    font-size: 2rem;
    position: relative;
    top: -1rem;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counters {
        padding: 4rem 1rem;
    }

    .counter {
        padding: 2rem 1rem;
    }

    .counter h3 {
        font-size: 3rem;
    }
}

/* Add this CSS after the nav-links styles */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(41, 82, 102, 0.1);
    color: var(--hover-color);
}

/* Update button styles */
.hero-cta,
.cta-button,
.contact-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.primary-cta {
    background: transparent;
    color: var(--hover-color);
    border: 2px solid var(--hover-color);
}

.primary-cta:hover {
    background: var(--hover-color);
    color: white;
}

.secondary-cta {
    background: var(--hover-color);
    color: white;
    border: 2px solid var(--hover-color);
}

.secondary-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.nav-link.active {
    color: var(--hover-color);
}

.nav-link.active::after {
    width: 100%;
    background: var(--hover-color);
}

/* Gallery Page Specific Styles */
.gallery-section {
    padding: 120px 0 60px;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Courses Page Specific Styles */
.courses-section {
    padding: 120px 0 60px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 1.5rem;
}

.course-title {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.course-price {
    font-weight: 600;
    color: var(--primary-color);
}

.course-duration {
    color: #666;
    font-size: 0.9rem;
}

/* Media Queries for Gallery and Courses */
@media (max-width: 768px) {

    .gallery-grid,
    .course-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 1rem;
    }

    .gallery-section,
    .courses-section {
        padding: 100px 0 40px;
    }
}

@media (max-width: 576px) {

    .gallery-grid,
    .course-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.about-hero {
    /* min-height: 60vh; */
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.95), rgba(143, 100, 58, 0.9)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
    animation: floatBg 15s linear infinite;
}

.about-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

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

.vm-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.vm-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Objectives Section */
.objectives {
    padding: 6rem 2rem;
    background: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.objective-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
}

.objective-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(41, 82, 102, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.objective-card:hover .objective-number {
    color: rgba(255, 255, 255, 0.1);
}

.objective-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.objective-card:hover h4 {
    color: white;
}

.objective-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.objective-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.team-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--hover-color);
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes floatBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}

.info-icon {
    /* width: 40px;
    height: 40px; */
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%;
    height: 100%; */
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.97), rgba(143, 100, 58, 0.95)),
        url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
    animation: floatBg 15s linear infinite;
}

.blog-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, var(--hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Blog Section */
.blog-section {
    padding: 1rem 2rem;
    background: #ffffff;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Latest Blog Section */
.latest-blog {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.latest-blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.latest-blog-image {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.latest-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-article {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

/* Trending Section */
.trending-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.navigation-arrows {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trending-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trending-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content {
    padding: 1.5rem;
}

.trending-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.trending-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.4;
}

.trending-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Popular Section */
.popular-section {
    margin-bottom: 4rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.popular-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.popular-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content {
    padding: 1.5rem;
}

.popular-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.popular-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1200px) {

    .trending-grid,
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-blog-card {
        grid-template-columns: 1fr;
    }

    .latest-blog-image {
        height: 300px;
    }

    .trending-grid,
    .popular-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-title {
        font-size: 1.8rem;
    }
}

/* Newsletter Section */
.blog-newsletter {
    background: #f8f9fa;
    padding: 5rem 2rem;
    position: relative;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.newsletter-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: var(--body-font);
    color: #1a1a1a;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .newsletter-input {
        width: 100%;
        padding: 1rem;
        background: white;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .newsletter-btn {
        width: 100%;
    }

    .newsletter-content h3 {
        font-size: 2rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.95), rgba(143, 100, 58, 0.9)),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMjBjNi42MjcgMCAxMi01LjM3MyAxMi0xMlMyNi42MjcgLTQgMjAgLTRTOCAxLjM3MyA4IDhzNS4zNzMgMTIgMTIgMTJ6IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.contact-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-container {
    /*max-width: 1400px;*/
    margin: 0 auto;
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 4rem;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /*display: flex;*/
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-frame {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Social Links */
.social-section {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--hover-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .map-frame {
        height: 350px;
    }
}

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.95), rgba(143, 100, 58, 0.9)),
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMjBjNi42MjcgMCAxMi01LjM3MyAxMi0xMlMyNi42MjcgLTQgMjAgLTRTOCAxLjM3MyA4IDhzNS4zNzMgMTIgMTIgMTJ6IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.gallery-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Navigation */
.gallery-nav {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.gallery-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.gallery-nav-link {
    padding: 0.8rem 1.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.gallery-nav-link.active,
.gallery-nav-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Gallery Grid */
.gallery-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-item-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Video Gallery */
.video-gallery {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.video-item:hover .play-button {
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .gallery-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    aspect-ratio: 16/9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--hover-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .close-modal {
        right: 0;
    }
}

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.95), rgba(143, 100, 58, 0.9)),
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMjBjNi42MjcgMCAxMi01LjM3MyAxMi0xMlMyNi42MjcgLTQgMjAgLTRTOCAxLjM3MyA4IDhzNS4zNzMgMTIgMTIgMTJ6IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.gallery-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}
 
        /* Blog Hero Section */
        .blog-hero {
            background: linear-gradient(135deg, rgba(41, 82, 102, 0.97), rgba(143, 100, 58, 0.95)),
                        url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
            animation: floatBg 15s linear infinite;
        }

        .blog-hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .blog-hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-family: var(--heading-font);
            font-weight: 700;
            background: linear-gradient(45deg, #ffffff, var(--hover-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .blog-hero p {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Blog Section */
        .blog-section {
            padding: 6rem 2rem;
            background: #ffffff;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Latest Blog Section */
        .latest-blog {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 2rem;
            font-family: var(--heading-font);
            font-weight: 600;
        }

        .latest-blog-card {
            display: grid;
            margin-bottom:50px;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .latest-blog-image {
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .latest-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .latest-blog-content {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .blog-title {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-family: var(--heading-font);
            font-weight: 600;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .read-article {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
        }

        /* Trending Section */
        .trending-section {
            margin-bottom: 4rem;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .navigation-arrows {
            display: flex;
            gap: 1rem;
        }

        .nav-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .trending-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .trending-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .trending-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .trending-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trending-content {
            padding: 1.5rem;
        }

        .trending-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .trending-title {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-family: var(--heading-font);
            font-weight: 600;
            line-height: 1.4;
        }

        .trending-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        /* Popular Section */
        .popular-section {
            margin-bottom: 4rem;
        }

        .popular-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .popular-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .popular-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .popular-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .popular-content {
            padding: 1.5rem;
        }

        .popular-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .popular-title {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-family: var(--heading-font);
            font-weight: 600;
            line-height: 1.4;
        }

        @media (max-width: 1200px) {
            .trending-grid,
            .popular-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .latest-blog-card {
                grid-template-columns: 1fr;
            }

            .latest-blog-image {
                height: 300px;
            }

            .trending-grid,
            .popular-grid {
                grid-template-columns: 1fr;
            }

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

            .blog-title {
                font-size: 1.8rem;
            }
        }

        /* Newsletter Section */
        .blog-newsletter {
            background: #f8f9fa;
            padding: 5rem 2rem;
            position: relative;
        }

        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-content h3 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-family: var(--heading-font);
            font-weight: 600;
        }

        .newsletter-content p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 0.5rem;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            font-size: 1rem;
            font-family: var(--body-font);
            color: #1a1a1a;
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: var(--heading-font);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--hover-color);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
                background: transparent;
                padding: 0;
                box-shadow: none;
            }

            .newsletter-input {
                width: 100%;
                padding: 1rem;
                background: white;
                border-radius: 8px;
                margin-bottom: 1rem;
            }

            .newsletter-btn {
                width: 100%;
            }

            .newsletter-content h3 {
                font-size: 2rem;
            }
        }
   

.gallery-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Navigation */
.gallery-nav {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.gallery-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.gallery-nav-link {
    padding: 0.8rem 1.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.gallery-nav-link.active,
.gallery-nav-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Gallery Grid */
.gallery-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-item-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Video Gallery */
.video-gallery {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.video-item:hover .play-button {
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .gallery-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    aspect-ratio: 16/9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--hover-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .close-modal {
        right: 0;
    }
}

      
        /* Blog Details Styles */
        .blog-details {
            padding: 2rem;
            background: #ffffff;
        }

        .blog-details-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .blog-meta-info {
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .blog-meta-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-title-section {
            margin-bottom: 2rem;
        }

        .blog-title-section h1 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            font-family: var(--heading-font);
            font-weight: 600;
            line-height: 1.3;
        }

        .blog-description {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .blog-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

        .blog-section {
            margin-bottom: 3rem;
        }

        .blog-section h2 {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            font-family: var(--heading-font);
            font-weight: 600;
        }

        .blog-section p {
            margin-bottom: 1.5rem;
        }

        .blog-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
        }

        .blog-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .blog-tips {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .blog-tips li {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            position: relative;
        }

        .blog-tips li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 1.5rem;
            line-height: 1;
        }

        .quote-block {
            background: #f8f9fa;
            padding: 2rem;
            border-left: 4px solid var(--primary-color);
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }

        .quote-block p {
            font-style: italic;
            color: #1a1a1a;
            font-size: 1.2rem;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .blog-title-section h1 {
                font-size: 2rem;
            }

            .blog-section h2 {
                font-size: 1.5rem;
            }

            .blog-content {
                font-size: 1rem;
            }

            .quote-block {
                padding: 1.5rem;
            }
        }

        /* Related Blogs Slider */
        .related-blogs {
            padding: 4rem 2rem;
            background: #f8f9fa;
        }

        .related-blogs-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .related-blogs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .related-blogs-title {
            font-size: 2rem;
            color: #1a1a1a;
            font-family: var(--heading-font);
            font-weight: 600;
        }

        .slider-navigation {
            display: flex;
            gap: 1rem;
        }

        .slider-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-arrow:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .related-blogs-slider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 1rem 0;
        }

        .related-blogs-slider::-webkit-scrollbar {
            display: none;
        }

        .related-blog-card {
            min-width: 350px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            flex-shrink: 0;
        }

        .related-blog-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .related-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-blog-content {
            padding: 1.5rem;
        }

        .related-blog-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .related-blog-title {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-family: var(--heading-font);
            font-weight: 600;
            line-height: 1.4;
        }

        .related-blog-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        /* Newsletter Section */
        .blog-newsletter {
            background: #f8f9fa;
            padding: 5rem 2rem;
            position: relative;
        }

        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-content h3 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-family: var(--heading-font);
            font-weight: 600;
        }

        .newsletter-content p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 0.5rem;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            font-size: 1rem;
            font-family: var(--body-font);
            color: #1a1a1a;
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: var(--heading-font);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--hover-color);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
                background: transparent;
                padding: 0;
                box-shadow: none;
            }

            .newsletter-input {
                width: 100%;
                padding: 1rem;
                background: white;
                border-radius: 8px;
                margin-bottom: 1rem;
            }

            .newsletter-btn {
                width: 100%;
            }

            .newsletter-content h3 {
                font-size: 2rem;
            }

            .related-blog-card {
                min-width: 280px;
            }
        }
  
/* Courses Hero Section */
.courses-hero {
    background: linear-gradient(135deg, rgba(41, 82, 102, 0.95), rgba(143, 100, 58, 0.9)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.courses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMjBjNi42MjcgMCAxMi01LjM3MyAxMi0xMlMyNi42MjcgLTQgMjAgLTRTOCAxLjM3MyA4IDhzNS4zNzMgMTIgMTIgMTJ6IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.courses-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.courses-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.courses-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Grid Section */
.courses-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .course-image::after {
    opacity: 1;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.course-content {
    padding: 2rem;
}

.course-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.course-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    line-height: 1.3;
    font-weight: 600;
}

.course-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.course-fee {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.course-fee span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.course-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.info-item i {
    color: var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-hero {
        min-height: 50vh;
    }

    .courses-hero h1 {
        font-size: 2.5rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .course-image {
        height: 200px;
    }
}
