/* =========================================
   GOOGLE FONTS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #C6A16E;
    --light-color: #F8F5EF;
    --dark-color: #0D0D0D;
    --beige-color: #ECE4D8;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: #111;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1400px, 92%);
    margin: auto;
}


/* =========================================
   HOVER UTILITIES
========================================= */

.zoom-img {
    overflow: hidden;
}

.zoom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.zoom-img:hover img {
    transform: scale(1.08);
}

.hover-lift {
    transition: 0.45s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: 0.7s ease;
}

.hover-zoom:hover img {
    transform: scale(1.06);
}

.hover-border {
    transition: 0.4s ease;
}

.hover-border:hover {
    border-color: rgba(196, 107, 45, 0.5);
}

.hover-shadow {
    transition: 0.4s ease;
}

.hover-shadow:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* seo 00 */
.seo-heading{
    position:absolute;
    left:-9999px;
}


/* =========================================
   LOADER
========================================= */

.loader {
    position: fixed;
    inset: 0;
    background: var(--dark-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    width: 280px;
    opacity: 0;
    animation: loaderFadeIn 0.8s ease 0.3s forwards;
}

.loader-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    animation: loaderLine 1s ease 0.8s forwards;
}

.loader-text {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    font-size: 30px;
    opacity: 0;
    animation: loaderFadeIn 0.8s ease 1.4s forwards;
}

@keyframes loaderFadeIn {
    to { opacity: 1; }
}

@keyframes loaderLine {
    to { width: 200px; }
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    background: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    transition: 0.5s ease;
    padding: 0 30px;
}

.navbar.scrolled {
    background: #fff;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 90px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo h1,
.logo p {
    color: #0C0C0C;
}

.logo h1 {
    font-size: 22px;
    line-height: 1;
}

.logo p {
    font-size: 13px;
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 40px;
    color: #0C0C0C;
}

nav a {
    position: relative;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    color: #0C0C0C;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    transition: 0.4s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.solid-btn,
.glass-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s ease;
    font-size: 12px;
    letter-spacing: 2px;
}

.solid-btn {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.solid-btn:hover {
    transform: translateY(-3px);
}

.glass-btn {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 13px;
}


/* =========================================
   SCROLL LINE
========================================= */

.scroll-line {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 999;
}

.scroll-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.1s linear;
}


/* =========================================
   HERO
========================================= */

.hero {
    height: 100vh;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1);
    transition: transform 7s ease;
}


.swiper-slide-active img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 38%,
        rgba(0, 0, 0, 0.22) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 850px;
    color: #fff;
    width: calc(100% - 160px);
    opacity: 0;
    transform: translateY(40px) translateX(-20px);
    transition: 4s ease;
}

.swiper-slide-active .hero-content {
    opacity: 5;
    transform: translateY(-25%) translateX(0);
}

.hero-subtitle {
    letter-spacing: 6px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 25px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 95px);
    line-height: 0.95;
    margin-bottom: 35px;
    color: var(--light-color);
    font-weight: 600;
}

.hero-content span {
    color: var(--primary-color);
}

.hero-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* SWIPER BUTTONS */

.swiper-button-next,
.swiper-button-prev {
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: blur(10%) !important;
    color: var(--primary-color) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    top: auto !important;
    bottom: 300px !important;
    transform: none !important;
}

.swiper-button-prev {
    left: auto !important;
    right: 250px !important;
}

.swiper-button-next {
    right: 70px !important;
    left: auto !important;
}

.swiper-button-prev::after {
    content: '← PREV' !important;
    font-size: 25px !important;
    font-family: inherit !important;
    letter-spacing: 3px !important;
}

.swiper-button-next::after {
    content: 'NEXT →' !important;
    font-size: 25px !important;
    font-family: inherit !important;
    letter-spacing: 3px !important;
}


/* =========================================
   STATS
========================================= */

