/* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1269b0;
            --accent-color: #4da6ff; /* Sky Blue Accent */
            --accent-hover: #3395ff;
            --light-bg: #faf9f7;
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --border-color: #e0e0e0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Merriweather', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--white);
        }

        h1, h2 {
            font-family: 'Fira Sans Condensed', serif;
            font-weight: 900;
            line-height: 1.3;
        }

        h3, h4 {
            font-family: 'Fira Sans Condensed', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        .section {
            padding: 6rem 0;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            max-width: 700px;
        }





/* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

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

        .logoSVG {
            max-height: 2.5rem;
            width: auto;
            display: block;
        }

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

        .nav-links a {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .cta-button {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: var(--accent-hover);
        }





/* ===== HERO SECTION ===== */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,64,0.4)), 
                        url('../img/BKG.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .hero-Cloud {
            max-width: 100%;
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            margin-left: 20%;
            margin-right: 20%;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .tagline {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 1rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

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

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

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

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





/* ===== ABOUT SECTION ===== */
        .about {
            background-color: var(--light-bg);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .highlight {
            color: var(--accent-color);
            font-weight: 600;
        }





/* ===== WHY IT MATTERS SECTION ===== 
        .why-matters {
            background-color: var(--white);
        }

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

        .benefit-card {
            padding: 2rem;
            background-color: var(--light-bg);
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

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

        .benefit-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

*/



/* ===== IDEAL CLIENT SECTION ===== */
        .ideal-client {
            background: linear-gradient(rgba(44,67,144,1), rgba(0,138,207,1)); 
            color: var(--white);
        }

        .ideal-client .section-title {
            color: var(--white);
        }

        .ideal-client .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

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

        .client-type {
            background-color: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
        }

        .client-type h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }

        .client-type p {
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }





/* ===== SERVICES SECTION ===== */
        .services {
            background-color: var(--light-bg);
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), 
              url('https://images.unsplash.com/photo-1535350356005-fd52b3b524fb?w=1920&q=60') center/cover no-repeat;
        }

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

        .service-card {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

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

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .why-best {
            margin-top: 4rem;
            padding: 3rem;
            background-color: var(--white);
            border-radius: 8px;
            text-align: center;
            border: 2px solid var(--accent-color);
        }

        .why-best h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .why-best p {
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }





/* ===== PROCESS SECTION (3 Columns) ===== 
        .process {
            background-color: var(--white);
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Three columns */
/*            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 1.5rem;
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }

        .process-step p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
*/




/* ===== PORTFOLIO GALLERY SECTION (Clickable) ===== */
        .portfolio {
            background: linear-gradient(rgba(44,67,144,1), rgba(0,138,207,1)); 
            background-color: var(--light-bg);
        }

        .portfolio .section-title {
            color: var(--white);
        }

        .portfolio .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

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

        .project-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .project-main-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .project-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-main-image img {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(77, 166, 255, 0.7); /* Sky blue overlay */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay span {
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .project-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .project-gallery {
            display: none; /* Hidden by default */
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            background-color: #f5f5f5;
            border-top: 1px solid var(--border-color);
            animation: fadeIn 0.3s ease;
        }

        .project-gallery.show {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .project-gallery img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .project-gallery img:hover {
            opacity: 0.7;
            transform: scale(1.05);
        }





/* ===== Process SECTION ===== */
        .faq {
            background-color: var(--light-bg);
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), 
              url('https://images.unsplash.com/photo-1638547908152-a8406fc38d21?w=1920&q=60') center/cover no-repeat;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--white);
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f5f5f5;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-light);
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }





/* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            background-color: var(--white);
            overflow: hidden;
        }

        .testimonial-slider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 2rem 0;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-color) var(--light-bg);
        }

        .testimonial-slider::-webkit-scrollbar {
            height: 8px;
        }

        .testimonial-slider::-webkit-scrollbar-track {
            background: var(--light-bg);
            border-radius: 4px;
        }

        .testimonial-slider::-webkit-scrollbar-thumb {
            background-color: var(--accent-color);
            border-radius: 4px;
        }

        .testimonial-card {
            min-width: 350px;
            background-color: var(--light-bg);
            padding: 2.5rem;
            border-radius: 8px;
            scroll-snap-align: start;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .author-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .author-info p {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.8;
        }





/* ===== CONTACT SECTION ===== */
        .contact {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
        }

        .contact .section-title {
            color: var(--white);
        }

        .contact .section-subtitle {
            color: rgba(255,255,255,0.8);
            margin: 0 auto;
        }

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

        .contact-email {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin: 2rem 0;
            display: block;
        }

        .contact-email:hover {
            color: #7bb8ff;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .contact-link {
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }





/* ===== FOOTER ===== */
        footer {
            background-color: #1a1a1a;
            color: rgba(255,255,255,0.7);
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }





/* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .section {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .process-timeline {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
            }
        }

        @media (max-width: 600px) {
            .nav-links {
                display: none;
            }

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

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-card {
                min-width: 300px;
            }

            .process-timeline {
                grid-template-columns: 1fr; /* 1 column on mobile */
            }
        }
