/* FINAL OVERRIDE: Center About Us preview section on mobile while keeping paragraphs justified */
@media (max-width: 768px) {
    .about-preview-content {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
    }
    .about-preview-content p {
        text-align: justify !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        max-width: 95vw !important;
    }
}
/* Center the About Us preview section on mobile while keeping paragraphs justified */
@media (max-width: 768px) {
    .about-preview-content {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        text-align: center !important;
    }
    .about-preview-content p {
        text-align: justify !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        max-width: 95vw !important;
    }
}
/* FINAL OVERRIDE: Justify About Us preview section paragraphs on mobile */
@media (max-width: 768px) {
    .about-preview-content p {
        text-align: justify !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        max-width: 95vw !important;
    }
}
/* Solutions Dropdown Styles */
.solutions-dropdown {
    position: relative;
}
.solutions-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 20px 30px;
    min-width: 340px;
    z-index: 100;
    flex-direction: row;
    gap: 40px;
}
.solutions-dropdown:hover .solutions-menu,
.solutions-dropdown:focus-within .solutions-menu {
    display: flex;
}
.dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}
.dropdown-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #0066cc;
}
.solutions-menu a {
    color: #222;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s;
}
.solutions-menu a:hover {
    color: #0066cc;
}
@media (max-width: 900px) {
    .solutions-menu {
        flex-direction: column;
        min-width: 220px;
        left: 0;
        right: auto;
    }
    .dropdown-column {
        min-width: unset;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #0088ff;
    --light-bg: #f0f6ff;
    --dark-text: #1a1a1a;
    --light-text: #555555;
    --border-color: #d0dff0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    animation: pageTransitionIn 0.6s ease-out;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
}

.navbar-brand .logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    padding: 60px 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-globe {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.3), transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 68, 153, 0.9) 50%, rgba(0, 34, 102, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 1.5rem;
    opacity: 1;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 8px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 1;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero .btn {
    margin: 0;
    font-size: 1.1rem;
    padding: 16px 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero .btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #000;
    border: none;
}

.hero .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.hero .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2.5px solid var(--white);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #00ff88;
    color: #00ff88;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

/* Mobile Responsiveness for Hero */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 20px;
    }
    
    .animated-globe {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 60px 15px;
    }
    
    .animated-globe {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
        opacity: 0.5;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        margin-bottom: 2rem;
    }
}

/* Page Transition Animation */
@keyframes pageTransitionIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    padding: 60px 20px;
    margin-top: 60px;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 1;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 8px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* About Sections */
