/* Hero Section Starts */
:root {
    --electric-blue: #0008ff;
    --black: #000000;
    --white: #ffffff;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 1. Background Zoom Effect */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    animation: slowScale 20s infinite alternate;
}

.bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-slide.active { opacity: 0.4; }

@keyframes slowScale {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* 2. Electric Blue Masking */
.hero-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0, 8, 255, 0.1) 0%, var(--black) 70%);
    z-index: 1;
}

/* 3. Typography Design */
.hero-main-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-family: 'Playfair Display', serif;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 30px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.blue-glow {
    color: var(--electric-blue);
    text-shadow: 0 0 30px rgba(0, 8, 255, 0.4);
}

/* 4. Layout & Content */
.about-hero-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-subtext {
    color: #888;
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* 5. Electric Button Design */
.btn-electric {
    background: var(--electric-blue);
    color: white;
    padding: 20px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0, 8, 255, 0.3);
}

.btn-electric:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}
.btn-link{
    margin-left: 2rem;
    padding: 20px 20px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    color: white;
}
/* 6. Floating Glass Orb */
.glass-orb {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 8, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatOrb 8s infinite ease-in-out;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -30px) rotate(5deg); }
}

.orb-num {
    display: block;
    font-size: 5rem;
    font-weight: bolder;
    color: var(--electric-blue);
    line-height: 1;
    margin-bottom: .5rem;
}

.orb-lab {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
@media (max-width: 769px) {
    /* 1. Layout Reset */
    .about-hero {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 60px; /* Space for navbar and footer */
        display: block; /* Switch from flex to block for natural scrolling */
    }

    .about-hero-container {
        flex-direction: column; /* Stack Orb below text */
        text-align: center;
        gap: 60px;
    }

    .hero-content-box {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center buttons and text */
    }

    /* 2. Typography Scaling */
    .hero-main-title {
        font-size: 2.8rem; /* Scaled down for mobile screens */
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 40px;
    }

    /* 3. Button Adjustments */
    .btn-electric {
        width: 80%; /* Full width for easier thumb tapping */
        justify-content: center;
        padding: 18px 0;
    }

    .hero-cta-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .btn-link{
        margin: 0;
        width: 80%;
    }
    /* 4. Glass Orb Adjustments */
    .glass-orb {
        width: 200px; /* Smaller orb for mobile */
        height: 200px;
        animation: floatOrbMobile 6s infinite ease-in-out; /* Simpler animation */
    }

    .orb-num {
        font-size: 3rem;
    }

    /* 5. Mask & Background Optimization */
    .hero-mask {
        /* Shift gradient to center for mobile stacked view */
        background: radial-gradient(circle at 50% 40%, rgba(0, 8, 255, 0.2) 0%, var(--black) 80%);
    }
}

/* Mobile specific float animation to prevent horizontal scroll issues */
@keyframes floatOrbMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* Hero Section Ends */

/* Section 1 Starts */
:root {
    --primary: #000000;    /* Pure Black */
    --accent: #0008ff;     /* Electric Blue */
    --text-main: #a0a0a0;  /* Muted Grey for paragraphs */
    --bg-dark: #000000;    /* Section Background */
    --card-dark: #0a0a0a;  /* Slightly lighter black for cards */
}

.about-sec {
    padding: 120px 0;
    background-color: var(--bg-dark); /* Changed to Black */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Styling */
.about-image-box {
    position: relative;
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    /* Electric Blue Glow instead of standard shadow */
    box-shadow: 0 25px 50px -12px rgba(0, 8, 255, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%); /* Optional: gives a more architectural feel */
}

.floating-stats {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    background: var(--card-dark); /* Changed to Dark */
    padding: 25px;
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 8, 255, 0.3); /* Electric Blue Border */
}

.stat-item { text-align: center; }
.stat-item .num { 
    display: block; 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--accent); /* Electric Blue */
}
.stat-item .lab { font-size: 0.8rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; background: rgba(255, 255, 255, 0.1); height: 40px; }

/* Content Styling */
.accent-line {
    width: 50px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 20px;
}

