* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    --primary: #7093C1;
    --primary-light: #B7C7D7;

    --background: #F7F5F1;
    --surface: #E8E0D0;

    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;

    --border: rgba(112, 147, 193, 0.15);
    --shadow: rgba(31, 41, 55, 0.08);

    --gradient-primary: linear-gradient(135deg,
            #7093C1 0%,
            #B7C7D7 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition: all .3s ease;
}

body {
        padding-top: 90px;

    background: var(--background);
}

/* Navbar */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 1000;

    background: rgba(221,216,208,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo span {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

.logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.fontcolor {
    color: var(--primary);
}

/* Menu */

nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Unified Anchor & List Item Baseline Presentation */
nav ul li,
nav ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    /* Crisp neutral dark gray */
    text-decoration: none;
    /* Eliminates the default underline decoration */
    cursor: pointer;
    transition: color 0.15s ease-in-out;
}

/* Hover State Interactions */
nav ul li:hover,
nav ul li a:hover {
    color: #5279A6;
    /* Swaps subtly to your accent color */
}

/* Dynamic Active State Highlight (Optional helper rule marker) */
nav ul li.active-link a,
nav ul li.active-link {
    color: #5279A6;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}
.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
}

@media(max-width:1024px) {

    nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(247, 245, 241, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 0;
        gap: 20px;
        transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        width: 100%;
    }

    nav button {
        margin-top: 10px;
        width: 80%;
        max-width: 280px;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Button */

nav button {
    border: none;
    outline: none;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(112, 147, 193, 0.3);
}

nav button:hover {
    box-shadow: 0 6px 20px rgba(112, 147, 193, 0.45);
    transform: translateY(-2px);
}

.hero {
    min-height: calc(100vh - 90px);
    padding: 80px 8%;
    background: var(--background);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

/* Left Side */

.hero-left {
    max-width: 700px;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-left h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-left h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 600px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(112, 147, 193, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(112, 147, 193, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: rgba(255, 255, 255, 0.45);
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Right Side */

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    width: 100%;
    max-width: 550px;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/* Responsive */

@media(max-width:1024px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right img {
        max-width: 500px;
        height: auto;
    }
}

@media(max-width:576px) {

    .hero {
        padding: 60px 5%;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-right img {
        border-radius: 20px;
    }
}

.hero-right img {
    width: 100%;
    max-width: 550px;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    transform: rotate(-2deg);
    transition: 0.4s ease;
}

.hero-right img:hover {
    transform: rotate(0deg) scale(1.02);
}

.services {
    padding: 120px 8%;
    background: var(--surface);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.1;
    max-width: 500px;
}

.section-description {
    max-width: 380px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.large {
    grid-row: span 2;
}

.service-card {
    background: #f7f5f1;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: .35s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.tech-stack {
    position: absolute;
    bottom: 30px;
    left: 35px;
    display: flex;
    gap: 10px;
}

.tech-stack span {
    padding: 5px 12px;
    background: white;
    border: 1px solid var(--border);
    font-size: 12px;
    border-radius: 20px;
    color: var(--text-dark);
}

.methodology {
    padding: 120px 8%;
    background: var(--background);

    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
}

.methodology-left .section-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 600;
}

.methodology-left h2 {
    font-size: 3.2rem;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.methodology-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.methodology-left a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: .3s;
}

.methodology-left a:hover {
    color: var(--primary);
}

/* Right Side */

.methodology-right {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.service-item span {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 650px;
}

.service-item:hover h3 {
    color: var(--primary);
    transition: .3s;
}

@media(max-width:991px) {

    .methodology {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .methodology-left h2 {
        font-size: 2.5rem;
    }
}

@media(max-width:576px) {

    .service-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .service-item h3 {
        font-size: 1.1rem;
    }
}

.case-study {
    padding: 120px 8%;
    background: var(--surface);

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */

.case-study-image {
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.case-study-image img {
    transition: transform 1.5s ease-out;
}

.case-study-image:hover img {
    transform: scale(1.05);
}

/* Floating Result Card */

.result-card {
    position: absolute;
    right: -30px;
    bottom: 40px;

    background: var(--primary);
    color: white;

    width: 160px;
    height: 160px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 20px 40px rgba(112, 147, 193, .25);
}

.result-card h3 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.result-card span {
    text-align: center;
    font-size: .85rem;
    line-height: 1.5;
}

/* Right Side */

.case-study-content .section-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 600;
}

.case-study-content h2 {
    font-size: 3.2rem;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.case-study-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 450px;
}

.case-study-content a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: .3s;
}

.case-study-content a:hover {
    padding-left: 10px;
}

@media(max-width:991px) {

    .case-study {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .case-study-content h2 {
        font-size: 2.5rem;
    }

    .result-card {
        right: 20px;
        bottom: 20px;
    }
}

@media(max-width:576px) {

    .case-study-image img {
        height: 300px;
    }

    .result-card {
        width: 120px;
        height: 120px;
    }

    .result-card h3 {
        font-size: 1.8rem;
    }
}

/* ==========================
   SECTION 01
========================== */

.about-section {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--background);
}

/* LEFT */

.about-visual {
    display: flex;
    justify-content: center;
}

.cream-box {
    width: 100%;
    max-width: 520px;
    height: 550px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sage-box {
    width: 380px;
    height: 380px;
    background: #AEB9A8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-frame {
    width: 290px;
    height: 290px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.image-frame:hover img {
    transform: scale(1.08);
}

/* RIGHT */

.section-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--primary);
}

.about-content h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 560px;
}

/* Metrics */

.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.metric h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.metric span {
    color: var(--text-light);
    font-size: .95rem;
}

/* Quote */

blockquote {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    padding: 25px 0;
    margin-bottom: 35px;

    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}

/* CTA */

.team-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: .3s;
}

.team-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

@media (max-width:768px) {

    .about-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 5%;
    }

    .about-content {
        order: 2;
    }

    .about-visual {
        order: 1;
    }

    .cream-box {
        height: 420px;
    }

    .sage-box {
        width: 280px;
        height: 280px;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }

    .metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================
   SECTION 02
========================== */

.process-section {
    padding: 80px 8%;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Grid */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */

.process-card {
    background: #fff;
    padding: 35px;
    min-height: 280px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);

    transition: .4s ease;
    border: 1px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.process-number {
    width: 60px;
    height: 60px;

    background: var(--primary);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    margin-bottom: 30px;
}

.process-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width:768px) {

    .process-section {
        padding: 40px 5%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--gradient-primary);

    transform: scaleX(0);
    transform-origin: left;

    transition: .4s ease;
}

.process-card {
    position: relative;
    overflow: hidden;
}

.process-card:hover::before {
    transform: scaleX(1);
}

/* ==========================
   SECTION 03
========================== */

.testimonial-faq {
    padding: 80px 8%;
    background: #fff;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Left Side */

.testimonial-side h2 {
    font-size: 3rem;
    margin-top: 15px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.testimonial-card {
    background: var(--surface);
    padding: 45px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 35px;

    font-size: 6rem;
    line-height: 1;

    color: rgba(112, 147, 193, .25);
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Author */

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.author h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author span {
    color: var(--text-light);
    font-size: .9rem;
}

/* Right Side */

/* ==========================
   FAQ RIGHT SIDE
========================== */

.faq-side {
    width: 100%;
}

.faq-side h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 40px;
}

/* FAQ Container */

.faq-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

/* FAQ Item */

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 25px 0;

    cursor: pointer;
    transition: .3s ease;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: .3s ease;
}

/* Plus Button */

.faq-question button {
    width: 40px;
    height: 40px;

    border: none;
    background: transparent;

    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 300;

    cursor: pointer;

    transition: .4s ease;
}

/* Hover Effect */

.faq-item:hover .faq-question span {
    color: var(--primary);
}

/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    color: var(--text-light);
    line-height: 1.8;

    transition:
        max-height .5s ease,
        opacity .4s ease;

    padding-right: 40px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 25px;
}

/* Rotate Plus */

.faq-item.active .faq-question button {
    transform: rotate(45deg);
}

/* More Questions Link */

.faq-link {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    font-weight: 600;
    color: var(--primary);

    transition: .3s ease;
}

.faq-link:hover {
    transform: translateX(8px);
}

@media (max-width:768px) {

    .faq-side h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span {
        font-size: .95rem;
        max-width: 85%;
        line-height: 1.6;
    }

    .faq-answer {
        padding-right: 0;
        font-size: .95rem;
    }

    .faq-item.active .faq-answer {
        max-height: 250px;
    }
}

/* ==========================
   SECTION 04
========================== */

.contact-section {
    padding: 80px 8%;
    background: var(--surface);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */

.contact-info h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-dark);
}

.contact-info h2 span {
    color: var(--primary);
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item .icon {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Right Side */

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;

    border: 1px solid var(--border);
    outline: none;

    font-family: inherit;
    font-size: .95rem;

    transition: .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: none;
    height: 160px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(112, 147, 193, 0.3);
}

.submit-btn:hover {
    box-shadow: 0 6px 20px rgba(112, 147, 193, 0.45);
    transform: translateY(-2px);
}

@media(max-width:768px) {

    .contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 5%;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 25px;
    }
}

.contact-form-card {
    transition: .4s ease;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

/* ==========================
   FOOTER
========================== */

.footer {
    background: #1F2937;
    color: #fff;
    padding: 80px 8% 30px;
    margin: 0;
}

/* Top Area */

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
}

/* Branding */

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
    max-width: 400px;
    margin-bottom: 40px;
}

/* Arrow Buttons */

.footer-arrows {
    display: flex;
    gap: 12px;
}

.footer-arrows button {
    width: 50px;
    height: 50px;

    border: none;
    cursor: pointer;

    background: rgba(255, 255, 255, .08);
    color: #fff;

    font-size: 1rem;

    transition: .3s ease;
}

.footer-arrows button:hover {
    background: var(--primary);
}

/* Links Area */

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: .85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;

    margin-bottom: 14px;

    transition: .3s ease;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Subscribe */

.subscribe p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Form */

.subscribe-form {
    display: flex;
    align-items: center;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .15);
}

.subscribe-form input {
    flex: 1;
    border: none;
    outline: none;

    background: transparent;
    color: #fff;

    padding: 15px;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.subscribe-form button {
    width: 55px;
    height: 55px;

    border: none;
    cursor: pointer;

    background: var(--primary);
    color: #fff;

    font-size: 1.2rem;
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);

    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom span {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
}

@media(max-width:768px) {

    .footer {
        padding: 50px 5% 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.border {
    border: 1px solid black;
}

.container {
    max-width: 1400px;
    margin: auto;
}

/* ==========================================================
   RESPONSIVE MOBILE STYLES (320px–768px)
   ========================================================== */

/* Global image & scroll prevention rules */
img {
    max-width: 100%;
    height: auto;
}

body, html {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    nav {
        padding: 0 5%;
        height: 70px;
    }
    
    nav ul {
        top: 70px;
        height: calc(100vh - 70px);
        gap: 16px;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }

    .logo span {
        font-size: 0.95rem;
        margin-right: 0;
    }
    
    nav ul li a,
    nav ul li {
        font-size: 16px; /* larger text on mobile for touch compatibility */
    }

    /* Services Section Mobile Overrides */
    .services {
        padding: 60px 5%;
    }
    
    .services-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 45px;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
        max-width: 100%;
    }
    
    .section-description {
        margin-top: 0;
        max-width: 100%;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .service-card.large {
        grid-row: span 1;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .tech-stack {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 24px;
    }
    
    /* Testimonials & FAQ Section Mobile Overrides */
    .testimonial-faq {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 5%;
    }
    
    .testimonial-side h2,
    .faq-side h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .quote-mark {
        top: 10px;
        right: 20px;
        font-size: 4rem;
    }
}
.no-margin{
    margin: 0;
}