/* =========================================================
   GIFTING WORLD
   Modern Corporate Gifting Website
   style.css
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --primary: #07152f;
    --primary-light: #10244d;

    --accent: #d4a64a;
    --accent-light: #f3d58b;

    --white: #ffffff;
    --black: #111111;

    --text: #202638;
    --text-light: #667085;

    --bg: #ffffff;
    --bg-light: #f7f9fc;
    --bg-dark: #061126;

    --border: #e7eaf0;

    --success: #159957;

    --shadow-sm:
        0 5px 20px rgba(7, 21, 47, 0.06);

    --shadow:
        0 15px 45px rgba(7, 21, 47, 0.10);

    --shadow-lg:
        0 25px 70px rgba(7, 21, 47, 0.16);

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 26px;

    --container: 1200px;

    --transition:
        all 0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--bg);

    line-height: 1.7;

    font-size: 16px;

    overflow-x: hidden;

}

img {

    display: block;

    max-width: 100%;

    height: auto;

}

video {

    display: block;

    max-width: 100%;

}

a {

    color: inherit;

    text-decoration: none;

    transition: var(--transition);

}

button,
input,
textarea,
select {

    font: inherit;

}

button {

    cursor: pointer;

}

ul {

    list-style: none;

}

address {

    font-style: normal;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        100% - 40px,
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {

    color: var(--primary);

    line-height: 1.2;

    font-weight: 750;

    letter-spacing: -0.025em;

}

h1 {

    font-size:
        clamp(2.5rem, 5vw, 4.6rem);

}

h2 {

    font-size:
        clamp(2rem, 4vw, 3.2rem);

}

h3 {

    font-size: 1.35rem;

}

p {

    color: var(--text-light);

}

strong {

    color: inherit;

}


/* =========================================================
   TOP OFFER
========================================================= */

.top-offer {

    background:
        linear-gradient(
            90deg,
            #07152f,
            #132d5e,
            #07152f
        );

    color: var(--white);

    text-align: center;

    padding: 9px 20px;

    font-size: 14px;

    position: relative;

    z-index: 100;

}

.top-offer p {

    color: var(--white);

    margin: 0;

}

.top-offer strong {

    color: var(--accent-light);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 99;

    backdrop-filter: blur(15px);

}

.site-header .container {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.logo {

    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

}

.logo img {

    width: 180px;

    height: 50px;

    object-fit: contain;

}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 26px;

}

.site-header nav a {

    color: var(--primary);

    font-size: 14px;

    font-weight: 650;

    white-space: nowrap;

}

.site-header nav a:hover {

    color: var(--accent);

}

.site-header nav .nav-button {

    color: var(--white);

    background: var(--primary);

    padding: 11px 19px;

    border-radius: 100px;

}

.site-header nav .nav-button:hover {

    color: var(--white);

    background: var(--accent);

    transform: translateY(-2px);

}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 52px;

    padding: 13px 25px;

    border-radius: 100px;

    font-size: 15px;

    font-weight: 700;

    border: 1px solid transparent;

    transition: var(--transition);

}

.button-primary {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #18396f
        );

    box-shadow:
        0 10px 25px rgba(7, 21, 47, 0.18);

}

.button-primary:hover {

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(7, 21, 47, 0.25);

}

.button-secondary {
    color: #ffffff;
    background: #25D366;
    border-color: #25D366;
}

.button-secondary:hover {
    color: #ffffff;
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
}

/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    overflow: hidden;

    padding:
        90px 0
        100px;

    background:

        radial-gradient(
            circle at 85% 15%,
            rgba(212, 166, 74, 0.16),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #f9fbff 0%,
            #ffffff 55%,
            #f7f9fc 100%
        );

}

.hero::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: rgba(212, 166, 74, 0.06);

    right: -160px;

    bottom: -180px;

}

.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 1;

}

.hero-content {

    max-width: 700px;

}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--accent);

    font-weight: 750;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    margin-bottom: 18px;

}

.eyebrow::before {

    content: "";

    width: 30px;

    height: 2px;

    background: var(--accent);

}

.hero h1 {

    margin-bottom: 24px;

}

.hero-description {

    font-size: 18px;

    max-width: 650px;

    margin-bottom: 15px;

}

.hero-location {

    font-size: 15px;

    margin-bottom: 30px;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 30px;

}

