/*=========================================
Google Fonts
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/*=========================================
CSS VARIABLES
=========================================*/

:root{

    --primary:#0B1E39;
    --secondary:#008afc;
    --secondary-dark:#122a4e;

    --white:#ffffff;
    --black:#121212;

    --text:#555;
    --heading:#111827;

    --bg:#F5F7FA;
    --border:#E6EAF0;

    --radius:18px;

    --shadow-sm:0 8px 25px rgba(0,0,0,.05);
    --shadow-md:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --transition:.35s ease;

}

/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;

}

.section{

    padding:80px 0;

}

.col-4 {
    width: 400px;
    text-align: center;
}

.col-4 ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}

h1,h2,h3,h4{

    font-family:'Manrope',sans-serif;
    color:var(--heading);

}

h1{

    font-size:62px;
    line-height:1.1;
    font-weight:800;

}

h2{

    font-size:46px;
    font-weight:800;
    line-height:1.2;

}

h3{

    font-size:24px;

}

p{

    font-size:18px;
    color:#30343e;

}

/*=========================================
PRELOADER
=========================================*/

.preloader{

    position:fixed;
    inset:0;
    background:#fff;
    z-index:99999;

    display:flex;
    justify-content:center;
    align-items:center;

}

.loader{

    display:flex;
    gap:8px;

}

.for_numbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 30px 36px;
    border-radius: 50px;
    background: #fff;
    color: #000;
    font-weight: 700;
    transition: var(--transition);
    /*box-shadow: 0 15px 40px rgba(255, 90, 41, .25);*/
    font-size: 25px;
}

.loader span{

    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--secondary);

    animation:loading .8s infinite alternate;

}

.loader span:nth-child(2){

    animation-delay:.2s;

}

.loader span:nth-child(3){

    animation-delay:.4s;

}

@keyframes loading{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-12px);

    }

}

/*=========================================
BUTTONS
=========================================*/

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:56px;

    padding:30px 36px;

    border-radius:50px;

    background:var(--secondary);

    color:#fff;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 15px 40px rgba(255,90,41,.25);

    font-size: 20px;


}

.btn-primary:hover{

    background:var(--secondary-dark);

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    padding:0 34px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:700;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

.btn-white{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 40px;

    border-radius:50px;

    background:#fff;

    color:var(--primary);

    font-weight:700;
    font-size:20px;

}

.btn-outline-white{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 35px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.3);

    color:#fff;

}

/*=========================================
HEADER
=========================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:22px 0;

    transition:.4s;

}

.header.sticky{

    background:#fff;

    box-shadow:var(--shadow-sm);

    padding:15px 0;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo-icon{

    width:52px;

    height:52px;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.logo-text{

    font-size:28px;

    font-weight:800;

    color:var(--primary);

    font-family:'Manrope',sans-serif;

}

.logo-text span{

    color:var(--secondary);

}

.navigation ul{

    display:flex;

    gap:40px;

}

.navigation a{

    color:#333;

    font-weight:600;

    position:relative;

}

.navigation a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.navigation a:hover::after,

.navigation .active::after{

    width:100%;

}

.mobile-toggle{

    display:none;

    font-size:26px;

    cursor:pointer;

}

/*=========================================
HERO
=========================================*/

