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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #1e3a8a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 16px 8px 0;
    transition: all 0.3s ease;
    margin-left: -20px;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.logo-icon:hover,
.logo-text:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: static;
    left: auto;
    top: auto;
    flex-direction: row;
    background-color: transparent;
    width: auto;
    text-align: left;
    padding: 0;
    box-shadow: none;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #f59e0b;
}

.contact-btn {
    background: #f8f9fa;
    color: #1e3a8a;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: white;
    color: #4169E1;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #1e3a8a;
    transform: translateY(50px);
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 0.5s forwards;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #1e3a8a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 0.8s forwards;
}

.cta-button {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d97706;
}

/* Services Carousel */
.services-carousel {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Specific optimizations for each service image */
.carousel-slide:nth-child(1) {
    /* AI RAP - Logo with network pattern */
    background-size: cover;
    background-position: center center;
}

.carousel-slide:nth-child(2) {
    /* Asset Management - Team in safety vests */
    background-size: cover;
    background-position: center center;
}

.carousel-slide:nth-child(3) {
    /* Road Safety Audit - Highway interchange */
    background-size: cover;
    background-position: center center;
}

.carousel-slide:nth-child(4) {
    /* Intelligent Corridor - Smart city with glowing tech */
    background-size: cover;
    background-position: center center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out 0.3s forwards;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out 0.6s forwards;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 30px;
}

.carousel-arrow-right {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4169E1, #1e3a8a, #0f172a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.company-url {
    color: #4169E1;
    font-weight: 600;
    font-size: 1.1rem;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.image-card {
    text-align: center;
}

.mission-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #64748b;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.mission-text p {
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    font-weight: 600;
    color: #92400e;
}

.vision-section {
    text-align: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.vision-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInFromLeft 1s ease-out 0.3s forwards;
}

.vision-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
}

/* Approach Section */
.approach {
    padding: 60px 0;
    background: #f8f9fa;
}

.approach-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-intro p {
    font-size: 1.4rem;
    color: #1e3a8a !important;
    font-weight: 600;
    text-shadow: none !important;
}

.approach-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.approach-block {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.approach-block-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.approach-block-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.approach-block-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.approach-block-content p:last-child {
    margin-bottom: 0;
}

/* People Section */
.people {
    padding: 80px 0;
    background: #ffffff;
}

.people-content {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership-team,
.advisory-board,
.company-culture {
    margin-bottom: 5rem;
}

.leadership-team h3,
.advisory-board h3,
.company-culture h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.leadership-team h3::after,
.advisory-board h3::after,
.company-culture h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    border-radius: 2px;
}

/* Leadership Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.team-member {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1e3a8a;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.position {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.member-links {
    margin-top: 1rem;
}

.linkedin-link {
    display: inline-block;
    padding: 8px 20px;
    background: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.linkedin-link:hover {
    background: #005885;
}

/* Advisory Board */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advisor {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisor:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.advisor-photo {
    margin-bottom: 1rem;
}

.advisor-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
}

.advisor-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.advisor-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.3rem;
}

.advisor-expertise {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Company Culture */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Join Team */
.join-team {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.join-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.join-content h3::after {
    display: none;
}

.join-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advisors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .join-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #1e293b;
    color: white;
}

.problem-full-width {
    width: 100%;
    padding: 0;
    max-width: none;
}

.problem-content {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.problem-text {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.problem h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f59e0b;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInFromRight 1s ease-out 0.5s forwards;
}

.intro-with-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.intro-image-left {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.intro-image-right {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.problem-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0;
    flex: 1;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.problem-text {
    max-width: none;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-text p {
    margin-bottom: 1.5rem;
    padding: 20px;
    max-width: none;
    width: 100%;
}

.full-width-text {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    text-align: center;
}

.wrapped-layout {
    margin-bottom: 1.5rem;
    overflow: visible;
    padding: 20px;
    clear: both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.float-image {
    float: left;
    width: 250px;
    height: auto;
    margin: 0 1.5rem 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.float-image-right {
    float: right !important;
    width: 250px !important;
    max-width: 250px !important;
    min-width: 250px !important;
    height: auto !important;
    margin: 0 0 1rem 1.5rem !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

/* Specific targeting for the Boeing 747 image */
.wrapped-layout img[src*="3.1.webp"] {
    width: 250px !important;
    max-width: 250px !important;
    min-width: 250px !important;
    height: auto !important;
    float: right !important;
    margin: 0 0 1rem 1.5rem !important;
    display: block !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wrapped-layout p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.human-impact-red {
    margin: 0;
    width: 100%;
    padding: 25px 0;
    background: rgba(220, 38, 38, 0.1);
    color: white;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid #dc2626;
    box-sizing: border-box;
}

.side-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.impact-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

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

.comparison-item .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ef4444;
}

.comparison-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.human-impact {
    background: rgba(239, 68, 68, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    background: linear-gradient(135deg, #4169E1, #1e3a8a, #0f172a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-50px);
    opacity: 0;
    animation: slideInFromTop 1s ease-out 1s forwards;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.service-item {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.ai-logo {
    background: linear-gradient(135deg, #4169E1, #1e3a8a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.service-icon-placeholder {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.service-content p {
    color: white;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f1f5f9;
}

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

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInFromLeft 1s ease-out 1.5s forwards;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.contact-details {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-1px);
}

.footer-logo-icon {
    height: 30px;
    width: auto;
    opacity: 0.9;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3a8a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .mission-images {
        grid-template-columns: 1fr;
    }
    
    .impact-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-item .number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .float-image-right {
        width: 200px !important;
        max-width: 200px !important;
        min-width: 200px !important;
    }
    
    .wrapped-layout img[src*="3.1.webp"] {
        width: 200px !important;
        max-width: 200px !important;
        min-width: 200px !important;
        height: auto !important;
    }
    
    .wrapped-layout {
        padding: 15px;
    }
    
    .hero {
        height: 35vh;
    }
    
    .services-carousel {
        height: 45vh;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .carousel-arrow-left {
        left: 15px;
    }
    
    .carousel-arrow-right {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .problem h2 {
        font-size: 2rem;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: 30vh;
    }
    
    .services-carousel {
        height: 40vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-arrow-left {
        left: 10px;
    }
    
    .carousel-arrow-right {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 20px;
    }
}