.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 10px 24px;

}

.hero-points li {

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

}

.hero-image {

    position: relative;

}

.hero-image::before {

    content: "";

    position: absolute;

    inset: -15px;

    border-radius: 32px;

    border: 1px solid rgba(212, 166, 74, 0.25);

    transform: rotate(3deg);

}

.hero-image img {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

}


/* =========================================================
   TRUST STATS
========================================================= */

.trust-stats {

    background: var(--primary);

    padding: 25px 0;

}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}

.stat {

    text-align: center;

    padding: 15px;

    border-right:
        1px solid rgba(255, 255, 255, 0.14);

}

.stat:last-child {

    border-right: 0;

}

.stat strong {

    display: block;

    color: var(--accent-light);

    font-size: 25px;

    line-height: 1.2;

    margin-bottom: 3px;

}

.stat span {

    display: block;

    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.content-section,
.alternate-section,
.video-section,
.location-seo,
.faq-section,
.contact-section,
.clients-section {

    padding: 100px 0;

}

.alternate-section {

    background: var(--bg-light);

}

.section-heading {

    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;

}

.section-heading h2 {

    margin-bottom: 18px;

}

.section-label {

    color: var(--accent);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    margin-bottom: 10px;

}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.service-card {

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color:
        rgba(212, 166, 74, 0.45);

}

.service-card img {

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

}

.service-card h3 {

    padding:
        25px 25px 5px;

}

.service-card p {

    padding:
        0 25px 27px;

    font-size: 15px;

}


/* =========================================================
   TWO COLUMN
========================================================= */

.two-column {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 70px;

    align-items: center;

}

.two-column h2 {

    margin-bottom: 22px;

}

.two-column > div > p {

    margin-bottom: 16px;

}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px 20px;

    margin: 25px 0 30px;

}

.feature-list li {

    position: relative;

    padding-left: 26px;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

}

.feature-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 1px;

    color: var(--accent);

    font-weight: 900;

}

.two-column img {

    width: 100%;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}

.product-card {

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);

}

.product-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

    border-color:
        rgba(212, 166, 74, 0.5);

}

.product-card img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.product-card:hover img {

    transform: scale(1.04);

}

.product-card h3 {

    padding:
        20px 20px 4px;

    font-size: 19px;

}

.product-card p {

    padding:
        0 20px 22px;

    font-size: 14px;

}


/* =========================================================
   VIDEO
========================================================= */

.video-container {

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--black);

    box-shadow: var(--shadow-lg);

}

.video-container video {

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

}


/* =========================================================
   BENEFITS
========================================================= */

.benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}

.benefit-grid article {

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    transition: var(--transition);

}

.benefit-grid article:hover {

    transform: translateY(-5px);

    border-color:
        rgba(212, 166, 74, 0.5);

    box-shadow: var(--shadow-sm);

}

.benefit-grid h3 {

    margin-bottom: 10px;

    font-size: 20px;

}

.benefit-grid p {

    font-size: 14px;

}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {

    background: #fafbfe;

}

.client-list {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;

}

.client-list div {

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 15px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-sm);

    color: var(--primary);

    font-size: 15px;

    font-weight: 750;

    text-align: center;

    transition: var(--transition);

}

.client-list div:hover {

    border-color: var(--accent);

    color: var(--accent);

    transform: translateY(-3px);

}


/* =========================================================
   OFFER
========================================================= */

.offer-section {

    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #07152f,
            #122e5c
        );

}

.offer-box {

    max-width: 850px;

    margin: auto;

    text-align: center;

}

.offer-box .section-label {

    color: var(--accent-light);

}

.offer-box h2 {

    color: var(--white);

    margin-bottom: 18px;

}

.offer-box p:not(.section-label) {

    color:
        rgba(255, 255, 255, 0.78);

    max-width: 680px;

    margin:
        0 auto 28px;

}


/* =========================================================
   LOCATION SEO
========================================================= */

.location-seo {

    background: var(--white);

}

.location-seo.alternate-section {

    background: var(--bg-light);

}

.location-seo .container {

    max-width: 1000px;

}

.location-seo h2 {

    margin-bottom: 20px;

}

.location-seo p {

    margin-bottom: 17px;

}