.section-tag {
    font-weight: 700;
    color: var(--accent); /* Electric Blue */
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.about-title {
    font-size: 3.2rem;
    color: #ffffff; /* White text on Black bg */
    line-height: 1.1;
    margin: 15px 0 30px;
    font-family: 'Playfair Display', serif;
}

.text-gradient {
    /* Gradient from White to Electric Blue */
    background: linear-gradient(90deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-main); /* Soft grey for readability */
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-quote {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    color: #ffffff;
    font-style: italic;
    border-left: 4px solid var(--accent); /* Blue Accent */
    margin-top: 30px;
}

.about-action {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    background: var(--accent); /* Blue Button */
    color: white;
    padding: 16px 32px;
    border-radius: 50px; /* More modern rounded pill */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 8, 255, 0.2);
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.contact-hint span { display: block; font-size: 0.8rem; color: var(--text-main); margin-bottom: .5rem; }
.contact-hint strong { color: #ffffff; font-size: 1.1rem; }


@media (max-width: 768px) {
    .about-sec {
        padding: 80px 0; /* Slightly less padding for mobile */
    }

    .about-container {
        grid-template-columns: 1fr; /* Stack image on top of text */
        gap: 40px; /* Reduced gap */
        width: 90%; /* More width on mobile */
    }

    /* Image Adjustments */
    .image-wrapper img {
        height: 350px; /* Shorter image for mobile screens */
    }

    .floating-stats {
        position: relative; /* Remove absolute positioning */
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: -40px; /* Pull it up slightly over the image */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px 10px;
        z-index: 5;
    }

    .stat-item .num {
        font-size: 1.2rem; /* Scale down numbers */
    }

    /* Typography Adjustments */
    .about-title {
        font-size: 2.2rem; /* Scale down large title */
        margin-bottom: 20px;
        text-align: left;
    }

    .about-text p {
        font-size: 0.95rem; /* Better readability on phones */
    }

    .highlight-quote {
        margin-top: 20px;
        font-size: 0.9rem;
        padding: 15px;
    }

    /* Buttons & Actions */
    .about-action {
        flex-direction: column; /* Stack button and contact info */
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
    }

    .btn-primary {
        width: 100%; /* Full width button for easier tapping */
        text-align: center;
        padding: 14px 0;
    }

    .contact-hint {
        padding-left: 5px;
    }
}
/* Section1 Ends */



/*Section  Starts*/
/* Services Section - Black & Electric Blue Theme */
.services-sec {
    padding: 100px 0;
    background-color: #000000; /* Changed to Pure Black */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff; /* White text for titles */
    margin: 10px 0 20px;
}

.services-title span {
    color: #0008ff; /* Electric Blue */
}

.services-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #a0a0a0; /* Muted Grey */
    line-height: 1.6;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #0a0a0a; /* Deep card background */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    background: #000000;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 8, 255, 0.15); /* Electric Blue Glow */
    border-color: #0008ff;
}

.card-icon {
    font-size: 2.5rem;
    color: #0008ff; /* Electric Blue */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: #d1d5db;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Custom Electric Blue Checkmark */
.service-card ul li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0008ff; /* Electric Blue */
    font-size: 0.8rem;
}

/* Section Footer */
.services-footer {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: #0a0a0a;
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(0, 8, 255, 0.2);
}

.services-footer p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #0008ff; /* Electric Blue */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #0008ff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 8, 255, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-title { font-size: 2.2rem; }
    .service-card { padding: 30px; }
    .services-footer { padding: 40px 20px; }
}
/*Section 2 Ends*/


/*Section 3 Starts*/
/* Portfolio Section - Black & Electric Blue Theme */
.portfolio-sec {
    padding: 100px 0;
    background-color: #000000; /* Pure Black */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-container {
    width: 85%;
    max-width: 1300px;
    margin: 0 auto;
}

.portfolio-header {
    margin-bottom: 50px;
}

.portfolio-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff; /* White text */
    margin: 10px 0;
}

.portfolio-title span {
    color: #0008ff; /* Electric Blue */
}

.section-tag {
    color: #0008ff; /* Consistent with other sections */
    letter-spacing: 2px;
    font-weight: 700;
}

.portfolio-desc {
    color: #a0a0a0; /* Muted Grey */
    max-width: 600px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card.large {
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.8; /* Slightly dimmed for better text overlay */
}

/* Hover Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    /* Gradient from Electric Blue/Black to Transparent */
    background: linear-gradient(to top, rgba(0, 8, 255, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    color: white;
}

.project-info span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.8;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-top: 5px;
    color: #ffffff;
}

.project-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

/* CTA Button */
.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-dark-modern {
    display: inline-block;
    padding: 15px 40px;
    background: #0008ff; /* Electric Blue Button */
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Pill shape for consistency */
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 8, 255, 0.2);
}

.btn-dark-modern:hover {
    background: #ffffff;
    color: #000000;
    letter-spacing: 1px;
    transform: translateY(-3px);
}

/* Responsive Grid */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }
    .project-card.large {
        grid-row: span 1;
    }
    .portfolio-title {
        font-size: 2.2rem;
    }
}

/*Section 3 Ends*/


/*Section 4 Starts*/
.why-choose-sec {
    padding: 100px 0;
    background-color: #000000; /* Deep Midnight */
    color: white;
}

.why-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-top: 15px;
}

.why-title span {
    color: #0008ff; /* Royal Blue Accent */
}

/* Feature Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #0008ff;
    transform: scale(1.02);
}

.why-icon {
    font-size: 2rem;
    color: #0008ff;
    flex-shrink: 0;
}

.why-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.why-info p {
    font-size: 0.95rem;
    color: #94a3b8; /* Muted Slate Blue */
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .why-title { font-size: 2.2rem; }
    .why-grid { grid-template-columns: 1fr; }
}
/*Section 4 Ends*/

