/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #2d2d2d;
    overflow-x: hidden;
}

/* Utility Classes */
.hidden {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4fd1c7, #5cb3cc);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 209, 199, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #fff;
    color: #2d2d2d;
}

.btn-hero {
    background: linear-gradient(135deg, #4fd1c7, #5cb3cc);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 209, 199, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    flex: 1;
    min-width: 120px;
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #4a4a4a;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

/* Header */
.header {
    padding-bottom: 40px;

    margin-bottom: 60px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 60px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4fd1c7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 40px 20px 0;
    background: #2d2d2d;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;

}

/* About Section */
.about-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ccc;
}

/* Services Section */
.services-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #5a5a5a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    gap: 30px;
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.service-image {
    flex-shrink: 0;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.service-content li:before {
    content: "•";
    color: #4fd1c7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.why-us-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-us-card {
    text-align: center;
    padding: 20px;
}

.why-us-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.why-us-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.why-us-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.why-us-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.vision, .mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.mission {
    margin-bottom: 0;
}

.vision-image, .mission-image {
    border-radius: 20px;
    overflow: hidden;
}

.vision-image img, .mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.vision-text, .mission-text {
    padding: 20px;
}

.vision-text h2, .mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.vision-text p, .mission-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
}

/* Contact Section */
.contact-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-info {
    padding: 20px 0;
}

.office {
    margin-bottom: 60px;
}

.office:last-child {
    margin-bottom: 0;
}

.office h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.office-details {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.office-icon {
    width: 50px;
    height: 50px;
    background: #4fd1c7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-text p {
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 60px 20px 40px;
    background: #2d2d2d;
    border-top: 1px solid #555;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4fd1c7;
}

.footer-copyright p {
    color: #888;
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-container {
        padding: 40px 20px;
        margin-bottom: 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #4a4a4a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        gap: 30px;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision, .mission {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner {
        width: 95%;
        max-width: none;
        bottom: 10px;
        padding: 20px;
    }

    .cookie-content h3 {
        font-size: 18px;
    }

    .cookie-content p {
        font-size: 13px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .services-section h2,
    .why-us-section h2 {
        font-size: 2.5rem;
    }

    .about-text h2,
    .vision-text h2,
    .mission-text h2 {
        font-size: 2rem;
    }

    .vision, .mission {
        margin-bottom: 60px;
    }

    .header {
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    /* Mobile Cookie Banner Stacked Layout */
    @media (max-width: 480px) {
        .cookie-banner {
            bottom: 0;
            left: 0;
            transform: none;
            width: 100%;
            border-radius: 15px 15px 0 0;
        }

        .cookie-buttons {
            flex-direction: column-reverse;
            gap: 10px;
        }

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

        .service-content h3 {
            font-size: 1.3rem;
        }

        .office-details {
            flex-direction: column;
            gap: 15px;
        }

        .office-icon {
            align-self: flex-start;
        }

        .section-container {
            padding: 30px 15px;
        }
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.why-us-card,
.office {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects */
.service-card:hover,
.why-us-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* About Page Styles */

/* About Hero Section */
.about-hero-section {
    padding: 40px 20px 0;
    background: #2d2d2d;
}

.about-hero-content {
    text-align: center;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

/* About Details Section */
.about-details-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.about-details-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-details-image {
    border-radius: 20px;
    overflow: hidden;
}

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

.about-details-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.about-details-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ccc;
}

/* Vision Section */
.vision-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-image {
    border-radius: 20px;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
}

/* Mission Section */
.mission-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text {
    order: 1;
}

.mission-image {
    order: 2;
    border-radius: 20px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
}

/* Values Section */
.values-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.values-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 20px;
}

.value-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.value-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Active Navigation Link */
.nav-link.active {
    color: #4fd1c7;
}

/* About Page Mobile Styles */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-text {
        order: 2;
    }

    .mission-image {
        order: 1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-image img {
        height: 150px;
    }

    .about-details-text h2,
    .vision-text h2,
    .mission-text h2 {
        font-size: 2rem;
    }

    .values-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

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

    .value-card h3 {
        font-size: 1.2rem;
    }
}

/* Internship Page Styles */

/* Internship Hero Section */
.internship-hero-section {
    padding: 40px 20px 0;
    background: #2d2d2d;
}

.internship-hero-content {
    text-align: center;
}

.internship-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

/* Why Internship Section */
.why-internship-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.why-internship-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.why-internship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-internship-card {
    text-align: center;
    padding: 20px;
}

.why-internship-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.why-internship-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.why-internship-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.why-internship-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Who Can Apply Section */
.who-can-apply-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.who-can-apply-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.who-can-apply-image {
    border-radius: 20px;
    overflow: hidden;
}

.who-can-apply-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-can-apply-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.who-can-apply-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ccc;
}

/* Application Process Section */
.application-process-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.application-process-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.application-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    padding: 20px;
}

.process-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.process-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.process-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Internship Page Mobile Styles */
@media (max-width: 768px) {
    .internship-hero-content h1 {
        font-size: 2.5rem;
    }

    .why-internship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .application-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .who-can-apply-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-internship-section h2,
    .application-process-section h2 {
        font-size: 2.5rem;
    }

    .who-can-apply-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .internship-hero-content h1 {
        font-size: 2rem;
    }

    .why-internship-grid {
        grid-template-columns: 1fr;
    }

    .application-process-grid {
        grid-template-columns: 1fr;
    }

    .why-internship-card h3,
    .process-card h3 {
        font-size: 1.2rem;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
    padding: 40px 20px 0;
    background: #2d2d2d;
}

.contact-hero-content {
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

/* Contact Info Section */
.contact-info-section {
    padding: 0 20px;
    background: #2d2d2d;
}

.contact-offices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.office-card {
    text-align: left;
    padding: 20px;
}

.office-card .office-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.office-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.office-card .office-details p {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 0 20px;
    background: #2d2d2d;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 20px 25px;
    border: none;
    border-radius: 25px;
    background: #fff;
    color: #2d2d2d;
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #888;
    font-weight: 400;
}

.form-group input:focus {
    box-shadow: 0 0 0 3px rgba(79, 209, 199, 0.3);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-form-submit {
    background: linear-gradient(135deg, #4fd1c7, #5cb3cc);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 209, 199, 0.4);
}

/* Success Page Styles */
.success-section {
    padding: 40px 20px 0;
    background: #2d2d2d;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.success-section .section-container {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

.success-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-offices {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .office-card h3 {
        font-size: 1.5rem;
    }

    .contact-form-container {
        padding: 0 10px;
    }

    .form-group input {
        padding: 18px 20px;
        font-size: 14px;
    }

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

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .office-card .office-details p {
        font-size: 14px;
    }

    .form-group input {
        padding: 16px 18px;
    }

    .btn-form-submit {
        padding: 14px 32px;
        font-size: 14px;
    }

    .success-content h1 {
        font-size: 2rem;
    }
}