/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Kadwa:wght@700&family=Inria+Sans:wght@400;700&display=swap');

:root {
    --primary: #F15A29;
    --secondary: #0202A0;
    --dark: #2C2C2C;
    --white: #fff;
    --gray: #f5f5f5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inria Sans', 'Kadwa', sans-serif;
    background: var(--gray);
    color: var(--dark);
}

h1, h2, h3 {
    font-family: 'Kadwa', serif;
    color: var(--secondary);
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

p {
    font-family: 'Inria Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--secondary);
}

header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(44,44,44,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(44,44,44,0.05);
    position: relative;
}

.logo a img{
    width: 250px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links li a {
    font-family: 'Inria Sans';
    font-size: 1rem;
    color: var(--dark);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: var(--primary);
    color: var(--primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    display: none;
    align-items: center;
    justify-content: left;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    display: flex;
    position: relative;
    opacity: 1;
    z-index: 1;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    color: var(--secondary);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    max-width: 100%;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.hero-slide.active .hero-content {
    transform: translateX(0);
    opacity: 1;
    animation: slideInFromRight 0.8s ease-out 0.3s forwards;
    animation-fill-mode: both;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content h1 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 3.5rem;
    width: 60%;
    line-height: 4rem;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeSlideIn 0.6s ease-out 0.5s forwards;
}

span {
    color: var(--primary);
}

.hero-content p {
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    width: 60%;
    line-height: 2.1rem;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeSlideIn 0.6s ease-out 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeSlideIn 0.6s ease-out 0.9s forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inria Sans', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary);
}

/* Slider Dots */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--secondary);
}

/* Welcome/About Section */
.welcome-section {
    background: var(--white);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.welcome-image {
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 600px;
    height: 320px;
    background: url('/img/Hero\ home\ copy.webp') center/cover no-repeat;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}


.welcome-container .container {
    flex: 2 1 400px;
    min-width: 300px;
}

.welcome-container h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    width: 100%;
    line-height: 2.6rem;
}

.welcome-container h2 span {
    color: var(--primary);
}

.welcome-container p {
    margin-bottom: 2rem;
    font-size: 16px;
    color: var(--dark);
}

.welcome-container .btn {
    margin-top: 1rem;
}

/* Services Section */
.services-section {
    background: var(--gray);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Page Header */
.page-header {
    background-color: var(--secondary);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header-content h1 {
    color: var(--white);
    margin: 0;
    font-size: 3rem;
}

/* About Story Section */
.about-story {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.about-story .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* About Gallery */
.about-gallery {
    padding: 2rem 0;
    background: var(--gray);
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    flex: 1;
    max-width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* About Partnership Section */
.about-partnership {
    background: var(--white);
    padding: 6rem 2rem;
}

.about-partnership .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.partnership-text {
    flex: 2;
    min-width: 300px;
}

.partnership-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnership-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.partnership-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.partnership-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.partnership-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}

/* Leadership Section */
.leadership-section {
    background: var(--gray);
    padding: 6rem 2rem;
    text-align: center;
}

.leadership-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.leader-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding-bottom: 1.5rem;
}

.leader-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    margin: 1rem 0 0.25rem;
    color: var(--secondary);
}

.leader-title {
    margin: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item {
        max-width: 100%;
        width: 100%;
    }
    
    .partnership-content {
        flex-direction: column;
    }
    
    .partnership-image {
        max-width: 100%;
        order: -1;
    }
    
    .leadership-grid {
        justify-content: center;
    }
    
    .leader-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .about-story p {
        font-size: 1.1rem;
    }
    
    .leadership-grid {
        gap: 1.5rem;
    }
}

/* Services Page Styles */

/* Contact Page Styles */
.contact-header {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: "CONTACT US";
    position: absolute;
    font-size: 12rem;
    font-weight: 700;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-family: 'Kadwa', serif;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: var(--gray);
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}

.contact-form {
    flex: 1;
    padding: 3rem;
}

.contact-map {
    flex: 1;
    min-height: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inria Sans', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 0.75rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-family: 'Inria Sans', sans-serif;
    font-size: 1rem;
    display: inline-block;
}

.submit-btn:hover {
    background-color: var(--secondary);
}

/* Form Status Messages */
.status-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-message.sending {
    background-color: #f0f8ff;
    color: #0056b3;
    border: 1px solid #0056b3;
}

.status-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.status-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #c62828;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}

.thank-you-content h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Footer Contact Icons */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    height: auto;
}

.contact-text p {
    margin: 0;
    color: var(--white);
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-header::before {
        font-size: 8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .contact-header::before {
        font-size: 6rem;
    }
}
.services-header {
    background-color: var(--secondary);
}

.services-intro {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.services-intro .container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.service-detail {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-detail.alternate {
    background: var(--gray);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style-type: none;
    padding-left: 0;
}

.service-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
    }
    
    .service-image {
        max-width: 100%;
        order: -1;
    }
    
    .service-detail.alternate .service-row .service-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .about-story,
    .about-partnership,
    .leadership-section,
    .services-intro,
    .service-detail {
        padding: 3rem 1.5rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content p,
    .services-intro p {
        font-size: 1rem;
    }
}

.service-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
    text-align: left;
}

.service-item h3 {
    color: var(--secondary);
    margin-top: 1rem;
    font-size: 1.4rem;
    font-family: "inria Sans";
}

.services-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    background: var(--white);
    padding: 4rem 0;
    text-align: left;
    align-content: center;
}

.video-section .video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.video-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 2.5rem;
    
}

.video-container h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: "inria Sans";
    font-size: 30px;
    font-weight: 10px;
}

