/* styles.css */
:root {
    --color-primary: #0066CC;
    --color-primary-dark: #0052a3;
    --color-secondary: #00C2B3;
    --color-dark: #1A2B3C;
    --color-darker: #0F1924;
    --color-light: #F8FAFC;
    --color-gray: #64748B;
    --color-gray-light: #E2E8F0;
    --color-white: #FFFFFF;
    --color-black: #000000;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.07);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.1);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utility Bar */
.utility-bar {
    background-color: var(--color-darker);
    color: var(--color-white);
    padding: 0.6rem 0;
    font-size: 0.875rem;
    z-index: 1002;
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-contacts {
    display: flex;
    gap: var(--spacing-lg);
}

.utility-link {
    color: var(--color-gray-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-consultation {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1001;
    padding: var(--spacing-md) 0;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-light);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.logo-container p {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-dark);
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
}

.header-cta .btn-project {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
}

/* Mobile */
.mobile-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 1003;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    right: 0;
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .header-cta{
        display: none;
    }
}

/* Hero section container */
        .hero-section {
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 40px 5%;
            background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('assets/hero.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Two-column layout container */
        .hero-container {
            margin: 0;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        /* Left column content */
        .hero-content {
            z-index: 2;
        }

        /* Eyebrow styling */
        .eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #60a5fa;
            margin-bottom: 20px;
            padding: 6px 12px;
            background-color: rgba(96, 165, 250, 0.1);
            border-radius: 4px;
        }

        /* Main headline */
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #ffffff;
        }

        .tagline {
            font-size: 1.2rem;
            font-weight: 500;
            color: #d1d5db;
            margin-bottom: 30px;
            line-height: 1.4;
        }

        /* Supporting paragraph */
        .supporting-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #e5e7eb;
            margin-bottom: 40px;
            max-width: 540px;
        }

        /* Button container */
        .cta-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Button base styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            min-width: 160px;
        }

        /* Primary button */
        .btn-primary {
            background-color: #3b82f6;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        /* Secondary button */
        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border-color: #ffffff;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
        }

        /* Right column image */
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .visual-container {
            width: 100%;
            max-width: 520px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }

        .visual-container:hover {
            transform: translateY(-10px);
        }

        .visual-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
           
            .hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                width:100%;
               
            }

            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .supporting-text {
                max-width: 100%;
            }

            .cta-container {
                justify-content: center;
            }

            .visual-container {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }

            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.25rem;
            }

            .supporting-text {
                font-size: 1rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 320px;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1.125rem;
            }

            .hero-section {
                padding: 40px 5%;
            }

            .eyebrow {
                font-size: 0.75rem;
                letter-spacing: 1.5px;
            }
        }

        /*Whatsapp Floating Button*/
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
            z-index: 9999;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
        }

        .whatsapp-float:active {
            transform: translateY(-1px);
        }

         /* About section container */
        .about-section {
            padding: 100px 5%;
            background-color: #ffffff;
        }

        /* Container for content */
        .about-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Two-column layout grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left column: Text content */
        .about-content {
            padding-right: 20px;
        }

        /* Eyebrow label */
        .eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #3b82f6;
            margin-bottom: 16px;
        }

        /* Section heading */
        .about-heading {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #111827;
        }

        /* Main paragraphs */
        .about-text {
            margin-bottom: 24px;
            font-size: 1.125rem;
            line-height: 1.7;
            color: #4b5563;
        }

        .about-text.supporting {
            margin-bottom: 40px;
        }

        /* Key values list */
        .values-list {
            list-style: none;
            margin-bottom: 48px;
        }

        .values-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .value-icon {
            width: 24px;
            height: 24px;
            margin-right: 16px;
            color: #3b82f6;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .value-text {
            font-weight: 600;
            color: #111827;
            font-size: 1.125rem;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 16px 32px;
            background-color: #3b82f6;
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        /* Right column: Visual/Stats block */
        .about-visual {
            position: relative;
        }

        /* Stats container */
        .stats-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }

        /* Individual stat card */
        .stat-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 32px 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-text {
            font-size: 1rem;
            font-weight: 600;
            color: #111827;
        }

        /* Background illustration */
        .visual-background {
            width: 100%;
            height: 300px;
            background-color: #f1f5f9;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .visual-background::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('assets/hero.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.8;
            border-radius: 16px;
        }

        .visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
            border-radius: 16px;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .about-grid {
                gap: 60px;
            }
            
            .about-heading {
                font-size: 2.25rem;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 5%;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .about-content {
                padding-right: 0;
            }
            
            .about-heading {
                font-size: 2rem;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 40px auto 0;
            }
            
            .visual-background {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 60px 5%;
            }
            
            .about-heading {
                font-size: 1.75rem;
            }
            
            .about-text {
                font-size: 1rem;
            }
            
            .stat-card {
                padding: 24px 16px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .cta-button {
                width: 100%;
                justify-content: center;
                padding: 14px 28px;
            }
        }
        /* Section Container */
        .services-section {
            width: 100%;
            margin: 0;
            background-color: #F8F8FF;
            padding: 80px 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #5a67d8;
            margin-bottom: 15px;
            padding: 5px 15px;
            background-color: #e0e7ff;
            border-radius: 30px;
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #1a202c;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 1.125rem;
            color: #4a5568;
            line-height: 1.7;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Service Cards */
        .service-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            border: 1px solid #f1f1f1;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .service-icon {
            font-size: 2.5rem;
            color: #5a67d8;
            margin-bottom: 25px;
            display: inline-block;
            background-color: #e0e7ff;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 15px;
        }

        .service-description {
            color: #4a5568;
            line-height: 1.7;
            flex-grow: 1;
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background-color: #5a67d8;
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 600;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(90, 103, 216, 0.2);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #434190;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(90, 103, 216, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-section {
                padding: 60px 30px;
            }
            
            .section-heading {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .services-section {
                padding: 50px 25px;
                border-radius: 16px;
            }
            
            .section-heading {
                font-size: 2rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .eyebrow {
                font-size: 0.75rem;
                letter-spacing: 1.5px;
            }
        }

        @media (max-width: 480px) {
            
            .services-section {
                padding: 40px 20px;
            }
            
            .section-heading {
                font-size: 1.75rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .cta-button {
                padding: 16px 32px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }
        }
        /* CTA Section Container */
        .cta-section {
            width: 100%;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 60px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Subtle overlay pattern */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Content container */
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Eyebrow Label */
        .eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #818cf8;
            margin-bottom: 20px;
            padding: 8px 16px;
            background-color: rgba(99, 102, 241, 0.1);
            border-radius: 20px;
        }

        /* Main Heading */
        .cta-heading {
            font-size: 2.75rem;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 24px;
        }

        /* Supporting Text */
        .cta-text {
            font-size: 1.125rem;
            color: #e2e8f0;
            line-height: 1.7;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Button Container */
        .button-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        /* Base Button Styles */
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.0625rem;
            font-weight: 600;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 180px;
            border: 2px solid transparent;
            cursor: pointer;
        }

        /* Primary Button */
        .cta-button-primary {
            background-color: #6366f1;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .cta-button-primary:hover {
            background-color: #4f46e5;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }

        /* Secondary Button */
        .cta-button-secondary {
            background-color: transparent;
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .cta-button-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
        }

        /* Trust Line */
        .trust-line {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 30px;
                border-radius: 2px;
            }
            
            .cta-heading {
                font-size: 2.25rem;
            }
            
            .cta-text {
                font-size: 1.0625rem;
                margin-bottom: 40px;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            
            
            .cta-section {
                padding: 50px 25px;
                border-radius: 16px;
            }
            
            .cta-heading {
                font-size: 1.875rem;
            }
            
            .cta-text {
                font-size: 1rem;
            }
            
            .eyebrow {
                font-size: 0.8125rem;
                letter-spacing: 2px;
                padding: 6px 14px;
            }
            
            .cta-button {
                padding: 16px 32px;
                font-size: 1rem;
            }
            
            .trust-line {
                font-size: 0.875rem;
            }
        }

        /* Focus states for accessibility */
        .cta-button:focus {
            outline: 2px solid #818cf8;
            outline-offset: 2px;
        }

        /* Testimonials Section */
        .testimonials-section {
            width: 100%;
            background-color: #fff;
            padding: 70px 40px;
            margin: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #5d6afb;
            margin-bottom: 15px;
            padding: 5px 15px;
            background-color: rgba(93, 106, 251, 0.08);
            border-radius: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
        }

        /* Slider Container */
        .testimonials-slider {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 900px;
        }

        .slides-container {
            position: relative;
            height: 400px;
        }

        /* Individual Slide */
        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
        }

        .testimonial-slide.active {
            opacity: 1;
        }

        .client-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 25px;
        }

        .testimonial-text {
            font-size: 1.25rem;
            font-style: italic;
            color: #444;
            margin-bottom: 25px;
            line-height: 1.7;
            max-width: 700px;
        }

        @media (max-width: 768px) {
            .testimonial-text {
                font-size: 1.1rem;
            }
        }

        .rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .rating .fa-star-half-stroke {
            color: #ffc107;
        }

        .client-info {
            margin-top: 10px;
        }

        .client-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .client-position {
            font-size: 0.95rem;
            color: #777;
            margin-top: 5px;
        }

        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #5d6afb;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
            border: none;
        }

        .slider-arrow:hover {
            background-color: #5d6afb;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: -25px;
        }

        .slider-arrow.next {
            right: -25px;
        }

        @media (max-width: 768px) {
            .slider-arrow {
                display: none;
            }
        }

        /* Dots Navigation */
        .slider-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .dot:hover {
            background-color: #aaa;
        }

        .dot.active {
            background-color: #5d6afb;
            transform: scale(1.2);
        }

        /* Responsive Adjustments */
        @media (max-width: 576px) {
            .testimonials-section {
                padding: 50px 20px;
                border-radius: 15px;
            }
            
            .slides-container {
                height: 450px;
            }
            
            .testimonial-slide {
                padding: 15px;
            }
        }

        /*Blog Section*/
        /* Blog Section Styles */
        .blog-section {
            padding: 100px 0;
            background-color: #f9f9fb;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #4f6df5;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #222;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            font-weight: 400;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .card-image {
            height: 220px;
            width: 100%;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .card-image img {
            transform: scale(1.03);
        }

        .card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 15px;
        }

        .card-category {
            font-weight: 600;
            color: #4f6df5;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.3;
            color: #222;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .card-title a:hover {
            color: #4f6df5;
        }

        .card-excerpt {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
            line-height: 1.6;
        }

        .read-more {
            font-weight: 600;
            color: #4f6df5;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            margin-top: auto;
            transition: all 0.2s ease;
        }

        .read-more:hover {
            color: #3a56d4;
        }

        .read-more::after {
            content: "→";
            margin-left: 8px;
            transition: transform 0.2s ease;
        }

        .read-more:hover::after {
            transform: translateX(4px);
        }

        /* CTA Section */
        .section-cta {
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 32px;
            background-color: transparent;
            color: #4f6df5;
            border: 2px solid #4f6df5;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: #4f6df5;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-header h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 70px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-header h2 {
                font-size: 1.9rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .card-content {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.7rem;
            }

            .card-title {
                font-size: 1.3rem;
            }

            .card-meta {
                flex-direction: column;
                gap: 5px;
            }
        }
        /* Footer Styles */
        .site-footer {
            background-color: #0f172a;
            color: #f1f5f9;
            padding: 70px 0 0 0;
            margin-top: auto;
        }
        
        .footer-top {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 60px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .footer-column h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: #5d6afb;
        }
        
        /* About Column */
        .footer-about {
            grid-column: span 1;
        }
        
        .footer-logo {
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .logo-text {
            font-size: 1.75rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .logo-text:hover {
            color: #5d6afb;
        }
        
        .footer-about p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 0;
        }
        
        /* Services and Quick Links Columns */
        .footer-services, .footer-links {
            grid-column: span 1;
        }
        
        .footer-services ul, .footer-links ul {
            list-style: none;
        }
        
        .footer-services li, .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-services a, .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 2px 0;
        }
        
        .footer-services a:hover, .footer-links a:hover {
            color: #5d6afb;
            transform: translateX(5px);
        }
        
        /* Contact Column */
        .footer-contact {
            grid-column: span 1;
        }
        
        .contact-info {
            margin-bottom: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 20px;
            margin-right: 12px;
            color: #5d6afb;
            font-size: 1rem;
            margin-top: 2px;
        }
        
        .contact-text {
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: #5d6afb;
            transform: translateY(-3px);
        }
        
        /* Bottom Footer */
        .footer-bottom {
            background-color: #0a0f1f;
            padding: 25px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 20px;
        }
        
        .footer-legal a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: #5d6afb;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-column h4 {
                font-size: 1.2rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .site-footer {
                padding: 50px 0 0;
            }
            
            .footer-top {
                padding: 0 15px 50px;
            }
            
            .footer-column h4:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-column h4 {
                text-align: center;
            }
            
            .footer-about p {
                text-align: center;
            }
            
            .logo-text {
                display: block;
                text-align: center;
            }
            
            .footer-services ul, .footer-links ul {
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
        }
        /*Portfolio Section */
        .portfolio-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .eyebrow {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #4a6cf7;
            margin-bottom: 16px;
            display: block;
        }

        .section-header h2 {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            color: #1d2144;
            margin-bottom: 20px;
        }

        .supporting-text {
            font-size: 18px;
            color: #646464;
            max-width: 700px;
            margin: 0 auto;
        }

        .portfolio-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Accordion Styles */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .accordion-item {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .accordion-item.active {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .accordion-header {
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .accordion-header-content {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .org-logo {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: #f0f3ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a6cf7;
            font-weight: 700;
            font-size: 18px;
        }

        .org-info {
            flex: 1;
        }

        .org-name {
            font-weight: 700;
            font-size: 18px;
            color: #1d2144;
            margin-bottom: 4px;
        }

        .org-summary {
            font-size: 15px;
            color: #646464;
        }

        .accordion-icon {
            font-size: 18px;
            color: #4a6cf7;
            transition: transform 0.3s ease;
            margin-left: 16px;
            min-width: 24px;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .accordion-content-inner {
            padding: 0 24px 24px;
        }

        .org-description {
            color: #646464;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .work-details {
            margin-bottom: 24px;
            padding-left: 20px;
        }

        .work-details li {
            margin-bottom: 10px;
            color: #555;
            position: relative;
        }

        .work-details li:before {
            content: "•";
            color: #4a6cf7;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        .view-website {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #4a6cf7;
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .view-website:hover {
            background-color: #3a5ce5;
            transform: translateY(-2px);
        }

        .view-website i {
            font-size: 14px;
        }

        /* Image Container Styles */
        .image-container {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .portfolio-image {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        .portfolio-image:hover {
            transform: translateY(-5px);
        }

        .image-caption {
            text-align: center;
            margin-top: 20px;
            font-size: 15px;
            color: #646464;
            font-style: italic;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .portfolio-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-container {
                position: static;
                order: -1;
            }

            .section-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {
            .portfolio-section {
                padding: 50px 20px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .supporting-text {
                font-size: 16px;
            }

            .accordion-header {
                padding: 20px;
            }

            .org-logo {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .org-name {
                font-size: 16px;
            }

            .org-summary {
                font-size: 14px;
            }
        }
        /*Contact Section */
        /* Section Styling */
        .contact-section {
            padding: 100px 0 80px;
            background-color: #ffffff;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .eyebrow {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #4a6cf7;
            margin-bottom: 15px;
        }
        
        .section-heading {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            color: #222222;
            margin-bottom: 20px;
        }
        
        .section-description {
            font-size: 18px;
            color: #666666;
            line-height: 1.7;
        }
        
        /* Two Column Layout */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            margin-bottom: 80px;
        }
        
        /* Contact Details Styling */
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #f0f4ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 20px;
            color: #4a6cf7;
        }
        
        .contact-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: #222222;
            margin-bottom: 8px;
        }
        
        .contact-info p {
            font-size: 16px;
            color: #666666;
            line-height: 1.6;
        }
        
        /* Contact Form Styling */
        .contact-form-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            font-size: 15px;
            font-weight: 500;
            color: #333333;
            margin-bottom: 10px;
        }
        
        .required {
            color: #ff4757;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            color: #333333;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4a6cf7;
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
        }
        
        textarea.form-control {
            min-height: 160px;
            resize: vertical;
        }
        
        .submit-btn {
            display: inline-block;
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            background-color: #4a6cf7;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            letter-spacing: 0.5px;
        }
        
        .submit-btn:hover {
            background-color: #3a5ce5;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(58, 92, 229, 0.15);
        }
        
        /* Map Section */
        .map-section {
            padding-bottom: 80px;
        }
        
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 400px;
        }
        
        .map-iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-heading {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 70px 0 50px;
            }
            
            .section-heading {
                font-size: 32px;
            }
            
            .section-description {
                font-size: 16px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .contact-card, .contact-form-card {
                padding: 25px;
            }
            
            .map-container {
                height: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .section-heading {
                font-size: 28px;
            }
            
            .contact-item {
                flex-direction: column;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .map-container {
                height: 300px;
            }
        }