/*Section5 Starts*/

:root {
    --bg-black: #050015;
    --electric-blue: #0008ff;
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
}

.process-sec {
    padding: 100px 0;
    background-color: var(--bg-black);
    color: var(--text-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
}

.process-title span {
    color: var(--electric-blue);
}

.section-tag {
    color: var(--electric-blue);
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

/* Steps Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--electric-blue);
    line-height: 1;
    margin-bottom: 20px;
    transition: 0.4s;
}

.step-card:hover .step-number {
    color: var(--electric-blue);
    -webkit-text-stroke: 1px transparent;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Connecting Line (Hidden on mobile) */
.step-line {
    position: absolute;
    top: 45px;
    left: 120px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--electric-blue), transparent);
    z-index: 1;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .step-line { display: none; }
    .process-title { font-size: 2.5rem; }
    .step-number { font-size: 3rem; }
}

/*Section 5 Ends*/


/*Section 6 Starts*/

.testimonial-sec {
    padding: 100px 0;
    background-color: #000000;
    overflow: hidden;
}

.testi-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.testi-header { text-align: center; margin-bottom: 60px; }
.testi-title { font-size: 3rem; color: #fff; font-family: 'Playfair Display', serif; }
.testi-title span { color: #0008ff; }

/* Slider Window */
.testi-slider-window {
    width: 100%;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    gap: 20px;
}

.testi-card {
    min-width: calc(33.333% - 14px); /* Show 3 cards */
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.testi-card:hover {
    border-color: #0008ff;
    box-shadow: 0 10px 30px rgba(0, 8, 255, 0.15);
}

.quote-icon { color: #0008ff; font-size: 1.5rem; margin-bottom: 20px; }

.testi-card p {
    color: #a0a0a0;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info strong { display: block; color: #fff; font-size: 1.1rem; }
.client-info span { color: #0008ff; font-size: 0.85rem; text-transform: uppercase; }

/* Controls */
.testi-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.ctrl-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #0008ff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.ctrl-btn:hover {
    background: #0008ff;
    transform: scale(1.1);
}

/* Mobile: Show 1 card */
@media (max-width: 768px) {
    .testi-card {
        /* Forces the card to be the full width of the screen */
        min-width: 100% !important; 
        /* Adjust padding for smaller screens if needed */
        padding: 30px 20px; 
    }

    .testi-track {
        /* Removes the gap so the next card isn't visible at all */
        gap: 0px; 
    }
}

/*Section 6 Ends*/


/*Section 7 Starts*/
.testimonial-sec {
    padding: 100px 0;
    background-color: #000000;
    overflow: hidden;
}

.testi-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.testi-header { text-align: center; margin-bottom: 60px; }
.testi-title { font-size: 3rem; color: #fff; font-family: 'Playfair Display', serif; }
.testi-title span { color: #0008ff; }

/* Slider Window */
.testi-slider-window {
    width: 100%;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    gap: 20px;
}

.testi-card {
    min-width: calc(33.333% - 14px); /* Show 3 cards */
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.testi-card:hover {
    border-color: #0008ff;
    box-shadow: 0 10px 30px rgba(0, 8, 255, 0.15);
}

.quote-icon { color: #0008ff; font-size: 1.5rem; margin-bottom: 20px; }

.testi-card p {
    color: #a0a0a0;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info strong { display: block; color: #fff; font-size: 1.1rem; }
.client-info span { color: #0008ff; font-size: 0.85rem; text-transform: uppercase; }

/* Controls */
.testi-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.ctrl-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #0008ff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.ctrl-btn:hover {
    background: #0008ff;
    transform: scale(1.1);
}

/* Mobile: Show 1 full card without cutting off */
@media (max-width: 992px) {
    .testi-track {
        gap: 0; /* Remove gap to make 100% width math simple */
    }

    .testi-card {
        min-width: 100%; /* Now takes exactly the full window width */
        padding: 40px 25px;
        box-sizing: border-box; /* Ensures padding doesn't add to width */
        border-radius: 20px;
        /* Add a small margin if you want to see the edges of the card */
        transform: scale(0.95); 
        transition: transform 0.4s ease;
    }

    /* Optional: Make the active card look slightly larger */
    .testi-card.active {
        transform: scale(1);
    }

    .testi-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .testi-controls {
        margin-top: 20px;
    }
}



/*Section 7 Starts*/
.cta-final-sec {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 8, 255, 0.2);
}
.badge{color: white;}
.cta-badge {
    color: #0008ff;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-title span {
    color: #0008ff;
}

.cta-desc {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-blue {
    background: #0008ff;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 8, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 8, 255, 0.5);
    background: #0006cc;
}

.btn-secondary-outline {
    border: 2px solid #0008ff;
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-outline:hover {
    background: rgba(0, 8, 255, 0.1);
    transform: translateY(-5px);
}

/* Background Glow */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: #0008ff;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
    }
    .btn-primary-blue, .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }
}

/*Section 7 Ends*/