/*==================================================
    Mahizhaura
    Pure HTML5 CSS3 Template
    Version : 1.0
    Author  : Mahizhini Innovations N Infotainments (India)
===================================================*/


/*==================================================
RESET
===================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:16px;
    line-height:1.7;

    color:#555;
    background:#ffffff;

    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font-family:inherit;
}

button{
    cursor:pointer;
    border:none;
    background:none;
}

section{
    padding:10px 0;
}


/*==================================================
CSS VARIABLES
===================================================*/

:root{

    --primary:#1E8E3E;
    --primary-dark:#156c2f;

    --secondary:#f7f9fb;

    --text:#222222;
    --paragraph:#666666;

    --white:#ffffff;

    --border:#ececec;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --shadow-hover:
        0 20px 45px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

    --container:1280px;

}


/*==================================================
COMMON
===================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    font-size:.9rem;

}

.section-title h2{

    margin-top:10px;

    font-size:2.5rem;

    color:var(--text);

    font-weight:800;

}


/*==================================================
BUTTONS
===================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:12px;

    font-weight:700;

    transition:var(--transition);

    cursor:pointer;

}

.primary-btn{

    background:var(--primary);

    color:#fff;

    box-shadow:0 10px 25px rgba(30,142,62,.25);

}

.primary-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:0 20px 35px rgba(30,142,62,.35);

}

.secondary-btn{

    background:#fff;

    color:#222;

    border:1px solid var(--border);

}

.secondary-btn:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}


/*==================================================
HEADER
===================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid transparent;

    transition:.35s;

}

.header.scrolled{

    box-shadow:var(--shadow);

    border-color:var(--border);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}


/*==================================================
LOGO
===================================================*/

.logo a{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:1.65rem;

    font-weight:800;

    color:var(--text);

}

.logo-icon{

    display:flex;

    align-items:center;

    justify-content:center;

}

.logo-text{

    color:var(--text);

}


/*==================================================
NAVIGATION
===================================================*/

.navigation ul{

    display:flex;

    align-items:center;

    gap:42px;

}

.navigation a{

    position:relative;

    font-weight:600;

    color:#333;

    transition:var(--transition);

}

.navigation a:hover{

    color:var(--primary);

}

.navigation a.active{

    color:var(--primary);

}

.navigation a.active::after,

.navigation a:hover::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:100%;

    height:3px;

    background:var(--primary);

    border-radius:10px;

}


/*==================================================
MOBILE MENU BUTTON
===================================================*/

.mobile-toggle{

    display:none;

    width:46px;

    height:46px;

    border-radius:12px;

    border:1px solid var(--border);

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:6px;

    transition:var(--transition);

}

.mobile-toggle:hover{

    background:#f5f5f5;

}

.mobile-toggle span{

    width:22px;

    height:2px;

    background:#222;

    transition:.3s;

}


/*==================================================
HEADER SPACER
===================================================*/

body{

    padding-top:90px;

}


/*==================================================
UTILITY CLASSES
===================================================*/

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mt-30{

    margin-top:30px;

}

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:var(--radius);

}

.bg-light{

    background:#fafafa;

}


/*==================================================
CARD
===================================================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}


/*==================================================
GRID HELPERS
===================================================*/

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*==================================================
TYPOGRAPHY
===================================================*/

h1,h2,h3,h4,h5{

    color:var(--text);

    line-height:1.2;

}

h1{

    font-size:4rem;

    font-weight:800;

}

h2{

    font-size:2.6rem;

    font-weight:800;

}

h3{

    font-size:1.45rem;

}

p{

    color:var(--paragraph);

}


/*==================================================
TRANSITIONS
===================================================*/

a,
button,
.card,
img{

    transition:var(--transition);

}


/*==================================================
END OF PHASE 2A
===================================================*/

/*==================================================
HERO SECTION
===================================================*/

.hero{
    padding:10px 0 100px;
    background:#ffffff;
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    align-items:center;
    gap:70px;
}

.hero-content h1{
    font-size:4.3rem;
    font-weight:800;
    line-height:1.12;
    color:var(--text);
    margin-bottom:28px;
    letter-spacing:-2px;
}