.about-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.about-section-alt {
    background-color: var(--light-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.about-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mission-list {
    list-style: none;
    margin: 2rem auto;
    max-width: 900px;
}

.mission-list li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
    text-align: center;
}

.about-section-alt .value-card {
    background-color: #ffffff;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--light-text);
    line-height: 1.6;
    text-align: center;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.expertise-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.about-section-alt .expertise-item {
    background-color: #ffffff;
}

.expertise-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.expertise-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Responsive - About Us */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 80px 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .values-grid,
    .expertise-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-content p {
        text-align: left;
    }

    .mission-list li {
        font-size: 1rem;
    }

    .value-card,
    .benefit-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: auto;
        padding: 60px 15px;
    }

    .about-hero-title {
        margin-bottom: 1rem;
    }

    .about-section {
        padding: 40px 15px;
    }

    .about-content {
        font-size: 0.95rem;
    }

    .values-grid,
    .expertise-grid,
    .benefits-grid {
        gap: 1rem;
    }

    .value-card,
    .benefit-card,
    .expertise-item {
        padding: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 124, 52, 0.3);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* About Preview Section */
.about-preview {
    padding: 60px 0;
    background-image: url('/about-us-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;
    background-attachment: scroll;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--light-bg);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-preview-inner {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 5%;
    padding-right: 2rem;
}

.about-preview .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-preview .section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-preview-content {
    font-size: 1.15rem;
    line-height: 2;
    color: #1a1a1a;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
}

.about-preview-content p {
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.about-preview-content p:last-of-type {
    margin-bottom: 0;
}

.about-preview-cta {
    margin-top: 2rem;
    text-align: center;
}

.about-preview-cta .btn {
    font-size: 1.05rem;
    padding: 14px 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 68, 153, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    z-index: 0;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.services-content {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.7;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

/* Services Stats Section */
.services-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

.services-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.services-stats .stat-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.services-stats .stat-item:nth-child(1) { animation-delay: 0.1s; }
.services-stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.services-stats .stat-item:nth-child(3) { animation-delay: 0.3s; }
.services-stats .stat-item:nth-child(4) { animation-delay: 0.4s; }

.services-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design for Services */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-hero {
        padding: 100px 20px 60px;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .services-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-stats .stat-number {
        font-size: 2.5rem;
    }
}

.service-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

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

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

.service-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Approach Section */
.approach {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

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

.approach-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Impact Section */
.impact {
    padding: 80px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Impact-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.impact .section-header h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.impact .section-header p {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.stat {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

.testimonial {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.testimonial strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    padding: 80px 20px;
    background-color: var(--white);
    overflow: hidden;
}

.partners-logos {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-slide {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: fit-content;
}

.logos-slide img {
    height: 80px;
    margin: 0 3rem;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logos-slide img:hover {
    transform: scale(1.1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(31, 124, 52, 0.1);
}

.contact-info {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    height: fit-content;
}

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

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--light-text);
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
        hyphens: auto;
    text-align: left;
    line-height: 1.7;
    color: #d4d4d4;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    word-spacing: normal;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        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;
    }

    .hamburger {
        display: flex;
    }

    .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);
    }

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

    .hero p {
        font-size: 1rem;
    }

    .services-grid,
    .approach-content,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom ul {
        justify-content: center;
    }

    .hero .btn {
        display: block;
        margin-bottom: 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .about-preview {
        padding: 60px 20px;
    }

    .about-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-preview-left .section-header {
        text-align: center;
    }

    .about-preview-left .section-header h2 {
        font-size: 1.8rem;
    }

    .about-preview-content {
        font-size: 1rem;
        text-align: left;
    }

    .about-preview-content p {
        margin-bottom: 1rem;
    }

    .about-preview-right {
        min-height: 300px;
    }

    .about-preview-cta {
        margin-top: 2rem;
        text-align: center;
    }
}

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

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

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .navbar .container {
        padding: 0.8rem 20px;
    }

    .navbar-brand .logo {
        font-size: 1.5rem;
    }

    .about-preview {
        padding: 40px 15px;
    }

    .about-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-preview-content {
        font-size: 0.95rem;
    }

    .about-preview-right {
        min-height: 250px;
    }

    .about-preview-cta .btn {
        display: block;
        padding: 12px 30px;
    }
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2fb547 0%, #1e7c34 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(47, 181, 71, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(47, 181, 71, 0.6);
}

.chatbot-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.chatbot-button .close-icon {
    display: none;
}

.chatbot-button.active .chat-icon {
    display: none;
}

.chatbot-button.active .close-icon {
    display: block;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    font-size: 11px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: pulse-badge 2s ease-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #2fb547 0%, #1e7c34 100%);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chatbot-header-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-header-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.message.bot .message-avatar {
    background: linear-gradient(135deg, #2fb547 0%, #1e7c34 100%);
    color: white;
}

.message.user .message-avatar {
    background: #e2e8f0;
    color: #4a5568;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.message.bot .message-content {
    background: white;
    color: #1a1a1a;
    border-bottom-left-radius: 4px;
}

.message.user .message-content {
    background: linear-gradient(135deg, #2fb547 0%, #1e7c34 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 4px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply {
    padding: 8px 14px;
    background: white;
    border: 1px solid #2fb547;
    color: #2fb547;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-reply:hover {
    background: #2fb547;
    color: white;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e0;
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chatbot-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chatbot-input input:focus {
    border-color: #2fb547;
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2fb547 0%, #1e7c34 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.chatbot-send svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 480px) {
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        bottom: 70px;
        right: -10px;
    }

    .chatbot-button {
        width: 55px;
        height: 55px;
    }
}