.stats-section {
    background: #fff;
    color: #fff;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box,
.stat-box-fixed,
.stat-box-fixed1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box h2,
.stat-box-fixed h2 {
    font-size: clamp(42px, 6vw, 90px);
    color: #b48f5b;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: 600;
}

.stat-box h2::after {
    content: "+";
    font-size: 40px;
    margin-left: 5px;
    display: inline-block;
}

.stat-box p,
.stat-box-fixed p,
.stat-box-fixed1 p {
    letter-spacing: 3px;
    color: var(--dark-color);
    font-size: 13px;
    line-height: 1.6;
}

.stat-box-fixed1 h3 {
    font-size: clamp(50px, 6vw, 40px);
    color: #b48f5b;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: 600;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    padding: 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-left {
    background: #F7F3EC;
    border-radius: 30px;
    height: 500px;
}

.about-left p {
    padding-right: 30px;
}

.about-right img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 28px;
}

.section-tag {
    letter-spacing: 5px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 13px;
    text-transform: uppercase;
}

.about-left h2 {
    font-size: clamp(20px, 5vw, 35px);
    line-height: 1.15;
    position: relative;
    display: inline-block;
    padding-left: 30px;
    padding-top: 20px;
}

.about-left .section-tag {
    margin: 0;
}

.about-left h4 {
    padding-left: 30px;
    padding-top: 20px;
}

.about-left p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    padding-left: 30px;
    padding-top: 20px;
}

.about-left h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 4px;
    background: var(--primary-color);
    transition: 0.4s ease;
}

.about-left h2:hover::after {
    width: 100%;
}

.learn-more {
    margin-top: 25px;
    margin-left: 30px;
    margin-bottom: 25px;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    padding: 40px 80px;
    background-color: #fff;
    color: #fff;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.services-left {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.services-left h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.services-left h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    transition: 0.4s ease;
}

.services-left h2:hover::after {
    width: 100%;
}

.services-text {
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: #F7F3EC;
    transition: 0.45s ease;
    overflow: hidden;
}

.service-card span {
    align-items: normal;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.04), transparent);
    opacity: 0;
    transition: 0.45s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 161, 110, 0.35);
    background: rgba(255, 255, 255, 0.03);
}

.service-number {
    font-size: 70px;
    font-family: 'Cormorant Garamond', serif;
    color: black;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #0C0C0C;
}

.service-content p {
    color: #555;
    line-height: 1.8;
    max-width: 500px;
}

.service-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 22px;
    transition: 0.4s ease;
    color: #0C0C0C;
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
    background: var(--primary-color);
    color: #111;
}


/* =========================================
   PROJECTS
========================================= */

.projects-section {
    padding: 40px 80px;
}

.section-tag {
    font-size: 30px;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(40px, 5vw, 70px);
    max-width: 900px;
    line-height: 1.15;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.large-card { height: 850px; }
.small-card { height: 400px; }

.text-card {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    padding-top: 50px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15));
}

.project-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: #fff;
}

.project-content p {
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.75);
}

.project-content h3 {
    font-size: 42px;
    max-width: 350px;
    line-height: 1.1;
}