.video-wrapper {
    margin-bottom: 2rem;
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(44,44,44,0.10);
}

/* Footer */
.footer-section {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

.footer-section h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 10rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-info {
    min-width: 220px;
    max-width: 320px;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--white);
    margin: 0.3rem 0;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1rem;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info ul li {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-info ul li a {
    color: var(--white);
    text-decoration: none;
}

.footer-info ul li a:hover {
    color: var(--primary);
}

.footer-bottom p {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .welcome-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    .footer-contact {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1rem;
    }
    
    
    .hero-slide {
        align-items: flex-start;
    }
    
    .hero-content {
        padding-top: 2rem;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateX(50px); /* Smaller translation for mobile */
    }
    
    .hero-content h1 {
        width: 100%;
        font-size: 3rem;
        line-height: 3.5rem;
        transform: translateX(20px); /* Smaller translation for mobile */
    }
    
    .hero-content p {
        width: 100%;
        font-size: 1.1rem;
        line-height: 1.6rem;
        transform: translateX(20px); /* Smaller translation for mobile */
    }
    
    .hero-buttons {
        margin-top: 1rem;
        flex-wrap: wrap;
        transform: translateX(20px); /* Smaller translation for mobile */
    }
    
    /* Adjust animation timing for mobile */
    .hero-slide.active .hero-content {
        animation-duration: 0.6s;
    }
    
    .hero-content h1 {
        animation-duration: 0.5s;
    }
    
    .hero-content p {
        animation-duration: 0.5s;
    }
    
    .hero-buttons {
        animation-duration: 0.5s;
    }
    
    .welcome-section,
    .services-section,
    .video-section {
        padding: 2rem 0;
        max-width: 100%;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }


    .welcome-container {
        padding-top: 3rem;
    }

    .welcome-image {
        width: 100%;
    }

    .container {
        width: 100%;
    }

    .container h2{
        font-size: 2rem;
    }

    .services-section {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 90%;
        width: 90%;
        margin: auto;
    }

    .video-section{
        max-width: 100%;
        width: 100%;
    }

    .video-container {
        flex-direction: column;
        width: 90%;
        max-width: 90%;
    }

    .video-wrapper {
        width: 100%;
        margin: auto;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    .footer-container {
        width: 90%;
        margin: auto;
    }

    .page-header-content h1 {
        line-height: 1.3em;
    }

    .about-gallery {
        display: none;
    }

    .leadership-grid {
        width: 70%;
        margin: auto;
    }

    .leader-card {
        width: 100%;
        margin: auto;
    }

    .leader-image {
        width: 100%;
        margin: auto;
       }

       .service-content h2 {
        line-height: 2.2rem;
       }

       .about-partnership .container h2 {
            line-height: 2.5rem;
       }

       .leadership-section .container h2 {
            line-height: 2.5rem;
       }
}