/*==================================================
                ADVANSHA
         Premium Office Space Website
====================================================*/

/*==============================
        GOOGLE FONT
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/*==============================
        ROOT VARIABLES
===============================*/

:root{

    --primary:#0B3D91;
    --secondary:#27AE60;
    --accent:#00C8FF;

    --dark:#08131F;
    --white:#FFFFFF;
    --light:#F8FAFC;
    --text:#6B7280;

    --radius:18px;

    --transition:.35s ease;

    --shadow-sm:0 10px 25px rgba(0,0,0,.08);
    --shadow-md:0 20px 40px rgba(0,0,0,.12);
    --shadow-lg:0 30px 70px rgba(0,0,0,.18);

}

/*==============================
            RESET
===============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--white);
    color:#222;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}

section{

    padding:110px 0;

}

h1,
h2,
h3,
h4{

    font-family:'Poppins',sans-serif;
    color:var(--dark);

}

.section-heading{

    text-align:center;
    max-width:850px;
    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:48px;

    margin-bottom:20px;

}

.section-heading p{

    color:var(--text);

    font-size:17px;

}

/*==============================
            BUTTONS
===============================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    backdrop-filter:blur(10px);

}

.btn-outline:hover{

    background:#fff;

    color:var(--dark);

}

/*==============================
            HERO
===============================*/

.hero{

    position:relative;

    min-height:100vh;

    background:url("assets/hero/hero.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(6,20,36,.78),
        rgba(6,20,36,.82)
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-logo{

    width:260px;

    margin-bottom:60px;

}

.hero-content{

    max-width:760px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

    font-size:14px;

    letter-spacing:1px;

}

.hero-content h1{

    color:#fff;

    font-size:72px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-content p{

    color:#E5E7EB;

    font-size:18px;

    margin-bottom:45px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

0%,20%,50%,80%,100%{

transform:translate(-50%,0);

}

40%{

transform:translate(-50%,-15px);

}

60%{

transform:translate(-50%,-8px);

}

}
/*==================================================
            WHY ADVANSHA
====================================================*/

#why{

    background:#ffffff;

}

.why-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.why-content h3{

    font-size:34px;

    margin-bottom:25px;

}

.why-content>p{

    color:var(--text);

    margin-bottom:35px;

}

.why-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:40px;

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.feature-item i{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(39,174,96,.12);

    color:var(--secondary);

    flex-shrink:0;

}

.feature-item h4{

    font-size:18px;

    margin-bottom:8px;

}

.feature-item p{

    font-size:15px;

    color:var(--text);

}

.why-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.stat-card{

    background:#fff;

    padding:40px 30px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}

.stat-card h3{

    font-size:48px;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card span{

    color:var(--text);

    font-weight:500;

}

/*==================================================
        REQUIREMENT SECTION
====================================================*/

.requirement{

    background:var(--light);

}

.requirement-form{

    background:#fff;

    border-radius:24px;

    padding:50px;

    box-shadow:var(--shadow-md);

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-bottom:40px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:12px;

    font-weight:600;

    color:var(--dark);

}

.form-group input,

.form-group select,

.form-group textarea{

    width:100%;

    padding:18px;

    border:1px solid #dfe5ea;

    border-radius:14px;

    outline:none;

    font-size:16px;

    font-family:'Inter',sans-serif;

    transition:var(--transition);

    background:#fff;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(11,61,145,.08);

}

.text-center{

    text-align:center;

}

/*==================================================
        FEATURED OFFICE SPACES
====================================================*/

#officeSpaces{

    background:#ffffff;

}

.office-slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.office-card{

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.office-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.office-image{

    position:relative;

    overflow:hidden;

}

.office-image img{

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.office-card:hover .office-image img{

    transform:scale(1.08);

}

.office-type{

    position:absolute;

    top:20px;

    right:20px;

    background:var(--secondary);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.office-content{

    padding:30px;

}

.office-content h3{

    margin-bottom:15px;

}

.office-content p{

    color:var(--text);

    margin-bottom:25px;

}

.office-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

    font-size:15px;

    color:var(--text);

}

.office-info span{

    display:flex;

    align-items:center;

    gap:8px;

}

.office-info i{

    color:var(--primary);

}

/*==================================================
            LOCATIONS
====================================================*/

#locations{

    background:var(--light);

}

.location-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.location-card{

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.location-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.location-card img{

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.location-card:hover img{

    transform:scale(1.08);

}

.location-content{

    padding:28px;

}

.location-content h3{

    margin-bottom:15px;

}

.location-content p{

    color:var(--text);

    margin-bottom:20px;

}

.location-content a{

    color:var(--primary);

    font-weight:700;

}

.location-content a:hover{

    color:var(--secondary);

}

/*==================================================
                    SERVICES
====================================================*/

#services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    border:1px solid rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:var(--text);

}

/*==================================================
                OUR PROCESS
====================================================*/

#process{

    background:var(--light);

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.process-card{

    background:#fff;

    padding:40px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.process-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

}

.process-card h3{

    margin-bottom:15px;

}

.process-card p{

    color:var(--text);

}

/*==================================================
                GALLERY
====================================================*/

#gallery{

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    grid-auto-flow:dense;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}

.gallery-item.large{

    grid-row:span 2;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*==================================================
                    FAQ
====================================================*/

#faq{

    background:var(--light);

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    color:var(--dark);

    font-family:'Poppins',sans-serif;

}

.faq-question i{

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:var(--text);

}

/*==================================================
                CONTACT
====================================================*/

#contact{

    background:#ffffff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

}

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:22px;

    box-shadow:var(--shadow-md);

}

.input-group{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:25px;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

    width:100%;

    padding:18px;

    border:1px solid #d9d9d9;

    border-radius:14px;

    outline:none;

    font-size:16px;

    font-family:'Inter',sans-serif;

    transition:var(--transition);

}

.contact-form textarea{

    resize:none;

    margin-bottom:30px;

}

.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(11,61,145,.08);

}