.info-card {
    background: #F7F3EC;
    padding: 60px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card h3 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.info-card p {
    line-height: 1.8;
    color: #555;
}

.project-sec-p {
    background: #F7F3EC;
    padding: 30px;
    border-radius: 40px;
}


/* =========================================
   INSTAGRAM
========================================= */

.instagram-section {
    padding: 40px 80px;
    background: #F5F1EA;
    position: relative;
    overflow: hidden;
}

.instagram-section h2 {
    font-size: clamp(40px, 5vw, 70px);
    margin-bottom: 60px;
}

.instagram-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(196, 107, 45, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #0C0C0C;
    color: #fff;
    padding: 20px 80px 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-tag {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    letter-spacing: 5px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 25px;
    gap: 20px;
}

.footer-text {
    padding-bottom: 5px;
}

.footer-tag img {
    width: 100px;
}

.footer-tag p:last-child {
    font-size: 13px;
    margin-top: 5px;
}

.footer-brand h2 {
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--light-color);
}

.footer-cta {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 22px;
    transition: 0.4s ease;
}

.footer-cta:hover {
    transform: translateX(6px);
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-middle {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.footer-about p {
    max-width: 420px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-size: 27px;
    color: #fff;
}

.footer-column a,
.footer-column p {
    display: block;
    margin-bottom: 18px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column:nth-of-type(2) {
    width: 300px;
}

.footer-bottom {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}


/* =========================================
   RESPONSIVE — min-width 1100px
   (desktop only rules)
========================================= */

@media(min-width: 1100px) {
    .nav-buttons .glass-btn {
        display: none;
    }

    .nav-buttons a {
        display: none;
    }
}


/* =========================================
   RESPONSIVE — max-width 1100px (tablet)
========================================= */

@media(max-width: 1100px) {

    /* NAV */
    nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: #0f0f0f;
        flex-direction: column;
        gap: 0;
        padding-top: 100px;
        padding-bottom: 40px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.5, 1);
    }

    nav.active {
        transform: translateY(0);
    }

    /* STATS */
    .stats-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-box h2 {
        font-size: 25px;
    }

    .stat-box h2::after {
        font-size: 16px;
    }

    .stat-box-fixed h2 {
        font-size: 25px;
    }

    .stat-box-fixed1 h3 {
        font-size: 18px;
        padding-top: 10px;
    }

    .stat-box-fixed1 h2 {
        font-size: 18px;
    }

    .stat-box p,
    .stat-box-fixed p,
    .stat-box-fixed1 p {
        font-size: 10px;
    }

    /* HERO */
    .hero-content {
        left: 50px;
    }

    /* ABOUT */
    .about-section {
        grid-template-columns: 1fr;
        padding: 100px 50px;
    }

    /* SERVICES */
    .services-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-left {
        position: relative;
        top: 0;
    }

    /* PROJECTS */
    .project-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        height: 650px;
    }

    .projects-section,
    .instagram-section,
    footer {
        padding: 100px 50px;
    }

    /* FOOTER */
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-tag img {
        align-items: normal;
    }
}


/* =========================================
   RESPONSIVE — max-width 768px (mobile)
========================================= */

@media(max-width: 768px) {

    /* NAVBAR */
    .navbar {
        height: 65px;
        padding: 0 10px;
    }

    .scroll-line {
        top: 65px;
    }

    .logo {
        gap: 6px;
    }

    .logo-text {
        display: none;
    }

    .logo img {
        width: 75px;
    }

    nav {
        display: flex;
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: auto;
        background: #F7F3EC;
        color: black;
        flex-direction: column;
        gap: 0;
        padding-top: 50px;
        padding-bottom: 40px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.5, 1);
    }

    nav.active {
        transform: translateY(0);
    }

    nav a {
        width: 100%;
        padding: 20px 30px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--primary-color);
    }

    nav a::after {
        display: none;
    }

    .solid-btn,
    .glass-btn {
        padding: 8px 12px;
        font-size: 10px;
    }

    .glass-btn {
        display: block;
        color: white;
        background-color: var(--primary-color);
    }

    /* HERO */
    .hero-content {
        left: 25px;
        right: 25px;
    }

    .hero-subtitle {
        letter-spacing: 4px;
        font-size: 12px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 60px !important;
        height: 45px !important;
    }

    .swiper-button-prev {
        right: 10px !important;
        bottom: 120px !important;
    }

    .swiper-button-next {
        right: 10px !important;
        bottom: 80px !important;
    }

    .swiper-button-prev::after {
        content: '⋘' !important;
        font-size: 45px !important;
    }

    .swiper-button-next::after {
        content: '⋙' !important;
        font-size: 45px !important;
    }

    /* STATS */
    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 25px;
    }

    /* ABOUT */
    .about-section {
        padding: 40px 25px;
        gap: 20px;
    }

    .about-left{
        height: auto;
    }

    .about-right img {
        height: 450px;
    }

    /* SERVICES */
    .services-section {
        padding: 40px 25px;
    }

    .services-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .service-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
        border-radius: 20px;
    }

    .service-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .service-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .service-number {
        font-size: 32px;
    }

    .service-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* PROJECTS */
    .projects-section {
        padding: 40px 25px;
    }

    .project-content {
        left: 25px;
        bottom: 25px;
    }

    .project-content h3 {
        font-size: 30px;
    }

    .large-card {
        height: 550px;
    }

    .small-card {
        height: 320px;
    }

    .info-card {
        padding: 40px 30px;
    }

    .info-card h3 {
        font-size: 30px;
    }

    /* INSTAGRAM */
    .instagram-section {
        padding: 40px 25px;
    }

    /* FOOTER */
    .footer {
        padding: 40px 25px 40px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-middle {
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand h2 {
        font-size: 48px;
    }
}


/* =========================================
   RESPONSIVE — max-width 480px (small phones)
========================================= */

@media(max-width: 480px) {

    /* BUTTONS */
    .solid-btn {
        width: 100px;
    }

    /* NAV */
    nav {
        display: flex;
    }

    /* HERO */
    .hero-content h1 {
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-text {
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .hero-buttons .solid-btn {
        width: 140px;
    }

    .swiper-button-prev {
        bottom: 250px !important;
    }

    .swiper-button-next {
        bottom: 210px !important;
    }

    /* SERVICES */
    .services-section {
        gap: 25px;
    }

    .services-text{
        margin-bottom:15px ;
    }

    .services-left .section-tag {
        font-size: 16px;
    }

    .services-left button{
        width: auto;
    }

    .services-left h2 {
        font-size: 20px;
    }

    .services-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content p {
        display: none;
    }

    /* ABOUT */
    .about-section{
        padding-top:0 ;
        padding-bottom: 0;
    }
    .about-right {
        display: none;
    }

    .about-left .section-tag{
        letter-spacing: normal;
        font-size: 25px;
    }

    .service-card span{
        display: none;
    }

    /* PROJECTS */
    .projects-section {
        padding: 0 15px;
    }

    .projects-section .section-tag {
        font-size: 16px;
    }

    .large-card {
        height: 350px;
    }

    .small-card {
        height: 220px;
    }

    .project-content {
        left: 15px;
        bottom: 15px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .project-content p {
        font-size: 10px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .info-card p {
        font-size: 13px;
    }

    .section-heading{
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .text-card {
        font-size: 16px;
        padding-top: 20px;
        display: none;
    }

    .project-sec-p {
        padding: 20px;
        border-radius: 20px;
    }

    /* instagram  */
    .instagram-section{
        margin-top: 20px;
    }

    /* FOOTER */
    .footer-brand h2 {
        font-size: 25px;
    }

    .footer-brand p {
        font-size: 16px;
    }

    .section-heading h2,
    .instagram-section h2,
    .about-left h2 {
        line-height: 1.3;
    }
}


/* =========================================
   RESPONSIVE — max-width 391px (very small)
========================================= */

@media(max-width: 391px) {

    /* NAV */
    nav {
        display: flex;
    }

    /* STATS */
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .stat-box h2 {
        font-size: 20px;
    }

    .stat-box h2::after {
        font-size: 16px;
    }

    .stat-box-fixed h2 {
        font-size: 20px;
    }

    .stat-box-fixed1 h3 {
        font-size: 10px;
        padding-top: 10px;
    }

    .stat-box-fixed1 h2 {
        font-size: 10px;
    }

    .stat-box p,
    .stat-box-fixed p,
    .stat-box-fixed1 p {
        font-size: 7px;
    }

    /* ABOUT */
    .learn-more {
        margin-left: 10px;
    }

    .about-left .section-tag{
        font-size: 16px;
    }

    .about-left button{
        width: 120px;
    }

    .about-left .solid-btn {
        margin: 0;
        margin-left: 10px;
    }

    .about-right {
        display: none;
    }

    .about-section {
        padding-top: 0;
    }

    /* SERVICES */
    .services-text {
        display: none;
    }

    .services-left button{
        width: 145px;
    }
}