.location-seo address {

    margin-top: 25px;

    padding: 20px 24px;

    border-left:
        4px solid var(--accent);

    background: var(--bg-light);

    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;

    color: var(--text);

}

.location-seo.alternate-section address {

    background: var(--white);

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--bg-light);

}

.faq-list {

    max-width: 900px;

    margin: auto;

}

.faq-list details {

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-sm);

    margin-bottom: 12px;

    overflow: hidden;

    transition: var(--transition);

}

.faq-list details:hover {

    border-color:
        rgba(212, 166, 74, 0.5);

}

.faq-list summary {

    cursor: pointer;

    padding: 20px 25px;

    color: var(--primary);

    font-size: 16px;

    font-weight: 700;

    list-style: none;

    position: relative;

    padding-right: 55px;

}

.faq-list summary::-webkit-details-marker {

    display: none;

}

.faq-list summary::after {

    content: "+";

    position: absolute;

    right: 22px;

    top: 50%;

    transform:
        translateY(-50%);

    color: var(--accent);

    font-size: 25px;

    font-weight: 400;

}

.faq-list details[open] summary::after {

    content: "−";

}

.faq-list details p {

    padding:
        0 25px 22px;

    font-size: 14px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--white);

}

.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 50px;

    align-items: start;

}

.contact-details {

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #112c5a
        );

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

}

.contact-details h3 {

    color: var(--white);

    font-size: 27px;

    margin-bottom: 12px;

}

.contact-details > p {

    color:
        rgba(255, 255, 255, 0.75);

    margin-bottom: 17px;

}

.contact-details strong {

    color: var(--accent-light);

}

.contact-details a:not(.button) {

    color: var(--white);

}

.contact-details a:not(.button):hover {

    color: var(--accent-light);

}

.contact-details .button {

    margin-top: 15px;

}




/* =========================================================
   FORM
========================================================= */

.quote-form {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

}

.quote-form > div:last-of-type {

    grid-column: 1 / -1;

}

.quote-form > button {

    justify-self: start;

}

.quote-form label {

    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

}

.quote-form input,
.quote-form textarea {

    width: 100%;

    border: 1px solid #dce1e9;

    border-radius: var(--radius-sm);

    background: #fff;

    color: var(--text);

    padding: 13px 15px;

    outline: none;

    transition: var(--transition);

}

.quote-form input {

    min-height: 50px;

}

.quote-form textarea {

    resize: vertical;

    min-height: 140px;

}

.quote-form input:focus,
.quote-form textarea:focus {

    border-color: var(--accent);

    box-shadow:
        0 0 0 4px rgba(212, 166, 74, 0.10);

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    background: var(--bg-dark);

    padding-top: 75px;

    color: var(--white);

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;

}

.footer-grid img {

    margin-bottom: 20px;

}

.footer-grid p {

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 14px;

    max-width: 400px;

}

.footer-grid h3 {

    color: var(--white);

    font-size: 17px;

    margin-bottom: 18px;

}

.footer-grid a {

    display: block;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 14px;

    margin-bottom: 9px;

}

.footer-grid a:hover {

    color: var(--accent-light);

    transform: translateX(3px);

}

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

}

.footer-bottom p {

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 13px;

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background: var(--accent);

    color: var(--white);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 9px;

}

::-webkit-scrollbar-track {

    background: #f1f3f6;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--accent);

}