.hero{

    padding-top:130px;

    padding-bottom:110px;

    background:linear-gradient(180deg,#f7f8fb 0%,#ffffff 100%);

    overflow:hidden;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero-tag{

    display:inline-block;

    background:#fff3ee;

    color:var(--secondary);

    padding:10px 20px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

}

.hero h1{

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    max-width:560px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.feature-item i{

    color:var(--secondary);

}

/*=========================================
HERO IMAGE
=========================================*/

.hero-image{

    position:relative;

    height:620px;

}

.hero-card{

    position:absolute;

    overflow:hidden;

    border-radius:22px;

    box-shadow:var(--shadow-lg);

    background:#fff;

}

.hero-card img{

    width:100%;

    height:100%;

    object-fit:contain;

}

.hero-card-one{

    width:310px;

    height:230px;

    left:0;

    top:0;

}

.hero-card-two{

    width:280px;

    height:380px;

    right:0;

    top:80px;

}

.hero-card-three{

    width: 550px;
    height: 400px;
    left: 70px;
    bottom: 120px;


}

.experience-box{

    position:absolute;

    right:30px;

    bottom:0;

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:var(--shadow-md);

    text-align:center;

}

.experience-box h2{

    color:var(--secondary);

    font-size:48px;

}
/*=========================================
SECTION TITLE
=========================================*/

.section-title{

    max-width:700px;
    margin:0 auto 70px;

}

.section-title.center{

    text-align:center;

}

.section-title span,
.section-subtitle{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-size:14px;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title p{

    font-size:17px;
    line-height:1.8;

}

/*=========================================
ABOUT SECTION
=========================================*/

.about{

    background:#ffffff;

}

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;

}

.about-image{

    position:relative;

}

.about-main-image{

    overflow:hidden;
    border-radius:24px;
    /* box-shadow:var(--shadow-lg); */

}

.about-main-image img{

    width:100%;
    display:block;

}

.experience-card{

    position:absolute;

    left:-30px;

    bottom:40px;

    background:var(--primary);

    color:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:var(--shadow-lg);

    width:200px;

}

.experience-card h3{

    font-size:52px;

    color:#fff;

    margin-bottom:8px;

}

.experience-card span{

    font-size:15px;

    line-height:1.5;

    display:block;

}

.quality-card{

    position:absolute;

    right:-20px;

    top:40px;

    background:#fff;

    padding:20px 24px;

    border-radius:18px;

    display:flex;

    gap:16px;

    align-items:center;

    box-shadow:var(--shadow-md);

}

.quality-card i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff2ed;

    color:var(--secondary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.quality-card h4{

    margin-bottom:4px;

}

.about-content h2{

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.about-feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#333;

}

.about-feature i{

    color:var(--secondary);

    font-size:18px;

}

/*=========================================
COMPANY STATS
=========================================*/

.company-stats{

    padding:30px 0 90px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:45px 20px;

    border:1px solid var(--border);

    transition:var(--transition);

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

    border-color:transparent;

}

.stat-box h2{

    color:var(--secondary);

    font-size:54px;

    margin-bottom:10px;

}

.stat-box p{

    font-weight:600;

    color:#444;

}

/*=========================================
SERVICES
=========================================*/

.services{

    background:var(--bg);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    padding:40px 35px;

    transition:var(--transition);

    border:1px solid var(--border);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--secondary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#fff3ee;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--secondary);

    font-size:34px;

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotate(-8deg);

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:25px;

    min-height:85px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--secondary);

    font-weight:700;

}

.service-card a i{

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(6px);

}

/*=========================================
GLOBAL ANIMATIONS
=========================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:1s;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

.scale{

    transform:scale(.9);

    opacity:0;

    transition:.8s;

}

.scale.active{

    transform:scale(1);

    opacity:1;

}

.rotate{

    transform:rotate(-5deg);

    opacity:0;

    transition:1s;

}

.rotate.active{

    transform:rotate(0);

    opacity:1;

}
/*=========================================
WHY CHOOSE US
=========================================*/

.why-us{

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    padding:40px 35px;

    border-radius:22px;

    border:1px solid var(--border);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--secondary);

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.why-icon{

    width:75px;

    height:75px;

    background:#fff3ee;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--secondary);

    font-size:30px;

    margin-bottom:25px;

    transition:.4s;

}

.why-card:hover .why-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotate(-8deg);

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    line-height:1.8;

}

/*=========================================
PROCESS SECTION
=========================================*/

.process{

    background:var(--bg);

}

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    align-items:center;

    gap:20px;

    margin-top:70px;

}

.process-item{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.process-item:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.process-number{

    width:70px;

    height:70px;

    background:var(--secondary);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    font-size:24px;

    font-weight:700;

    font-family:'Manrope',sans-serif;

}

.process-content h3{

    margin-bottom:15px;

    font-size:20px;

}

.process-content p{

    font-size:15px;

}

.process-arrow{

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--secondary);

    font-size:30px;

}

/*=========================================
CTA SECTION
=========================================*/

.cta-section{

    padding:100px 0;

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#0B1E39,#16325d);

    border-radius:30px;

    padding:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-150px;

    top:-150px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,90,41,.20);

    left:-70px;

    bottom:-70px;

}

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content span{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    display:inline-block;

    margin-bottom:20px;

}

.cta-content h2{

    color:#fff;

    font-size:48px;

    line-height:1.2;

    margin-bottom:20px;

}

.cta-content p{

    color:rgba(255,255,255,.75);

    max-width:520px;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:18px;

    position:relative;

    z-index:2;

}

.btn-white{

    min-width:270px;

}

.btn-white:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-5px);

}

.btn-outline-white:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================================
HOVER EFFECTS
=========================================*/

.service-card,
.why-card,
.process-item,
.stat-box{

    will-change:transform;

}

.service-card:hover,

.why-card:hover,

.process-item:hover,

.stat-box:hover{

    transition:.35s ease;

}

/*=========================================
BACKGROUND SHAPES
=========================================*/

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(255,90,41,.05);

    top:-250px;

    right:-200px;

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(11,30,57,.05);

    bottom:-120px;

    left:-120px;

    z-index:0;

}

.hero-wrapper{

    position:relative;

    z-index:2;

}

/*=========================================
IMAGE HOVER
=========================================*/

.hero-card,

.about-main-image{

    overflow:hidden;

}

.hero-card img,

.about-main-image img{

    transition:transform .6s ease;

}

.hero-card:hover img,

.about-main-image:hover img{

    transform:scale(1.08);

}

/*=========================================
FLOATING ANIMATION
=========================================*/

.hero-card-one{

    animation:floatOne 5s ease-in-out infinite;

}

.hero-card-two{

    animation:floatTwo 6s ease-in-out infinite;

}

.hero-card-three{

    animation:floatThree 7s ease-in-out infinite;

}

@keyframes floatOne{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

@keyframes floatTwo{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(18px);

    }

}

