/*==========================================
        GOOGLE FONTS
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==========================================
            ROOT VARIABLES
==========================================*/

:root{
    --primary:#7B1E1E;
    --secondary:#D4AF37;
    --light:#FFF8F3;
    --white:#ffffff;
    --dark:#231815;
    --text:#555;
    --border:rgba(255,255,255,.25);

    --shadow:0 10px 35px rgba(0,0,0,.12);

    --transition:.4s ease;
}

/*==========================================
            RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

section{
    padding:100px 0;
}

/*==========================================
            SCROLLBAR
==========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f3ece7;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--primary),var(--secondary));
    border-radius:20px;
}

/*==========================================
            TOP BAR
==========================================*/

.top-bar{
    background:#32150d;
    color:#fff;
    font-size:14px;
    padding:12px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left,
.top-right{
    display:flex;
    gap:25px;
    align-items:center;
}

.top-left a,
.top-right span{
    color:#fff;
    transition:.3s;
}

.top-left a:hover{
    color:var(--secondary);
}

.top-left i,
.top-right i{
    margin-right:8px;
    color:var(--secondary);
}

/*==========================================
            HEADER
==========================================*/

header{
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .4s ease;
    background: transparent;
}

header.sticky{
    top: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

/*==========================================
            LOGO
==========================================*/

.logo h2{
    font-size:34px;
    font-family:'Playfair Display',serif;
    color:white;
    font-weight:700;
    transition:.3s;
}

.logo span{
    color:var(--secondary);
}

header.sticky .logo h2{
    color:var(--primary);
}

/*==========================================
            NAVBAR
==========================================*/

.nav-links{
    display:flex;
    gap:38px;
}

.nav-links li a{
    color:white;
    font-weight:500;
    position:relative;
    transition:.4s;
}

header.sticky .nav-links li a{
    color:var(--light);
}

.nav-links li a::after{
    content:'';
    position:absolute;
    width:0;
    left:0;
    bottom:-8px;
    height:2px;
    background:var(--secondary);
    transition:.4s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after{
    width:100%;
}

.nav-links li a:hover{
    color:var(--secondary);
}

/*==========================================
            NAV BUTTONS
==========================================*/

.nav-btns{
    display:flex;
    align-items:center;
    gap:15px;
}

.call-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:white;
    color:var(--primary);
    transition:.4s;
}

.call-btn:hover{
    background:var(--secondary);
    color:white;
    transform:rotate(15deg);
}

.book-btn{
    padding:14px 34px;
    border-radius:50px;
    background:linear-gradient(45deg,var(--primary),#9d2d2d);
    color:white;
    font-weight:600;
    transition:.4s;
    box-shadow:0 15px 30px rgba(123,30,30,.35);
}

.book-btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(45deg,#D4AF37,#B78A12);
}

/*=================  MENU BUTTON  ===============*/
.menu-btn{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

header.sticky .menu-btn{
    color:var(--primary);
}

/*====================SECTION TITLES====================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--secondary);
    text-transform:uppercase;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:10px;
    font-size:45px;
    font-family:'Playfair Display',serif;
    color:var(--primary);
}

.section-title p{
    margin-top:15px;
    color:#666;
    max-width:650px;
    margin-inline:auto;
    line-height:1.8;
}

/*=====================   COMMON BUTTON  ===================*/

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    border-radius:50px;
    background:linear-gradient(45deg,var(--primary),#A52A2A);
    color:#fff;
    font-weight:600;
    transition:.4s;
    box-shadow:0 18px 40px rgba(123,30,30,.25);
}

.primary-btn:hover{
    transform:translateY(-6px);
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    border:2px solid var(--secondary);
    color:var(--secondary);
    border-radius:50px;
    transition:.4s;
}

.secondary-btn:hover{
    background:var(--secondary);
    color:white;
}

/*=========================
        HERO
==========================*/
.hero{
    position:relative;
    width:100%;
    min-height:80vh;
    padding:170px 0 100px;
    overflow:hidden;
    background:url("../images/WhatsApp\ Image\ 2026-08-04\ at\ 6.10.02\ PM\ \(2\).jpeg") no-repeat center center/cover;
    display:flex;
    align-items:center;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(22,12,8,.90) 0%,
        rgba(34,20,15,.80) 40%,
        rgba(0,0,0,.35) 100%
    );
}

.hero-overlay{
    display:none;
}

.hero-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.hero-content,
.hero-image{
    position: relative;
    z-index: 10;
}

.hero *{
    color:#fff;
}

.hero h1 span{
    color:#D4AF37;
}

.hero-content{
    color:#fff;
}

.tag{
    display:inline-block;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:12px 25px;
    border-radius:40px;
    border:1px solid rgba(255,255,255,.15);
    color:#D4AF37;
    font-size:15px;
    margin-bottom:25px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:55px;
    line-height:1.15;
    font-family:'Playfair Display',serif;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content h1 span{
    color:#D4AF37;
}

.hero-content p{
    color:#eee;
    font-size:17px;
    line-height:1.9;
    max-width:600px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/*==========================  HERO IMAGE ======================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
}

.circle-bg{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:linear-gradient(#D4AF37,#8B5E3C);
    opacity:.20;
    filter:blur(40px);
    animation:float 6s ease-in-out infinite;
}

.hero-image img{
    position:relative;
    width:100%;
    max-width:330px;
    border-radius:30px;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
    border:8px solid rgba(255,255,255,.15);
}

.MySplide{
    background-color: var(--secondary-color);
    padding: 30px 0;
}

.Feature-Tricker-Splide{
    width: 250px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.Feature-Tricker-Splide img{
    width: 10%;
}

/*========================== FLOATING CARD ===========================*/
.experience-card{
    position:absolute;
    bottom:20px;
    left:-40px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 25px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.experience-card i{
    width:55px;
    height:55px;
    background:#7B1E1E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
}

.experience-card h3{
    font-size:18px;
    color:#7B1E1E;
}

.experience-card p{
    color:#777;
    font-size:14px;
}

.floating-card{
    position:absolute;
    top:40px;
    right:-30px;
    background:#D4AF37;
    color:#fff;
    padding:16px 22px;
    border-radius:50px;
    display:flex;
    gap:12px;
    align-items:center;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.floating-card i{
    font-size:18px;
}

/*==========================
      BUTTONS
===========================*/

.primary-btn{
    background:#7B1E1E;
    color:#fff;
    padding:17px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.primary-btn:hover{
    background:#D4AF37;
    transform:translateY(-6px);
}

.secondary-btn{
    border:2px solid #D4AF37;
    color:#D4AF37;
    padding:17px 38px;
    border-radius:50px;
    transition:.4s;
}

.secondary-btn:hover{
    background:#D4AF37;
    color:#fff;
}

/*========================  FLOATING BUTTONS ===========================*/

.floating-icons{
    position:fixed;
    right:25px;
    bottom:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:99999;
}

.floating-icons a{
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    font-size:26px;
    text-decoration:none;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
    transition:.4s;
}

.whatsapp{
    background:#25D366;
    animation:pulse 2s infinite;
}

.call{
    background:#7B1E1E;
}

.floating-icons a:hover{
    transform:translateY(-8px) scale(1.08);
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/*=========================================
            ABOUT SECTION
=========================================*/

.about{
    background:#fff;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.experience-box{
    position:absolute;
    bottom:-25px;
    right:-20px;
    width:180px;
    height:180px;
    background:linear-gradient(135deg,#7B1E1E,#A52A2A);
    color:#fff;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    border:8px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.experience-box h2{
    font-size:42px;
    color:#D4AF37;
}

.experience-box span{
    font-size:15px;
    width:110px;
}

.about-content h2{
    font-size:46px;
    font-family:'Playfair Display',serif;
    margin:20px 0;
    line-height:1.3;
}

.about-content h2 span{
    color:#7B1E1E;
}

.section-subtitle{
    color:#D4AF37;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#FFF8F3;
    padding:16px;
    border-radius:12px;
    transition:.4s;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature i{
    width:40px;
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#7B1E1E;
    color:#fff;
}

.feature span{
    font-weight:500;
}

/*=========================================
            SERVICES
=========================================*/

.services{
    padding:100px 0;
    background:#FFF8F3;
    position:relative;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-image{
    width:100%;
    height:350px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:.6s;
}

.service-card:hover .service-image img{
    transform:scale(1.1);
}

.service-card h3{
    font-size:25px;
    color:#7B1E1E;
    text-align:center;
    margin:25px 20px 15px;
    font-family:'Playfair Display',serif;
}

.service-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    padding:0 22px 25px;
    text-align:center;
}

.service-btn{
    display:inline-block;
    margin:0 22px 30px;
    padding:12px 28px;
    background:#7B1E1E;
    color:#fff;
    border-radius:40px;
    transition:.4s;
}

.service-btn:hover{
    background:#D4AF37;
}

.service-card{
    position:relative;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:linear-gradient(to right,#7B1E1E,#D4AF37);
    transition:.5s;
}

.service-card:hover::before{
    width:100%;
}

/*=========================================
            GALLERY
=========================================*/
.gallery{
    background:#fff;
    padding:100px 0;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:360px;
    object-fit:cover;
    object-position:center;
    transition:.6s;
    display:block;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.15),rgba(123,30,30,.75));
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.5s;
}

.gallery-overlay i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:#7B1E1E;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    transform:scale(0);
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}

/*=========================================
            CONTACT
=========================================*/
.contact{
    background:#FFF8F3;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    margin-top:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-card{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card i{
    width:65px;
    height:65px;
    background:#7B1E1E;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:24px;
}

.contact-card h3{
    margin-bottom:8px;
    color:#7B1E1E;
}

.contact-card p,
.contact-card a{
    color:#666;
    line-height:1.8;
}

.contact-card a:hover{
    color:#D4AF37;
}

.contact-buttons{
    display:flex;
    gap:20px;
    margin-top:15px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.input-box{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    transition:.3s;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#7B1E1E;
    box-shadow:0 0 0 4px rgba(123,30,30,.1);
}

.contact-form textarea{
    resize:none;
}

/*=========================================
        WHY CHOOSE US
=========================================*/
.why-choose{
    background:#fff;
}

.choose-wrapper{
    display:grid;
    grid-template-columns:1fr 380px 1fr;
    gap:50px;
    align-items:center;
    margin-top:60px;
}

.choose-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.choose-box:hover{
    transform:translateX(12px);
}

.choose-box span{
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#7B1E1E;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
}

.choose-box h3{
    color:#7B1E1E;
    margin-bottom:10px;
}

.choose-box p{
    color:#666;
    line-height:1.8;
}

.choose-image{
    text-align:center;
}

.choose-image img{
    width:100%;
    border-radius:50%;
    border:10px solid #FFF8F3;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.counter-card{
    text-align:center;
    background:linear-gradient(135deg,#7B1E1E,#A52A2A);
    color:#fff;
    padding:35px;
    border-radius:20px;
    margin-bottom:25px;
}

.counter-card h2{
    color:#D4AF37;
    font-size:46px;
}

.counter-card p{
    margin-top:10px;
}

/*=====================================
            FOOTER
======================================*/
.footer{
    position:relative;
    background:#2B0F0F;
    color:#fff;
    overflow:hidden;
    padding-top:120px;
}

.footer-top-design{
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:15px;
}

.footer-top-design span{
    width:60px;
    height:60px;
    background:#D4AF37;
    border-radius:50%;
    opacity:.15;
    animation:float 4s infinite;
}

.footer-top-design span:nth-child(2){
    width:90px;
    height:90px;
    animation-delay:.5s;
}

.footer-top-design span:nth-child(3){
    animation-delay:1s;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1.4fr 1.3fr;
    gap:50px;
    padding-bottom:70px;
}

.footer h2{
    font-size:40px;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.footer h2 span{
    color:#D4AF37;
}

.footer p{
    color:#ddd;
    line-height:1.9;
}

.footer h3{
    margin-bottom:25px;
    color:#D4AF37;
}

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#ddd;
    transition:.4s;
}

.footer-links a:hover{
    color:#D4AF37;
    padding-left:8px;
}

.footer-contact a{
    display:block;
    color:#ddd;
    margin-top:15px;
}

.footer-contact i{
    color:#D4AF37;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:48px;
    height:48px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    transition:.4s;
}

.footer-social a:hover{
    background:#D4AF37;
    color:#2B0F0F;
    transform:translateY(-8px);
}

.footer-btn{
    display:inline-block;
    margin-top:20px;
    background:#D4AF37;
    color:#2B0F0F;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.footer-btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:22px;
    color:#bbb;
}
/*=========================================
        1024px (Laptop)
=========================================*/

@media (max-width:1024px){

    .container{
        width:92%;
    }

    .hero{
        padding:160px 0 80px;
    }

    .hero-container{
        gap:40px;
    }

    .hero-content h1{
        font-size:56px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-image img{
        max-width:380px;
    }

    .experience-card{
        left:-10px;
        bottom:15px;
    }

    .floating-card{
        right:-10px;
    }

    .nav-links{
        gap:25px;
    }

    .logo h2{
        font-size:30px;
    }

    .about-container{
        gap:50px;
    }

    .about-content h2{
        font-size:38px;
    }

    .services-container{
grid-template-columns:repeat(2,1fr);
}

.service-image{
height:350px;
}

.gallery-container{
grid-template-columns:repeat(3,1fr);
}

.gallery-item img{
height:360px;
}

.contact-container{
grid-template-columns:1fr;
}

.choose-wrapper{
grid-template-columns:1fr;
}

.choose-image{
order:-1;
max-width:400px;
margin:auto;
}

.footer-container{
grid-template-columns:repeat(2,1fr);
}
}


/*=========================================
        768px (Tablet)
=========================================*/

@media (max-width:768px){

    .top-bar{
        display:none;
    }

    header{
        top:0;
           backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    .logo h2{
        color:var(--primary);
        font-size:28px;
    }

    .menu-btn{
        display:block;
        color:var(--light) !important;
        font-size:28px;
    }

    .nav-btns{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#6f4e4e;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:.4s;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-links.active{
        max-height:300px;
        padding:20px 0;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        padding:15px;
        color:#9f9f9f;
    }

    .hero{
        padding:140px 0 70px;
    }

    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-stats{
        justify-content:center;
    }

    .hero-image{
        order:-1;
    }

    .hero-image img{
        max-width:340px;
    }

    .experience-card{
        left:0;
        bottom:0;
    }

    .floating-card{
        right:0;
    }

    .about-container{
        grid-template-columns:1fr;
    }

    .about-image{
        order:-1;
    }

    .experience-box{
        right:20px;
        bottom:-20px;
    }
.services-container{
grid-template-columns:1fr;
}

.service-image{
height:400px;
}

.gallery-container{
grid-template-columns:repeat(2,1fr);
}

.gallery-item img{
height:360px;
}

.contact-buttons{
flex-direction:column;
}

.contact-form{
padding:30px;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-social{
justify-content:center;
}
}


/*================= Mobile (480px)  ======================*/

@media (max-width:480px){
.logo h2{
    font-size: 20px;
}
    .hero{
        min-height:auto;
        padding:120px 0 70px;
    }

    .hero-container{
        display:flex;
        flex-direction:column-reverse;
        gap:40px;
        text-align:center;
    }

    .hero-content{
        width:100%;
    }

    .tag{
        font-size:12px;
        padding:10px 18px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
        margin:15px 0;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        gap:15px;
    }

    .hero-buttons a{
        width:100%;
        padding:15px;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
        margin-top:35px;
    }

    .stat-box{
        width:100%;
        min-width:100%;
        padding:18px;
    }

    .hero-image{
        width:100%;
        display:flex;
        justify-content:center;
        margin-bottom:20px;
    }

    .hero-image img{
        width:100%;
        max-width:260px;
        border-width:5px;
    }

    .circle-bg{
        width:280px;
        height:280px;
    }

    .experience-card,
    .floating-card{
        display:none;
    }

    .floating-icons{
        right:15px;
        bottom:20px;
        gap: 5px;
    }

    .floating-icons a{
        width:48px;
        height:48px;
        font-size:25px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .experience-box{
        width:120px;
        height:120px;
        right:10px;
        bottom:-10px;
    }

    .experience-box h2{
        font-size:28px;
    }

    .experience-box span{
        font-size:12px;
        width:80px;
    }
.section-title h2{
    font-size: 28px;
}
    .services{
padding:70px 0;
}

.service-image{
height:360px;
}

.service-card h3{
font-size:20px;
}

.service-card p{
font-size:14px;
padding:0 18px 22px;
}

.gallery{
padding:70px 0;
}

.gallery-container{
grid-template-columns:1fr;
gap:18px;
}

.gallery-item img{
height:360px;
}

.contact-card{
flex-direction:column;
text-align:center;
align-items:center;
}

.contact-form{
padding:20px;
}

.contact-form button{
width:100%;
}

.choose-box{
flex-direction:column;
text-align:center;
align-items:center;
}

.counter-card{
padding:25px;
}

.counter-card h2{
font-size:34px;
}

.footer{
padding-top:80px;
}

.footer h2{
font-size:30px;
}

.footer-top-design{
display:none;
}
}