/* =========================================================
   FOCUS ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {

    outline:
        3px solid rgba(212, 166, 74, 0.55);

    outline-offset: 3px;

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {

    .site-header nav {

        gap: 16px;

    }

    .site-header nav a {

        font-size: 13px;

    }

    .hero-grid {

        gap: 45px;

    }

    .service-grid,
    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .benefit-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .client-list {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {

        width:
            min(
                100% - 30px,
                var(--container)
            );

    }

    .top-offer {

        font-size: 12px;

        padding: 8px 12px;

    }


    /* HEADER */

    .site-header .container {

        min-height: 68px;

    }

    .logo img {

        width: 145px;

        height: auto;

    }

    .site-header nav {

        display: none;

    }


    /* HERO */

    .hero {

        padding:
            65px 0
            70px;

    }

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .hero-content {

        text-align: center;

        margin: auto;

    }

    .eyebrow {

        justify-content: center;

    }

    .hero-description {

        font-size: 16px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-points {

        justify-content: center;

    }

    .hero-image::before {

        display: none;

    }


    /* STATS */

    .trust-stats {

        padding: 18px 0;

    }

    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .stat {

        border-right: 0;

        border-bottom:
            1px solid #dbf7021f;

    }

    .stat:nth-last-child(-n + 2) {

        border-bottom: 0;

    }


    /* SECTIONS */

    .content-section,
    .alternate-section,
    .video-section,
    .location-seo,
    .faq-section,
    .contact-section,
    .clients-section {

        padding: 70px 0;

    }


    .section-heading {

        margin-bottom: 38px;

    }


    /* GRIDS */

    .service-grid,
    .product-grid,
    .benefit-grid {

        grid-template-columns: 1fr;

    }


    .two-column {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .two-column > div:first-child {

        order: 1;

    }

    .two-column > div:last-child {

        order: 2;

    }


    /* FEATURES */

    .feature-list {

        grid-template-columns: 1fr;

    }


    /* CLIENTS */

    .client-list {

        grid-template-columns:
            repeat(2, 1fr);

    }


    /* CONTACT */

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .quote-form {

        grid-template-columns: 1fr;

        padding: 25px;

    }

    .quote-form > div:last-of-type {

        grid-column: auto;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    body {

        font-size: 15px;

    }

    .container {

        width:
            min(
                100% - 24px,
                var(--container)
            );

    }

    h1 {

        font-size: 2.25rem;

    }

    h2 {

        font-size: 1.85rem;

    }

    .hero {

        padding:
            50px 0
            60px;

    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }

    .hero-buttons .button {

        width: 100%;

    }

    .hero-points {

        flex-direction: column;

        gap: 8px;

    }

    .stats-grid {

        gap: 0;

    }

    .stat {

        padding:
            13px 5px;

    }

    .stat strong {

        font-size: 20px;

    }

    .stat span {

        font-size: 11px;

    }

    .client-list {

        grid-template-columns: 1fr 1fr;

        gap: 10px;

    }

    .client-list div {

        min-height: 75px;

        font-size: 13px;

    }

    .contact-details {

        padding: 25px;

    }

    .faq-list summary {

        padding:
            17px 48px 17px 18px;

        font-size: 14px;

    }

    .faq-list details p {

        padding:
            0 18px 18px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}

/* clints */
.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientScroll 25s linear infinite;
}

.client-logo {
    width: 180px;
    height: 100px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.client-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes clientScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-slider:hover .client-track {
    animation-play-state: paused;
}



/* =====================================================
   HAPPY CLIENTS - PAN INDIA
===================================================== */

.happy-clients-section {
    padding: 70px 0;
    background: #f8f9fb;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-heading h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}


/* Slider */

.client-slider {
    width: 100%;
    overflow: hidden;
}

.client-track {
    display: flex;
    width: max-content;
    gap: 25px;

    animation: clientAutoScroll 35s linear infinite;
}


/* Pause when mouse is over */

.client-track:hover {
    animation-play-state: paused;
}


/* Client Card */

.client-card {
    width: 340px;
    flex: 0 0 340px;

    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-7px);
}


/* Client Image */

.client-card img {
    width: 100%;
    height: 230px;

    object-fit: cover;
    display: block;
}


/* Comment */

.client-comment {
    padding: 20px;
}

.stars {
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #FFD700;
}

.client-comment p {
    font-size: 15px;
    line-height: 1.6;

    color: #444;

    margin: 0 0 12px;
}

.client-comment strong {
    display: block;

    font-size: 14px;
    margin-bottom: 5px;
}

.client-comment span {
    display: block;

    font-size: 14px;
    color: #777;
}


/* Infinite Auto Scroll */

@keyframes clientAutoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Mobile */

@media (max-width: 768px) {

    .happy-clients-section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 15px;
        padding: 0 15px;
    }

    .client-track {
        gap: 16px;
        animation-duration: 28s;
    }

    .client-card {
        width: 285px;
        flex: 0 0 285px;
    }

    .client-card img {
        height: 200px;
    }

}






/* =====================================================
   GIFTING WORLD - QUOTATION SECTION
   ALL CLASSES ARE UNIQUE
   WILL NOT AFFECT OTHER WEBSITE CODE
====================================================== */

#gw-quotation.gw-quotation-section {
    width: 100%;
    padding: 70px 20px;
    overflow: hidden;
    box-sizing: border-box;
}

#gw-quotation .gw-quotation-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =====================================================
   HEADING
====================================================== */

#gw-quotation .gw-quotation-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    box-sizing: border-box;
}

