/* =========================================
   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;
}

/* animation class for img  */
.zoom-img{

    overflow:hidden;
}

/* PREMIUM HOVER */

.hover-lift{

    transition:0.45s ease;
}

.hover-lift:hover{

    transform:translateY(-8px);
}

/* IMAGE ZOOM */

.hover-zoom{

    overflow:hidden;
}

.hover-zoom img{

    transition:0.7s ease;
}

.hover-zoom:hover img{

    transform:scale(1.06);
}

/* BORDER GLOW */

.hover-border{

    transition:0.4s ease;
}

.hover-border:hover{

    border-color:rgba(196,107,45,0.5);
}

/* SHADOW */

.hover-shadow{

    transition:0.4s ease;
}

.hover-shadow:hover{

    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.zoom-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 1.2s ease;
}

.zoom-img:hover img{

    transform:scale(1.08);
}

/* The global trigger class */
.hover-underline {
    position: relative; /* Essential: keeps the absolute line locked to this text */
    display: inline-block; /* Keeps the line the same width as the text, not the whole screen */
}

/* The actual line (initially hidden) */
.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.4s ease; /* Explicitly targeting width is slightly better for performance */
}

/* The hover effect */
.hover-underline:hover::after {
    width: 100%;
}


/* 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: rgba(15, 15, 15, 0.12); */
    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: rgba(255, 255, 255, 0.05); */
    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);
}

/* .navbar.scrolled nav a,
.navbar.scrolled .logo h1,
.navbar.scrolled .logo p {

    color: var(--primary-color);
} */

.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;
}



.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);
}

.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-content{

    opacity:0;

    transform:
    translateY(40px)
    translateX(-20px);

    transition:4s ease;
}

.swiper-slide-active .hero-content{

    opacity:5;

    transform:
    translateY(-25%)
    translateX(0);
}

.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-slide img{

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1);

    transition:transform 7s ease;
}

.swiper-slide-active img{

    transform:scale(1.08);
}

.swiper-button-next,
.swiper-button-prev {
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    /* border: 1px solid rgba(255, 255, 255, 0.12)!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;
    right: 60px !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;
    /* color:#D7B17D; */

    margin-bottom: 15px;

    line-height: 1;

    font-weight: 600;
}

.stat-box h2::after {

    content: "+";

    font-size: 40px;

    margin-left: 5px;

    display: inline-block;

    /* transform: translateY(-18px); */
}

.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;

    /* align-items:center; */

    /* background: #F7F3EC; */
}

.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;

    /* margin-bottom: 30px; */

    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 SECTION
========================================= */

.services-section {

    padding: 40px 80px;

    /* background: #0D0D0D; */
    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: rgba(255, 255, 255, 0.7); */
    color: #555;

    line-height: 1.9;

    margin-bottom: 40px;

    max-width: 500px;
}

/* RIGHT SIDE */

.services-right {

    display: flex;

    flex-direction: column;

    gap: 15px;
}

/* CARD */

.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: rgba(255, 255, 255, 0.02); */
    background: #F7F3EC;

    transition: 0.45s ease;

    overflow: hidden;

    /* width: 450px; */
}

.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);
}

/* NUMBER */

.service-number {

    font-size: 70px;

    font-family: 'Cormorant Garamond', serif;

    color: black;

    /* min-width: 90px; */
}

/* CONTENT */

.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;
}

/* ARROW */

.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;


    
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px) {

    .services-section {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .services-left {

        position: relative;

        top: 0;
    }
}

@media(max-width:768px) {

    .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;

        /* padding-right: 45px; */
    }

    .service-content p {
    font-size: 12px;
    line-height: 1.5;

    /* display: none; */
}

    .service-number {

        font-size: 32px;
    }

    .service-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;

    /* display: none; */
}
}







/* =========================================
   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;
}

/* GRID */

.project-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}

/* CARD */

.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);
}

/* SIZES */

.large-card {
    height: 850px;
}

.small-card {
    height: 400px;
}

.text-card {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    padding-top: 50px;
}

/* OVERLAY */

.project-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.15));
}

/* CONTENT */

.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 */

.info-card {

    /* background: #F3EEE5; */
    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;
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .project-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        height: 650px;
    }
}

@media(max-width:768px) {

    .projects-section {
        padding: 90px 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 80px;

    background: #F5F1EA;
}

.instagram-section h2 {

    font-size: clamp(40px, 5vw, 70px);

    margin-bottom: 60px;
}

.instagram-section{

    position:relative;

    overflow:hidden;
}

.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;
}

