/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
}

.site-title {
    margin-left: 15px;
}

.site-title h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.site-title p {
    font-size: 0.8rem;
    color: #777;
}

.hamburger-menu {
    position: relative;
}

.menu-icon {
    font-size: 44px;
    cursor: pointer;
    color: #f6ae01;
}

.menu-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 80px 30px;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.menu-links.show {
    display: flex;
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.menu-links a {
    padding: 15px 0;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-links a:last-child {
    border-bottom: none;
}

.menu-links a:hover {
    color: #f6ae01;
}

/* Services Menu with Plus Icon */
.menu-item {
    position: relative;
}

.menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item a i {
    margin-left: 5px;
    font-size: 16px;
}

.submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    z-index: 1001;
}

.submenu a {
    padding: 10px 0;
    font-size: 0.9em;
    font-weight: normal;
    border-bottom: none;
}

.submenu a:hover {
    color: #f6ae01;
}

.has-submenu.open .submenu {
    display: flex;
}

.news-link {
    color: #f6ae01 !important;
}

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    height: 100%;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f6ae01;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d69600;
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text h3 {
    color: #f6ae01;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Mission & Vision Section Styles */
.mission-vision {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-vision .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mission,
.vision {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission {
    background-color: #f6ae01;
    color: white;
}

.vision {
    background-color: #333;
    color: white;
}

.mission h3,
.vision h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Services Section Styles */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #f6ae01;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* News & Blogs Section Styles */
.news {
    padding: 80px 0;
    background-color: #ffffff;
}

.news h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 150px;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-img i {
    font-size: 4rem;
    color: #f6ae01;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.3rem;
}

.news-content .date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-content p {
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    display: inline-block;
    color: #f6ae01;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #d69600;
}

/* Simplified Contact Section Styles */
.contact-simplified {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-simplified h2 {
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.contact-info-simplified {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-simplified .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-info-simplified .info-item i {
    font-size: 2rem;
    color: #f6ae01;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f6ae01;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #d69600;
}

/* Footer Styles */
.footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 200px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #f6ae01;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f6ae01;
}

.footer-newsletter {
    flex: 2;
    min-width: 200px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #f6ae01;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #d69600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .nav-left {
        display: flex;
        align-items: center;
    }

    .site-title {
        margin-left: 10px; /* Reduced spacing */
    }

    .site-title h1 {
        font-size: 1.2rem; /* Smaller heading */
        margin-bottom: 3px;
    }

    .site-title p {
        font-size: 0.7rem; /* Smaller paragraph */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .mission-vision .container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}
/* Modified and additional responsive styles */
@media screen and (max-width: 768px) {
    /* Navbar adjustments */
    .navbar {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    .site-title {
        margin-left: 10px;
    }

    .site-title h1 {
        font-size: 1.2rem;
    }

    .site-title p {
        font-size: 0.7rem;
    }

    /* Menu adjustments */
    .menu-links {
        width: 80%;
        padding: 60px 20px;
    }

    /* Hero section adjustments */
    .hero {
        height: 100vh;
        margin-top: 70px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content .hero-title {
        font-size: 2rem !important;
        white-space: normal !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    /* About section adjustments */
    .about {
        padding: 40px 0;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Mission & Vision adjustments */
    .mission-vision {
        padding: 40px 0;
    }

    .mission-vision .container {
        flex-direction: column;
        padding: 0 15px;
    }

    .mission, .vision {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Services section adjustments */
    .services {
        padding: 40px 0;
    }

    .services h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    /* News section adjustments */
    .news {
        padding: 40px 0;
    }

    .news h2 {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    /* Contact section adjustments */
    .contact-simplified {
        padding: 40px 0;
    }

    .contact-info-simplified {
        flex-direction: column;
        gap: 30px;
    }

    .info-item {
        width: 100%;
        text-align: center;
    }

    /* Footer adjustments */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo img {
        height: 50px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 12px;
        border-radius: 5px;
    }

    .newsletter-form button {
        margin-top: 10px;
    }
}

/* Additional adjustments for very small screens */
@media screen and (max-width: 360px) {
    .logo img {
        height: 40px;
    }

    .site-title h1 {
        font-size: 1rem;
    }

    .site-title p {
        font-size: 0.6rem;
    }

    .hero-content .hero-title {
        font-size: 1.5rem !important;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
    }
}

/* Improve touch targets for mobile */
@media (hover: none) {
    .menu-links a,
    .cta-button,
    .social-links a,
    .footer-links a {
        padding: 12px;
    }
}


        /* Page Header Styles */
        .page-header {
            height: 300px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('b4.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 110px;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* News Categories Styles */
        .news-categories {
            padding: 30px 0;
            background-color: #f9f9f9;
            border-bottom: 1px solid #eaeaea;
        }

        .category-filter {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .category-filter span {
            font-weight: 600;
            color: #333;
        }

        .category-btn {
            padding: 8px 16px;
            border-radius: 30px;
            background: #fff;
            color: #555;
            border: 1px solid #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .category-btn:hover,
        .category-btn.active {
            background: #f6ae01;
            color: #fff;
            border-color: #f6ae01;
        }

        /* Featured Article Styles */
        .featured-article {
            padding: 60px 0;
            background-color: #fff;
        }

        .featured-card {
            display: flex;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .featured-image {
            flex: 0 0 250px;
            background-color: #f6ae01;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
        }

        .featured-content {
            flex: 1;
            padding: 40px;
        }

        .category-tag {
            display: inline-block;
            padding: 5px 12px;
            background-color: #e8f4fd;
            color: #2980b9;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .featured-content h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 15px;
        }

        .meta {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 20px;
        }

        .excerpt {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
        }

        .read-more-btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #f6ae01;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            cursor: pointer;
        }

        .read-more-btn:hover {
            background-color: #e29600;
        }

        /* News Grid Styles */
        .news-grid-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        .news-grid-section h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 40px;
            position: relative;
        }

        .news-grid-section h2:after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background-color: #f6ae01;
            margin: 15px auto 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        .news-img {
            height: 180px;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .news-img i {
            font-size: 4rem;
            color: #f6ae01;
        }

        .news-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-content h3 {
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 10px;
        }

        .news-content .date {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 15px;
        }

        .news-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }

        .read-more {
            display: inline-block;
            color: #f6ae01;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            padding-right: 25px;
            cursor: pointer;
        }

        .read-more:after {
            content: "→";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: right 0.3s;
        }

        .read-more:hover:after {
            right: -5px;
        }

        /* Pagination Styles */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 5px;
        }

        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            background-color: white;
            color: #555;
            text-decoration: none;
            border: 1px solid #eee;
            transition: all 0.3s;
        }

        .pagination a.next {
            width: auto;
            padding: 0 15px;
        }

        .pagination a.active,
        .pagination a:hover {
            background-color: #f6ae01;
            color: white;
            border-color: #f6ae01;
        }

        /* Newsletter Section Styles */
        .newsletter-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .newsletter-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #f6f9fe;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .newsletter-content {
            flex: 1;
            padding-right: 40px;
        }

        .newsletter-content h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 15px;
        }

        .newsletter-content p {
            color: #555;
            font-size: 1.1rem;
        }

        .newsletter-form {
            flex: 0 0 350px;
            display: flex;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }

        .newsletter-form button {
            padding: 15px 25px;
            background-color: #f6ae01;
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-form button:hover {
            background-color: #e29600;
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .featured-card {
                flex-direction: column;
            }

            .featured-image {
                flex: 0 0 200px;
            }

            .newsletter-container {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-content {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .newsletter-form {
                flex: 0 0 100%;
                width: 100%;
            }
        }

        @media screen and (max-width: 768px) {
            .page-header {
                height: 220px;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }

            .featured-content {
                padding: 25px;
            }

            .featured-content h2 {
                font-size: 1.8rem;
            }
        }

        @media screen and (max-width: 576px) {
            .category-filter {
                flex-direction: column;
                align-items: stretch;
            }

            .category-btn {
                text-align: center;
            }
        }