/*==================================================
 RK Tech Web Solution
 Style.css
 Part - 1
==================================================*/


/*==========================
Reset CSS
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-family);

    background:var(--body-bg);

    color:var(--text);

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}

/*==========================
Selection
==========================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*==========================
Scrollbar
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==========================
Container
==========================*/

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding:0 20px;

}

/*==========================
Image
==========================*/

img{

    max-width:100%;

    display:block;

}

/*==========================
Links
==========================*/

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

/*==========================
List
==========================*/

ul{

    list-style:none;

}

/*==========================
Heading
==========================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:58px;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

p{

    margin-top:15px;

    color:var(--text);

}

/*==========================
Section
==========================*/

section{

    padding:100px 0;

}

/*==========================
Buttons
==========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    margin-left:15px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/*==========================
Loader
==========================*/

.loader{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader-circle{

    width:60px;

    height:60px;

    border-radius:50%;

    border:5px solid #ddd;

    border-top:5px solid var(--primary);

    animation:loader 1s linear infinite;

}

@keyframes loader{

    100%{

        transform:rotate(360deg);

    }

}

/*==========================
Header
==========================*/

.header{

    position:fixed;

    width:100%;

    left:0;

    top:0;

    z-index:999;

    transition:.4s;

    padding:20px 0;

}

/* Scroll Class */

.header.sticky{

    background:#fff;

    box-shadow:var(--shadow);

    padding:15px 0;

}

/*==========================
Navbar
==========================*/

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:172px;

}

.logo span{

    font-size:22px;

    font-weight:700;

    color:var(--heading);

}
/*=========================================
 Navigation Menu
=========================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-menu li{

    position:relative;

}

.nav-menu li a{

    font-size:16px;

    font-weight:600;

    color:var(--heading);

    transition:var(--transition);

}

.nav-menu li a:hover{

    color:var(--primary);

}

.nav-menu li a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-menu li a:hover::after{

    width:100%;

}


/*=========================================
 Right Buttons
=========================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:15px;

}

.whatsapp-btn{

    padding:12px 25px;

    border:2px solid #25D366;

    color:#25D366;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.whatsapp-btn:hover{

    background:#25D366;

    color:#fff;

}

.quote-btn{

    background:var(--primary);

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    box-shadow:var(--shadow);

}

.quote-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}


/*=========================================
 Mobile Toggle
=========================================*/

.menu-toggle{

    display:none;

    width:45px;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:4px;

    margin:7px 0;

    background:var(--heading);

    border-radius:20px;

    transition:.4s;

}


/*=========================================
 Mobile Menu
=========================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:300px;

    height:100vh;

    background:#fff;

    box-shadow:-10px 0 30px rgba(0,0,0,.08);

    transition:.4s;

    padding:100px 30px;

    z-index:9999;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu ul li{

    margin:20px 0;

}

.mobile-menu ul li a{

    font-size:18px;

    font-weight:600;

    color:var(--heading);

}

.mobile-buttons{

    margin-top:40px;

}

.mobile-whatsapp{

    display:block;

    text-align:center;

    background:#25D366;

    color:#fff;

    padding:15px;

    border-radius:50px;

    margin-bottom:15px;

    font-weight:600;

}

.mobile-quote{

    display:block;

    text-align:center;

    background:var(--primary);

    color:#fff;

    padding:15px;

    border-radius:50px;

    font-weight:600;

}


/*=========================================
 Hero Section
=========================================*/

.hero{

    padding-top:180px;

    padding-bottom:120px;

    background:linear-gradient(135deg,#ffffff,#eef6ff);

    overflow:hidden;

}

.hero .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.hero-left{

    flex:1;

}

.hero-right{

    flex:1;

    text-align:right;

}

.hero-right img{

    max-width:100%;

    animation:float 5s ease-in-out infinite;

}


/*=========================================
 Hero Badge
=========================================*/

.hero-badge{

    display:inline-block;

    background:#e8f1ff;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}


/*=========================================
 Hero Heading
=========================================*/

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

    color:var(--heading);

}

.hero p{

    font-size:18px;

    max-width:600px;

    margin-bottom:35px;

}


/*=========================================
 Hero Buttons
=========================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}


/*=========================================
 Floating Animation
=========================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}
/*=========================================
Hero Floating Cards
=========================================*/

.hero-right{

    position:relative;

}

.hero-card{

    position:absolute;

    background:#ffffff;

    padding:18px 22px;

    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    gap:15px;

    min-width:220px;

    animation:floatCard 5s ease-in-out infinite;

}

.hero-card i{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:22px;

    color:#fff;

}

.hero-card h4{

    font-size:18px;

    margin-bottom:3px;

}

.hero-card p{

    margin:0;

    font-size:14px;

}


/* Card Position */

.card-one{

    top:50px;

    left:-60px;

}

.card-two{

    bottom:80px;

    right:-20px;

}

.card-three{

    bottom:-40px;

    left:40px;

}


/* Card Icon Colors */

.card-one i{

    background:#2563eb;

}

.card-two i{

    background:#10b981;

}

.card-three i{

    background:#ff8a00;

}


/*=========================================
Hero Background Shapes
=========================================*/

.hero{

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-180px;

    left:-150px;

    z-index:-1;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,138,0,.08);

    border-radius:50%;

    bottom:-120px;

    right:-100px;

    z-index:-1;

}