.hero-content h1 span{
    color:var(--primary);
    display:block;
}

.hero-content h2 span{
    color:var(--primary);
    display:block;
}

.hero-content h3 span{
    color:var(--primary);
    display:block;
}

.hero-content p{
    max-width:560px;
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}


/*==================================================
TRUSTED CLIENTS
===================================================*/

.trusted{
    display:flex;
    align-items:center;
    gap:18px;
}

.trusted p{
    font-size:.95rem;
}

.trusted strong{
    color:var(--primary);
    font-weight:800;
}

.avatars{
    display:flex;
}

.avatars img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    margin-left:-12px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

.avatars img:first-child{
    margin-left:0;
}

.avatars img:hover{
    transform:translateY(-6px);
    z-index:2;
}


/*==================================================
HERO IMAGE
===================================================*/

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 35px 60px rgba(0,0,0,.12);
}

.hero-image::before{
    content:"";
    position:absolute;
    inset:-30px;
    background:
        radial-gradient(circle at top left,
        rgba(30,142,62,.10),
        transparent 65%);
    z-index:-1;
}


/*==================================================
FLOATING CARD
===================================================*/

.floating-card{
    position:absolute;
    left:35px;
    bottom:-28px;

    width:320px;

    background:#fff;

    border-radius:22px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:
        0 30px 60px rgba(0,0,0,.12);

    animation:floatCard 4s ease-in-out infinite;
}

.floating-card .icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.floating-card h4{
    margin-bottom:6px;
    font-size:1.15rem;
    font-weight:700;
}

.floating-card p{
    font-size:.92rem;
    line-height:1.6;
}


/*==================================================
FEATURES
===================================================*/

.features{
    padding-top:120px;
    background:#fafcfb;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.feature-card{
    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:left;
    transition:.35s;
    border:1px solid #efefef;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.feature-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#f4faf5;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:1.35rem;
    margin-bottom:15px;
    font-weight:700;
}

.feature-card p{
    line-height:1.8;
}


/*==================================================
DECORATIVE DOTS
===================================================*/

.hero-image::after{
    content:"";
    position:absolute;
    right:-20px;
    bottom:20px;

    width:110px;
    height:110px;

    background-image:
        radial-gradient(
            var(--primary) 1.6px,
            transparent 1.6px
        );

    background-size:14px 14px;

    opacity:.35;
}


/*==================================================
BUTTON ENHANCEMENT
===================================================*/

.hero-buttons .btn{
    min-width:180px;
}

.hero-buttons .secondary-btn{
    background:#fff;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
}


/*==================================================
IMAGE HOVER
===================================================*/

.hero-image img{
    transition:.6s;
}

.hero-image:hover img{
    transform:scale(1.02);
}


/*==================================================
FEATURE HOVER ICON
===================================================*/

.feature-card:hover .feature-icon{
    transform:rotate(10deg) scale(1.08);
    background:var(--primary);
    color:#fff;
}


/*==================================================
ANIMATION
===================================================*/

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}


/*==================================================
SMALL LAPTOP
===================================================*/