/* TOP */

.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;
    /* display: flex; */


    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);
}

/* DIVIDER */

.footer-line {

    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}

/* MIDDLE */

.footer-middle {

    padding: 10px 0;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    /* gap: 100px; */
}


.footer-about p {

    max-width: 420px;

    line-height: 2;

    color: rgba(255, 255, 255, 0.65);

    font-size: 16px;
}

/* LINKS */

.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;
}

/* BOTTOM */

.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;
}

.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
========================================= */

@media(max-width:1100px) {

    .footer-middle {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .footer-tag img {
        align-items: normal;
    }
}

@media(max-width:768px) {

    .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
========================================= */

@media(max-width:1100px) {

    /* nav{
        display: none;
    } */

    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);
    }

    .about-section,
    .project-grid {
        grid-template-columns: 1fr;
    }

    /* .logo-text {
        display: none;
    } */

    .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-content {
        left: 50px;
    }

    .about-section,
    .projects-section,
    .instagram-section,
    footer {
        padding: 100px 50px;
    }
}

@media(max-width:768px) {

    .navbar {
        height: 65px;
        padding: 0 10px;
    }

    .scroll-line {
        top: 65px;
    }

    .logo {
        gap: 6px;
    }

    .logo-text{
        display: none;
    }

    .logo img {
        width: 75px;
    }

    /* .logo-text {
        display: none;
    } */

    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; /* Removes the desktop hover line effect on mobile */
    }

    /* .nav-buttons {
        padding: 25px 30px 0 30px;
        width: 100%;
    } */

    .solid-btn,
    .glass-btn {
        padding: 8px 12px;
        font-size: 10px;
    }

    .glass-btn{
        display:block;
        color: white;
        background-color: var(--primary-color);
    }

    .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: 45px !important;
        height: 45px !important;
    }

    /* .swiper-button-next {
        right: 20px !important;
    }

    .swiper-button-prev {
        right: 75px !important;
    } */

    .swiper-button-prev {
        right: 40px !important;
        bottom: 120px !important;
    }

    .swiper-button-next {
        right: 40px !important;
        bottom: 80px !important;
    }

    .swiper-button-prev::after {
        content: 'PREV' !important;
    }

    .swiper-button-next::after {
        content: 'NEXT' !important;
    }


    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 25px;
    }

    .about-section,
    .projects-section,
    .instagram-section,
    .footer {
        padding: 40px 25px;
    }

    .about-section{
        gap: 20px;
    }

    .about-right img {
        height: 450px;
    }

    .services-section{
        padding: 40px 25px;
    }

    .project-content {
        left: 25px;
        bottom: 25px;
    }

    .project-content h3 {
        font-size: 30px;
    }

    .large-card {
        height: 550px;
    }

    footer {
        flex-direction: column;
    }

    .footer-right {
        gap: 50px;
    }
}

@media(max-width:480px) {

    .solid-btn {
        width: 100px;
    }

    nav{
        display: flex;
    }

    .hero-content h1 {
        line-height: 1.1;
    }

    .hero-content h1{
        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;
}

    .stat-box-fixed1 ul li {
        font-size: 13px;
    }

    .section-heading h2,
    .instagram-section h2,
    .about-left h2 {
        line-height: 1.3;
    }

    .services-section{
        gap: 15px;
    }

    .services-left .section-tag{
        font-size: 16px;
    }

    .services-left h2{
        font-size: 20px;
    }

    .services-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content p {
        display: none; /* hide description on tiny screens, keeps cards clean */
    }

    .about-right{
        display: none;
    }

    /* project section  */
    .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 h2 {
        font-size: 20px;
    }

    .text-card {
        font-size: 16px;
        padding-top: 20px;
    }

    .project-sec-p {
        padding: 20px;
        border-radius: 20px;
    }

    .text-card{
        display: none;
    }

    
    
    /* footer  */
    .footer-right {
        flex-direction: column;
    }

    .footer-brand h2{
        font-size: 25px;
    }

    .footer-brand p{
        font-size: 16px;
    }
}

@media(max-width:391px) {
    nav {
        display: flex;
    }

    .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 section  */
    .learn-more{
        margin-left: 10px;
    }

    .about-left .solid-btn{
        margin: 0;
        margin-left: 10px;
    }

    .about-right{
        display: none;
    }

    /* service section  */
    .services-text{
        display: none;
    }

    .about-section{
        padding-top: 0;
    }
}

@media(min-width: 1100px){
    .nav-buttons .glass-btn{
        display: none;
    }
}