/*=========================================
Trust Badge Section
=========================================*/

.trust-section{

    margin-top:60px;

    display:flex;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

}

.trust-box{

    display:flex;

    align-items:center;

    gap:12px;

}

.trust-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    box-shadow:var(--shadow);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:24px;

}

.trust-box h5{

    font-size:17px;

    margin-bottom:4px;

}

.trust-box span{

    font-size:14px;

    color:var(--text);

}


/*=========================================
Statistics
=========================================*/

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:70px;

}

.stat-box{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-10px);

}

.stat-box h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat-box p{

    margin:0;

    font-size:16px;

}


/*=========================================
Glass Effect
=========================================*/

.glass{

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.25);

}


/*=========================================
Section Title
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    background:#eaf2ff;

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}


/*=========================================
Animation
=========================================*/

@keyframes floatCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}
/*==================================================
 SERVICES SECTION
==================================================*/

.services{

    background:var(--section-bg);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

/*======================
Service Icon
======================*/

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#fff;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    margin-bottom:25px;

}

/*======================
Heading
======================*/

.service-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-card p{

    font-size:15px;

    margin-bottom:25px;

    color:var(--text);

}

/*======================
Features
======================*/

.service-features{

    margin-bottom:25px;

}

.service-features li{

    display:flex;

    align-items:center;

    margin-bottom:12px;

    font-size:15px;

}

.service-features li i{

    color:#10b981;

    margin-right:10px;

}

/*======================
Price Box
======================*/

.service-price{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid var(--border);

}

.service-price h4{

    font-size:26px;

    color:var(--primary);

}

.service-price span{

    display:block;

    font-size:14px;

    color:var(--light-text);

}

/*======================
Button
======================*/

.service-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:.3s;

    font-size:15px;

    font-weight:600;

}

.service-btn:hover{

    background:var(--primary-dark);

}

/*======================
Popular Badge
======================*/

.popular{

    position:absolute;

    right:-40px;

    top:22px;

    width:160px;

    text-align:center;

    background:var(--secondary);

    color:#fff;

    transform:rotate(45deg);

    padding:8px 0;

    font-size:13px;

    font-weight:700;

}

/*======================
Hover Effect
======================*/

.service-card:hover .service-icon{

    transform:rotate(10deg) scale(1.08);

    transition:.4s;

}

/*======================
Bottom Shape
======================*/

.service-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    right:-70px;

    bottom:-70px;

}

/*======================
Responsive Preview
======================*/

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:28px;

}

}

/*==================================================
            PRICING SECTION
==================================================*/

.pricing{

    background:#ffffff;

    position:relative;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

/*==========================
Pricing Card
==========================*/

.pricing-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:45px 35px;

    box-shadow:var(--shadow-sm);

    transition:.4s;

    overflow:hidden;

    border:1px solid var(--border);

}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

/*==========================
Popular Plan
==========================*/

.pricing-card.active{

    border:2px solid var(--primary);

    transform:scale(1.04);

}

.pricing-card.active:hover{

    transform:scale(1.05);

}

.pricing-badge{

    position:absolute;

    top:20px;

    right:-40px;

    width:170px;

    text-align:center;

    background:var(--secondary);

    color:#fff;

    padding:8px;

    font-size:13px;

    font-weight:700;

    transform:rotate(45deg);

}

/*==========================
Plan Name
==========================*/

.plan-name{

    font-size:28px;

    color:var(--heading);

    margin-bottom:12px;

}

.plan-desc{

    font-size:15px;

    color:var(--text);

    margin-bottom:30px;

}

/*==========================
Price
==========================*/

.price{

    display:flex;

    align-items:flex-end;

    margin-bottom:35px;

}

.price h2{

    font-size:52px;

    color:var(--primary);

    line-height:1;

}

.price span{

    margin-left:10px;

    color:var(--text);

    font-size:16px;

    margin-bottom:8px;

}