@media (max-width:1200px){

    .hero-grid{
        gap:50px;
    }

    .hero-content h1{
        font-size:3.6rem;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/*==================================================
TABLET
===================================================*/

@media (max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .trusted{
        justify-content:center;
    }

    .hero-image{
        margin-top:40px;
    }

    .floating-card{
        position:relative;
        left:auto;
        bottom:auto;
        margin:25px auto 0;
    }

}


/*==================================================
MOBILE
===================================================*/

@media (max-width:768px){

    .hero{
        padding:60px 0;
    }

    .hero-content h1{
        font-size:2.8rem;
        letter-spacing:-1px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .floating-card{
        width:100%;
    }

    .feature-card{
        text-align:center;
    }

    .feature-icon{
        margin-left:auto;
        margin-right:auto;
    }

}


/*==================================================
SMALL MOBILE
===================================================*/

@media (max-width:480px){

    .hero-content h1{
        font-size:2.2rem;
    }

    .avatars img{
        width:40px;
        height:40px;
    }

    .floating-card{
        padding:18px;
        gap:15px;
    }

    .floating-card .icon{
        width:58px;
        height:58px;
        font-size:24px;
    }

}

/*==================================================
ABOUT SECTION
==================================================*/

.about{
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-content h2{
    margin:18px 0 25px;
    font-size:2.8rem;
    line-height:1.2;
}

.about-content p{
    margin-bottom:40px;
    max-width:560px;
}

.about-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.about-images img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.about-images img:first-child{
    margin-top:50px;
}

.about-images img:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.14);
}


/*==================================================
STATS
==================================================*/

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.stats div{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:28px 20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.stats div:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.stats h3{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:8px;
}

.stats span{
    color:#666;
    font-weight:600;
}


/*==================================================
SERVICES
==================================================*/

.services{
    background:#f8fbf9;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 22px 55px rgba(0,0,0,.10);
    border-color:var(--primary);
}

.service-card h3{
    margin-bottom:18px;
    font-size:1.5rem;
}

.service-card p{
    line-height:1.8;
}

.service-card::before{
    content:"";
    display:block;
    width:60px;
    height:6px;
    background:var(--primary);
    border-radius:10px;
    margin-bottom:28px;
}


/*==================================================
PORTFOLIO
==================================================*/

.portfolio{
    background:#fff;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.portfolio-grid img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:20px;
    transition:.45s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.portfolio-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}


/*==================================================
CTA SECTION
==================================================*/

.cta{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    text-align:center;
    border-radius:40px;
    margin:80px auto;
    width:min(92%,1280px);
    padding:90px 30px;
    overflow:hidden;
    position:relative;
}

.cta::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-220px;
    right:-120px;
}

.cta::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-120px;
    bottom:-120px;
}

.cta h2{
    color:#fff;
    font-size:3rem;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.cta p{
    color:rgba(255,255,255,.9);
    font-size:1.1rem;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.cta .btn{
    background:#fff;
    color:var(--primary);
    position:relative;
    z-index:2;
}

.cta .btn:hover{
    transform:translateY(-5px);
}


/*==================================================
FOOTER
==================================================*/

.footer{
    background:#111;
    color:#bbb;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:40px;
    padding-bottom:50px;
}

.footer h3{
    color:#fff;
    margin-bottom:18px;
}

.footer h4{
    color:#fff;
    margin-bottom:20px;
}

.footer p{
    color:#999;
    line-height:1.8;
}

.footer ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer a{
    color:#999;
    transition:.3s;
}

.footer a:hover{
    color:#fff;
    padding-left:6px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
    color:#888;
    font-size:.9rem;
}


/*==================================================
SECTION SPACING
==================================================*/

.about,
.services,
.portfolio{
    position:relative;
}

.about::before,
.services::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(30,142,62,.05);
    top:40px;
    right:60px;
}


/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1100px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer ul{
        align-items:center;
    }

    .about-images{
        grid-template-columns:1fr;
    }

    .about-images img:first-child{
        margin-top:0;
    }

    .cta{
        border-radius:24px;
        padding:70px 25px;
    }

    .cta h2{
        font-size:2.2rem;
    }

}

@media (max-width:480px){

    .stats{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:2.1rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .cta h2{
        font-size:1.8rem;
    }

}

/*==================================================
PHASE 2D
Animations • Mobile Menu • Utilities
Back To Top • Accessibility
==================================================*/


/*==================================================
SCROLL ANIMATIONS
==================================================*/

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-60px);
    transition:all .8s ease;
}

.fade-left.active{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(60px);
    transition:all .8s ease;
}

.fade-right.active{
    opacity:1;
    transform:translateX(0);
}

.zoom{
    opacity:0;
    transform:scale(.9);
    transition:.8s ease;
}

.zoom.active{
    opacity:1;
    transform:scale(1);
}


/*==================================================
IMAGE EFFECTS
==================================================*/