#gw-quotation .gw-quotation-label {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#gw-quotation .gw-quotation-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

#gw-quotation .gw-quotation-heading p:last-child {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   CARD
====================================================== */

#gw-quotation .gw-quotation-card {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}


/* =====================================================
   FORM GRID
====================================================== */

#gw-quotation .gw-quotation-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    box-sizing: border-box;
}


/* =====================================================
   FORM GROUP
====================================================== */

#gw-quotation .gw-form-group {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

#gw-quotation .gw-full-width {
    grid-column: 1 / -1;
}


/* =====================================================
   LABEL
====================================================== */

#gw-quotation .gw-form-group label {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}


/* =====================================================
   INPUT / SELECT / TEXTAREA
====================================================== */

#gw-quotation .gw-form-group input,
#gw-quotation .gw-form-group select,
#gw-quotation .gw-form-group textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid #d8ddd9;
    border-radius: 9px;
    background: #ffffff;
    color: #222222;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

#gw-quotation .gw-form-group input,
#gw-quotation .gw-form-group select {
    height: 50px;
}

#gw-quotation .gw-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

#gw-quotation .gw-form-group input::placeholder,
#gw-quotation .gw-form-group textarea::placeholder {
    color: #888888;
}


/* =====================================================
   FOCUS
====================================================== */

#gw-quotation .gw-form-group input:focus,
#gw-quotation .gw-form-group select:focus,
#gw-quotation .gw-form-group textarea:focus {
    border-color: #1f7a4d;
    box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.10);
}


/* =====================================================
   SUBMIT BUTTON
====================================================== */

#gw-quotation .gw-submit {
    width: 100%;
    box-sizing: border-box;
}

#gw-quotation .gw-submit-button {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: 0;
    border-radius: 9px;
    background: #1f7a4d;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

#gw-quotation .gw-submit-button:hover {
    background: #165c39;
    transform: translateY(-1px);
}


/* =====================================================
   TABLET
====================================================== */

@media (max-width: 768px) {

    #gw-quotation.gw-quotation-section {
        padding: 55px 16px;
    }

    #gw-quotation .gw-quotation-heading {
        margin-bottom: 30px;
    }

    #gw-quotation .gw-quotation-heading p:last-child {
        font-size: 15px;
    }

    #gw-quotation .gw-quotation-card {
        padding: 28px 24px;
        border-radius: 15px;
    }

    #gw-quotation .gw-quotation-form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #gw-quotation .gw-form-group,
    #gw-quotation .gw-full-width {
        grid-column: 1 / -1;
    }
}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 480px) {

    #gw-quotation.gw-quotation-section {
        padding: 45px 12px;
    }

    #gw-quotation .gw-quotation-heading {
        margin-bottom: 25px;
    }

    #gw-quotation .gw-quotation-label {
        font-size: 12px;
    }

    #gw-quotation .gw-quotation-heading h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    #gw-quotation .gw-quotation-heading p:last-child {
        font-size: 14px;
        line-height: 1.6;
    }

    #gw-quotation .gw-quotation-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    #gw-quotation .gw-quotation-form {
        gap: 16px;
    }

    #gw-quotation .gw-form-group label {
        margin-bottom: 6px;
        font-size: 13px;
    }

    #gw-quotation .gw-form-group input,
    #gw-quotation .gw-form-group select {
        height: 48px;
        padding: 12px;
        font-size: 14px;
    }

    #gw-quotation .gw-form-group textarea {
        min-height: 120px;
        padding: 12px;
        font-size: 14px;
    }

    #gw-quotation .gw-submit-button {
        min-height: 50px;
        padding: 13px 15px;
        font-size: 14px;
    }
}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 360px) {

    #gw-quotation.gw-quotation-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    #gw-quotation .gw-quotation-card {
        padding: 18px 12px;
    }

    #gw-quotation .gw-quotation-heading h2 {
        font-size: 23px;
    }

    #gw-quotation .gw-quotation-heading p:last-child {
        font-size: 13px;
    }
}