/*==========================
Features
==========================*/

.plan-features{

    margin-bottom:35px;

}

.plan-features li{

    display:flex;

    align-items:center;

    margin-bottom:16px;

    font-size:15px;

    color:var(--text);

}

.plan-features li i{

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e8fff2;

    color:#10b981;

    border-radius:50%;

    margin-right:12px;

    font-size:14px;

}

/*==========================
Button
==========================*/

.plan-btn{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:16px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.plan-btn:hover{

    background:var(--primary-dark);

}

/*==========================
Delivery Time
==========================*/

.delivery{

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid var(--border);

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.delivery span{

    font-size:14px;

    color:var(--text);

}

.delivery strong{

    color:var(--heading);

}

/*==========================
Background Circle
==========================*/

.pricing-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(37,99,235,.04);

    top:-100px;

    right:-100px;

}

.pricing-card::after{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    border-radius:50%;

    background:rgba(255,138,0,.05);

    bottom:-80px;

    left:-80px;

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.pricing-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.pricing-grid{

grid-template-columns:1fr;

}

.pricing-card{

padding:35px 25px;

}

.price h2{

font-size:42px;

}

}

/*==========================
Hamburger Animation
==========================*/

.menu-toggle{

    width:45px;
    height:45px;
    display:none;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    cursor:pointer;
    z-index:10001;

}

.menu-toggle span{

    width:28px;
    height:3px;
    background:#222;
    margin:4px 0;
    border-radius:5px;
    transition:.35s;

}

/* Active = Close Icon */

.menu-toggle.active span:nth-child(1){

    transform:translateY(11px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-11px) rotate(-45deg);

}

body.menu-open{

    overflow:hidden;

}
.mobile-menu{

    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:100%;
    height:100vh;
    background:#fff;
    transition:.4s;
    z-index:9999;
    overflow-y:auto;

}

.mobile-menu.active{

    right:0;

}
/* Mobile Header */

.mobile-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;

}

.mobile-header h3{

    font-size:24px;
    font-weight:700;

}

.close-menu{

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    font-size:30px;

    cursor:pointer;

    transition:.3s;

}

.close-menu:hover{

    background:#0f52d9;

}

/*=========================================
 PORTFOLIO SECTION
=========================================*/

.portfolio{

    background:#f8fafc;
    padding:100px 0;

}

.portfolio-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.portfolio-card{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;

}

.portfolio-card img{

    width:100%;
    display:block;
    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-overlay{

    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(rgba(37,99,235,.92),rgba(15,23,42,.92));
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
    padding:25px;
    text-align:center;

}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-overlay span{

    display:inline-block;
    background:#ffffff20;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:15px;
    font-size:14px;

}

.portfolio-overlay h3{

    font-size:26px;
    margin-bottom:25px;

}

.portfolio-buttons{

    display:flex;
    gap:15px;

}

.portfolio-btn{

    padding:12px 22px;
    background:#fff;
    color:#2563eb;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.portfolio-btn:hover{

    background:#ff8a00;
    color:#fff;

}

.portfolio-btn-light{

    padding:12px 22px;
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    transition:.3s;

}

.portfolio-btn-light:hover{

    background:#fff;
    color:#2563eb;

}

.portfolio-footer{

    text-align:center;
    margin-top:60px;

}

/*==================================================
                WHY CHOOSE US
==================================================*/

.why-choose{

    background:#ffffff;
    padding:100px 0;
    position:relative;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.why-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid #eef2f7;
    position:relative;
    overflow:hidden;

}

.why-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#ff8a00);

}

.why-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.why-icon{

    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#0f52d9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;

}

.why-card:hover .why-icon{

    transform:rotate(10deg) scale(1.1);

}

.why-card h3{

    font-size:24px;
    margin-bottom:15px;
    color:#111827;

}

.why-card p{

    color:#6b7280;
    line-height:1.8;

}


/*==========================
Counter Section
==========================*/

.why-counter{

    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.counter-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-10px);

}

.counter-box h2{

    font-size:48px;
    margin-bottom:12px;
    font-weight:700;

}

.counter-box p{

    font-size:17px;
    opacity:.95;

}


/*==========================
Background Shapes
==========================*/

.why-choose::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
    top:-120px;
    left:-150px;

}

.why-choose::after{

    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,138,0,.06);
    bottom:-120px;
    right:-120px;

}
/*==================================================
                WHY CHOOSE US
==================================================*/

.why-choose{

    background:#ffffff;
    padding:100px 0;
    position:relative;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.why-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid #eef2f7;
    position:relative;
    overflow:hidden;

}