img{
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.hover-zoom{
    overflow:hidden;
    border-radius:20px;
}

.hover-zoom img:hover{
    transform:scale(1.08);
}


/*==================================================
BUTTON RIPPLE EFFECT
==================================================*/

.btn{
    position:relative;
    overflow:hidden;
}

.btn::after{
    content:"";
    position:absolute;
    width:0;
    height:0;
    left:50%;
    top:50%;
    background:rgba(255,255,255,.25);
    border-radius:50%;
    transform:translate(-50%,-50%);
    transition:.55s;
}

.btn:hover::after{
    width:420px;
    height:420px;
}


/*==================================================
MOBILE NAVIGATION
==================================================*/

@media (max-width:992px){

.navigation{

    position:fixed;

    top:90px;

    left:-100%;

    width:100%;

    background:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    transition:.35s;

    padding:30px;

}

.navigation.active{

    left:0;

}

.navigation ul{

    flex-direction:column;

    align-items:flex-start;

    gap:25px;

}

.navigation a{

    font-size:1.1rem;

}

.mobile-toggle{

    display:flex;

}

.header .primary-btn{

    display:none;

}

}


/*==================================================
HAMBURGER ANIMATION
==================================================*/

.mobile-toggle.active span:nth-child(1){

    transform:
        rotate(45deg)
        translateY(8px);

}

.mobile-toggle.active span:nth-child(2){

    opacity:0;

}

.mobile-toggle.active span:nth-child(3){

    transform:
        rotate(-45deg)
        translateY(-8px);

}


/*==================================================
BACK TO TOP BUTTON
==================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 15px 35px rgba(30,142,62,.35);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-6px);

}


/*==================================================
FORM ELEMENTS
==================================================*/

input,
textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:14px;

    outline:none;

    transition:.3s;

    background:#fff;

}

input:focus,
textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(30,142,62,.12);

}

textarea{

    resize:vertical;

    min-height:150px;

}


/*==================================================
TABLES
==================================================*/

table{

    width:100%;

    border-collapse:collapse;

}

th,
td{

    padding:15px;

    border:1px solid #eee;

}

th{

    background:#fafafa;

}


/*==================================================
LISTS
==================================================*/

.check-list{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.check-list li{

    display:flex;

    align-items:center;

    gap:10px;

}

.check-list li::before{

    content:"✓";

    color:var(--primary);

    font-weight:bold;

}


/*==================================================
BADGES
==================================================*/

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 16px;

    border-radius:40px;

    background:#eef8f1;

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

}


/*==================================================
LOADING PLACEHOLDER
==================================================*/

.skeleton{

    background:
    linear-gradient(
        90deg,
        #eee 25%,
        #f5f5f5 50%,
        #eee 75%
    );

    background-size:400% 100%;

    animation:skeleton 1.5s infinite;

}

@keyframes skeleton{

    0%{

        background-position:100% 0;

    }

    100%{

        background-position:-100% 0;

    }

}


/*==================================================
FOCUS ACCESSIBILITY
==================================================*/

a:focus,
button:focus,
input:focus,
textarea:focus{

    outline:3px solid rgba(30,142,62,.25);

    outline-offset:3px;

}


/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


/*==================================================
SPACING UTILITIES
==================================================*/

.pt-0{padding-top:0;}
.pb-0{padding-bottom:0;}
.mt-0{margin-top:0;}
.mb-0{margin-bottom:0;}

.mt-20{margin-top:20px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}

.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

.py-100{

    padding-top:100px;
    padding-bottom:100px;

}


/*==================================================
DISPLAY UTILITIES
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    align-items:center;

    justify-content:center;

}

.justify-between{

    justify-content:space-between;

}

.align-center{

    align-items:center;

}

.w-100{

    width:100%;

}

.text-primary{

    color:var(--primary);

}

.bg-primary{

    background:var(--primary);

    color:#fff;

}


/*==================================================
PRINT
==================================================*/

@media print{

    .header,
    .footer,
    .mobile-toggle,
    .back-to-top{

        display:none;

    }

    body{

        padding:0;

    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

*{

    animation:none!important;

    transition:none!important;

    scroll-behavior:auto!important;

}

}


/*==================================================
LARGE DESKTOP
==================================================*/

@media(min-width:1600px){

.container{

    max-width:1450px;

}

.hero-content h1{

    font-size:5rem;

}

}


/*==================================================
END OF STYLE.CSS
Version 1.0
Mahizhaura Theme
==================================================*/