@keyframes floatThree{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}
/*==================================================
FAQ SECTION
==================================================*/

.faq{

    background:var(--bg);

}

.faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.faq-item:hover{

    box-shadow:var(--shadow-md);

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 35px;

    cursor:pointer;

}

.faq-question h3{

    font-size:20px;

    font-weight:700;

}

.faq-question i{

    color:var(--secondary);

    font-size:20px;

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 35px 30px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

/*==================================================
CONTACT
==================================================*/

.contact{

    background:#fff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.contact-info h2{

    margin:20px 0;

}

.info-box{

    display:flex;

    gap:20px;

    margin-top:35px;

}

.info-box i{

    width:65px;

    height:65px;

    background:#fff3ee;

    color:var(--secondary);

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.info-box h4{

    margin-bottom:8px;

}

.info-box a{

    color:#555;

}

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:var(--shadow-lg);

}

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:20px;

}

.contact-form input,

.contact-form textarea,

.contact-form select{

    width:100%;

    padding:18px;

    border-radius:14px;

    border:1px solid var(--border);

    font-size:15px;

    font-family:inherit;

    outline:none;

    transition:.3s;

}

.contact-form textarea{

    margin-bottom:20px;

    resize:none;

}

.contact-form input:focus,

.contact-form textarea:focus,

.contact-form select:focus{

    border-color:var(--secondary);

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:var(--primary);

    color:#fff;

    padding-top:90px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:60px;

}

.footer-logo{

    font-size:34px;

    font-weight:800;

    color:#fff;

    display:inline-block;

    margin-bottom:20px;

}

.footer-logo span{

    color:var(--secondary);

}

.footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}

.footer-links h4{

    color:#fff;

    margin-bottom:25px;

}

.footer-links ul li{

    margin-bottom:14px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.social-links{

    display:flex;
    gap:15px;
    justify-content: center;

}

.social-links a{

    width:46px;

    height:46px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:30px 0;

    text-align:center;

}

.footer-bottom p{

    color:rgba(255,255,255,.6);

}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100%;

    background:#fff;

    z-index:9999;

    padding:40px;

    transition:.4s;

    box-shadow:-5px 0 25px rgba(0,0,0,.15);

}

.mobile-menu.active{

    right:0;

}

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.close-menu{

    border:none;

    background:none;

    font-size:26px;

    cursor:pointer;

}

.mobile-menu ul li{

    margin-bottom:20px;

}

.mobile-menu a{

    color:#222;

    font-size:18px;

    font-weight:600;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero-wrapper,

.about-wrapper,

.contact-wrapper{

grid-template-columns:1fr;

}

.services-grid,

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.process-wrapper{

grid-template-columns:1fr;

}

.process-arrow{

display:none;

}

.footer-top{

grid-template-columns:repeat(2,1fr);

}

}
.faphone-cust {
    font-size: 22px;
    margin-right: 12px;
}

.callbtn_float{
    position:fixed;
    bottom:30px;
    left:25px;
    width:60px;
    height:60px;
    background: #008afc;
    color: #fff;
    border-radius: 50%;
    /*border: 2px solid #1c1b1b;*/
    display:none;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
    z-index:9999;
    transition:0.3s ease;
    animation:callbtnPulse 2s infinite;
}

.callbtn_float:hover{
    transform:scale(1.1);
    background:#000;
    color:#c7c692;
}

@keyframes callbtnPulse{
    0%{
        box-shadow:0 0 0 0 rgb(66 57 58 / 60%);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:991px){

.callbtn_float{
	display: flex;
    width:65px;
    height:65px;
    font-size:30px;
    left:15px;
    bottom:20px;
}

.col-4 {
    width: 100%;
}

.hero::before, .hero::after{
    display: none;
}

.footer-logo {
    font-size: 28px;
}

.logo-text {
    font-size: 20px;
}

.navigation{

display:none;

}

.mobile-toggle{

display:block;

}

.header-btn{

display:none;

}

h1{

font-size:46px;

}

h2{

font-size:36px;

}

.hero{

padding-top:140px;

}

.hero-image{

height:auto;

margin-top:60px;

}

.hero-card{

position:relative;

width:100%;

height:260px;

margin-bottom:20px;

left:auto;

right:auto;

top:auto;

bottom:auto;

}

.experience-box{

position:relative;

right:auto;

bottom:auto;

margin-top:20px;

}

.about-features{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid,

.why-grid{

grid-template-columns:1fr;

}

.form-row{

grid-template-columns:1fr;

}

.cta-box{

padding:50px 30px;

flex-direction:column;

text-align:center;

}

.footer-top{

grid-template-columns:1fr;

}

}

@media(max-width:767px){

.section{

padding:70px 0;

}

.container{

padding:0 18px;

}

.hero-buttons{

flex-direction:column;

}

.hero-features{

flex-direction:column;

align-items:flex-start;

}

.stats-grid{

grid-template-columns:1fr;

}

.contact-form{

padding:30px;

}

.faq-question{

padding:22px;

}

.faq-answer{

padding:0 22px 22px;

}

}