.why-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#ff8a00);

}

.why-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.why-icon{

    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#0f52d9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;

}

.why-card:hover .why-icon{

    transform:rotate(10deg) scale(1.1);

}

.why-card h3{

    font-size:24px;
    margin-bottom:15px;
    color:#111827;

}

.why-card p{

    color:#6b7280;
    line-height:1.8;

}


/*==========================
Counter Section
==========================*/

.why-counter{

    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.counter-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-10px);

}

.counter-box h2{

    font-size:48px;
    margin-bottom:12px;
    font-weight:700;

}

.counter-box p{

    font-size:17px;
    opacity:.95;

}


/*==========================
Background Shapes
==========================*/

.why-choose::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
    top:-120px;
    left:-150px;

}

.why-choose::after{

    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,138,0,.06);
    bottom:-120px;
    right:-120px;

}

/*==================================================
                TESTIMONIAL SECTION
==================================================*/

.testimonials{

    padding:100px 0;
    background:#f8fafc;
    position:relative;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}


/*==========================
Testimonial Card
==========================*/

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.testimonial-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.testimonial-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#ff8a00);

}


/*==========================
Quote Icon
==========================*/

.quote{

    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#0f52d9);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;

}


/*==========================
Review Text
==========================*/

.testimonial-card p{

    font-size:16px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:30px;

}


/*==========================
Client
==========================*/

.client{

    display:flex;
    align-items:center;
    gap:15px;

}

.client img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #2563eb;

}

.client h4{

    font-size:20px;
    margin-bottom:5px;
    color:#111827;

}

.client span{

    color:#6b7280;
    font-size:15px;

}


/*==========================
Stars
==========================*/

.stars{

    margin-top:15px;
    color:#f59e0b;
    font-size:18px;

}


/*==========================
Bottom CTA
==========================*/

.testimonial-bottom{

    margin-top:70px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border-radius:25px;
    padding:60px;
    text-align:center;

}

.testimonial-bottom h3{

    font-size:36px;
    margin-bottom:15px;

}

.testimonial-bottom p{

    font-size:18px;
    margin-bottom:30px;
    opacity:.95;

}

.testimonial-bottom .btn-primary{

    background:#fff;
    color:#2563eb;

}

.testimonial-bottom .btn-primary:hover{

    background:#ff8a00;
    color:#fff;

}


/*==========================
Background Shapes
==========================*/

.testimonials::before{

    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
    top:-100px;
    left:-120px;

}

.testimonials::after{

    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,138,0,.05);
    bottom:-100px;
    right:-120px;

}

/*==================================================
                CONTACT SECTION
==================================================*/

.contact{

    padding:100px 0;
    background:#ffffff;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:60px;
    align-items:start;

}


/* Contact Info */

.contact-info{

    background:#f8fafc;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-info h3{

    font-size:34px;
    margin-bottom:15px;

}

.contact-info p{

    color:#6b7280;
    margin-bottom:30px;
    line-height:1.8;

}

.info-box{

    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #e5e7eb;

}

.info-box:last-child{

    border-bottom:none;

}

.info-box h4{

    font-size:18px;
    margin-bottom:8px;
    color:#2563eb;

}

.info-box a{

    color:#2563eb;
    font-weight:600;

}


/* Contact Form */

.contact-form{

    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-group{

    margin-bottom:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:16px 18px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
    outline:none;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.10);

}

.contact-form textarea{

    resize:vertical;
    min-height:150px;

}

.contact-form button{

    width:100%;

}


/*==================================================
                FOOTER
==================================================*/

.footer{

    background:#0f172a;
    color:#fff;
    padding-top:80px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;

}

.footer-logo{

    width:150px;
    margin-bottom:6px;

}

.footer h3,
.footer h4{

    margin-bottom:20px;

}

.footer p{

    color:#cbd5e1;
    line-height:1.8;

}

.footer ul{

    list-style:none;
    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#cbd5e1;
    transition:.3s;

}

.footer ul li a:hover{

    color:#ffffff;
    padding-left:8px;

}

.footer-social{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.footer-social a{

    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    transition:.3s;

}

.footer-social a:hover{

    background:#2563eb;
    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding:20px 0;
    text-align:center;
    color:#cbd5e1;

}


/*==================================================
        FLOATING BUTTONS
==================================================*/

.whatsapp-float{

    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

#topBtn{

    position:fixed;
    right:25px;
    bottom:100px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:none;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
    z-index:999;

}

#topBtn:hover{

    background:#1d4ed8;
    transform:translateY(-5px);

}


/*==================================================
        END OF STYLE.CSS
==================================================*/