.contact-info{

    background:linear-gradient(135deg,var(--primary),#062d6a);

    color:#fff;

    padding:45px;

    border-radius:22px;

}

.contact-info h3{

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

.contact-info>p{

    color:rgba(255,255,255,.85);

    margin-bottom:40px;

}

.info-item{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:30px;

}

.info-item i{

    width:50px;

    height:50px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

}

/*==================================================
                GOOGLE MAP
====================================================*/

#map iframe{

    width:100%;

    height:500px;

    border:0;

    display:block;

}

/*==================================================
                    FOOTER
====================================================*/

footer{

    background:#08131F;

    color:#fff;

    text-align:center;

    padding:70px 0 35px;

}

.footer-logo{

    width:220px;

    margin:0 auto 25px;

}

footer p{

    color:rgba(255,255,255,.75);

    max-width:650px;

    margin:0 auto 20px;

}

.footer-contact{

    margin:30px 0;

}

.footer-contact a{

    color:#fff;

    font-weight:600;

}

.footer-contact i{

    margin-right:8px;

    color:var(--secondary);

}

.copyright{

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.1);

    font-size:15px;

}

/*==================================================
            RESPONSIVE
====================================================*/

@media(max-width:1100px){

.hero-content h1{

font-size:58px;

}

.office-slider,
.location-grid,
.services-grid,
.process-grid{

grid-template-columns:repeat(2,1fr);

}

.why-wrapper,
.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

.hero{

text-align:center;

}

.hero-logo{

margin:0 auto 40px;

}

.hero-content{

margin:auto;

}

.hero-content h1{

font-size:42px;

}

.hero-buttons{

justify-content:center;

}

.form-grid,
.input-group,
.office-slider,
.location-grid,
.services-grid,
.process-grid,
.why-features,
.why-stats,
.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item.large{

grid-row:auto;

}

.requirement-form,
.contact-form,
.contact-info{

padding:30px;

}

.section-heading h2{

font-size:34px;

}

}

@media(max-width:500px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:16px;

}

.btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.hero-logo{

width:180px;

}

}

/*=========================================
        SCROLL REVEAL
==========================================*/

.section-heading,
.service-card,
.office-card,
.location-card,
.process-card,
.gallery-item,
.stat-card{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
        IMAGE POPUP
==========================================*/

.image-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.image-overlay img{

    width:90%;

    max-width:1100px;

    max-height:90vh;

    object-fit:contain;

}

.close-image{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

}

/*=========================================
        BACK TO TOP
==========================================*/

.top-button{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#0B3D91,#27AE60);

    color:#fff;

    cursor:pointer;

    box-shadow:0 15px 30px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.top-button.show{

    opacity:1;

    visibility:visible;

}

.top-button:hover{

    transform:translateY(-4px);

}

.form-step{

    display:none;

}

.form-step.active{

    display:block;

}

.button-group{

    display:flex;

    justify-content:space-between;

    margin-top:35px;

}

.checkbox{

    margin-top:25px;

    margin-bottom:25px;

}

.checkbox label{

    display:flex;

    align-items:flex-start;

    gap:12px;

    line-height:1.6;

}

.checkbox input{

    margin-top:5px;

}

/*==================================================
            FLOATING WHATSAPP
====================================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:100px;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    background:#25D366;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    font-size:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

    z-index:9999;

    transition:.35s ease;

}

.whatsapp-float:hover{

    transform:translateY(-5px);

    background:#20ba5a;

}

.whatsapp-float i{

    font-size:30px;

}

.whatsapp-float span{

    white-space:nowrap;

}

@media(max-width:768px){

.whatsapp-float{

right:20px;

bottom:90px;

padding:16px;

border-radius:50%;

}

.whatsapp-float span{

display:none;

}

.whatsapp-float i{

font-size:34px;

}

}

/*=================================
    MULTI STEP FORM
==================================*/

.form-step{

    display:none;

}

.form-step.active{

    display:block;

}

.button-group{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-top:30px;

}

.checkbox{

    margin:25px 0;

}

.checkbox label{

    display:flex;

    align-items:flex-start;

    gap:10px;

}

.hero-logo{

    width:220px;

    margin-bottom:35px;

}

.hero-logo img{

    width:100%;

}

.hero{

    position:relative;

    overflow:hidden;

}

.hero-watermark{

    position:absolute;

    right:5%;

    top:50%;

    transform:translateY(-50%);

    width:650px;

    opacity:.08;

    pointer-events:none;

    z-index:1;

}

.hero-watermark img{

    width:100%;

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    inset:0;

    z-index:0;

}

.hero-video video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(3,18,43,.65);

    z-index:1;

}

.hero-content{

    position:relative;

    z-index:2;

}