
:root{
--primary:#ac3124;
--secondary:#3e0960;
--dark:#222;
--light:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{scroll-behavior:smooth;}
body{background:#ffffff;color:#333;overflow-x:hidden;}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER DONE */

header{
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #ffffff;
z-index: 9999;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Navbar */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
min-height:90px;
}

body{
    padding-top: 100px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
}

.logo img{
height:60px;
margin-left: -30px;
}

.nav-links{
display:flex;
align-items:center;
gap:35px;
list-style:none;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
color:#3e0960;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#ac3124;
}

/* Navbar Buttons DONE */
.nav-buttons{
display:flex;
gap:20px;
align-items:center;
}

.nav-btn{
position:relative;
display:inline-block;
padding:8px 20px;
border-radius:50px;
text-decoration:none;
font-weight:450;
font-size:13px;
color:#fff;
overflow:hidden;
z-index:1;
transition:.4s ease;
}

/* Login Button */
.login-btn{
color:  #ac3124;;
background: #ffffff;
border:2px solid #ac3124;
}

.login-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
transition:.4s ease;
z-index:-1;
}  

.login-btn:hover::before{
left:0;
}

.login-btn:hover{
color:#ac3124;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(107,31,166,.25);
}
/* Get Started Button */
.start-btn{
background:#ac3124;
border:2px solid #ac3124;
}

/* Hover Fill Effect */

.start-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
transition:.4s ease;
z-index:-1;
}

.start-btn:hover::before{
left:0;
}

.start-btn:hover{
color:#fff;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(107,31,166,.25);
}

/*RESPONSIVE MENU TOGGLE FOR SMALL DEVICES*/

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    background:none;
    border:none;
    padding:0;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#3e0960;
    border-radius:20px;
    transition:.3s;
}

/*=========================
HERO SECTION
============================*/

.hero{
padding-top:10px;
padding-bottom:80px;
background:#ffffff;
position:relative;
overflow:hidden;
margin:auto;
width:100%;
max-width: 1300px;
}

.hero::after{
content:'';
position:absolute;
width:400px;
height:400px;
bottom:-1500px;
border-radius:50%;
background:#ffffff;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero-badge{
display:inline-block;
padding:10px 28px;
background:#3e0960;
border-radius:50px;
box-shadow:0 8px 15px rgba(0,0,0,.08);
margin-bottom:10px;
font-size:16px;
font-weight:1500;
color: #f1eeee;
}

.hero-content,
.hero-card{
position:relative;
z-index:2;
}

.hero h2{
font-size:30px;
color:#3e0960;
line-height:1.1;
max-width:800px;
}

.hero p{
font-size:15px;
line-height:1.8;
max-width:600px;
margin-top:2px;
margin-bottom:1px;
color:#0d0d0d;
}

.hero-content h1{
text-shadow: 0 4px 20px rgba(107,31,166,0.15);
}

.demo-btn{
position:relative;
display:inline-flex;
align-items:center;
text-decoration:none;
overflow:hidden;
border-radius:60px;
cursor:pointer;
margin-top:20px;
}

/* Sliding circle */
.demo-btn .circle{
width:70px;
height:70px;
background:#c73a2c;
border-radius:70px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:16px;
transition:all .5s ease;
z-index:2;
}

/* Text */
.demo-btn .btn-label{
position:relative;
margin-left:8px;
padding-right:30px;
color:#3e0960;
font-size:16px;
font-weight:600;
letter-spacing:.5px;
transition:all .5s ease;
z-index:2;
}

/* Background fill */
.demo-btn::before{
content:"";
position:absolute;
left:0;
top:0;
width:70px;
height:100%;
background:#c73a2c;
border-radius:60px;
transition:all .5s ease;
z-index:1;
}

/* Hover Effects */
.demo-btn:hover::before{
width:100%;
}

.demo-btn:hover .circle{
width:90px;
}

.demo-btn:hover .btn-label{
color:#fff;
transform:translateX(10px);
}

.hero-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
margin-top:-40px;
transform:scale(1.15);
}

.hero-image img {
width: 600px;
max-width: 1200px;
height: auto;
object-fit: contain;
}

/*=========================================
        PREMIUM INTRO CARD
=========================================*/

.intro-card{
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    margin: 45px 0 70px;
    padding: 55px 70px 55px 95px;
    overflow: hidden;

    border: 1px solid #ececec;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05),
        0 30px 70px rgba(0,0,0,.04);

    transition: .4s ease;
}

.intro-card:hover{

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08),
        0 40px 90px rgba(0,0,0,.05);

}


/*=========================================
        CONTENT
=========================================*/

.intro-content{
    position: relative;
    z-index: 5;
}

.intro-content p{

    margin:0;

    font-size:14px;

    line-height:1.5;

    color:#5a5a5a;

    text-align:justify;

    font-weight:500;

    letter-spacing:.2px;

}


/*=========================================
        TOP LEFT CURVE
=========================================*/

.pattern-1{

    position:absolute;

    top:-60px;
    left:-70px;

    width:260px;
    height:260px;

    border-radius:50%;

    border:3px solid rgba(175,175,175,.18);

}

.pattern-1::before{

    content:"";

    position:absolute;

    inset:18px;

    border-radius:50%;

    border:3px solid rgba(175,175,175,.14);

}

.pattern-1::after{

    content:"";

    position:absolute;

    inset:36px;

    border-radius:50%;

    border:3px solid rgba(175,175,175,.10);

}


/*=========================================
        TOP RIGHT DOTS
=========================================*/

.pattern-2{

    position:absolute;

    top:35px;
    right:35px;

    width:170px;
    height:110px;

    opacity:.45;

    background-image:
        radial-gradient(
            #aba9a9 1.6px,
            transparent 1.6px
        );

    background-size:18px 18px;

}


/*=========================================
        BOTTOM RIGHT RINGS
=========================================*/

.pattern-3{

    position:absolute;

    right:-130px;
    bottom:-130px;

    width:300px;
    height:300px;

    border-radius:50%;

    border:3px solid rgba(180,180,180,.15);

}

.pattern-3::before{

    content:"";

    position:absolute;

    inset:25px;

    border-radius:50%;

    border:3px solid rgba(180,180,180,.10);

}

.pattern-3::after{

    content:"";

    position:absolute;

    inset:50px;

    border-radius:50%;

    border:3px solid rgba(180,180,180,.08);

}


/*=========================================
        SOFT LIGHT OVERLAY
=========================================*/

.intro-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        135deg,
        rgb(204, 205, 205),
        transparent 40%
    ),

    linear-gradient(
        -35deg,
        rgba(228, 228, 229, 0.881),
        transparent 60%
    );

    pointer-events:none;

}


/*=========================================
        INNER BORDER
=========================================*/

.intro-card::after{

    content:"";

    position:absolute;

    inset:12px;

    border-radius:18px;

    border:3px solid rgba(240,240,240,.9);

    pointer-events:none;

}

<!--STATE-->

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stats-grid div{
background:rgba(255,255,255,.12);
padding:30px;
border-radius:20px;
backdrop-filter:blur(10px);
}

.features,.about,.pricing,.faq,.cta{
padding:50px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
font-weight:800;
color:var(--secondary);
margin-bottom:10px;
}

.section-title p{
color:#666;
}

.feature-grid{
display:flex;
justify-content:center;
align-items:flex-start;
gap:30px;
margin-top:20px;
flex-wrap:wrap;
}

.feature-card{
width:340px;
min-height:380px;
background:#fff;
padding:30px 20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s ease;
}

.feature-card:hover{
transform:translateY(-10px);
} 

.features{
position:relative;
overflow:hidden;
padding:100px 0 120px;
background:#e3e6e7;
border-bottom-left-radius:80px;
border-bottom-right-radius:80px;
}

/* Left Triangle */
.features::before{
content:"";
position:absolute;
width:900px;
height:900px;
background:rgba(255,255,255,.55);
top:-200px;
left:-250px;
transform:rotate(35deg);
z-index:1;
}

/* Right Triangle */
.features::after{
content:"";
position:absolute;
width:900px;
height:900px;
background:rgba(255,255,255,.45);
top:-2000px;
right:-400px;
transform:rotate(-35deg);
z-index:1;
}

/* Bring content above background */
.features .container{
    position:relative;
    z-index:2;
}

.feature-grid{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    flex-wrap:wrap;
}

/* Cards */
.feature-card{
    width:350px;
    min-height:360px;
    background:#fff;
    border-radius:50px;
    text-align:center;
    padding:45px 30px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.4s ease;
}

/* Middle card slightly lower */
.card-2{
    margin-top:80px;
}

/* Hover */
.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

/* Sticker */
.feature-sticker{
    width:130px;
    margin-top:35px;
}

/* Title */
.feature-card h3{
    font-size:32px;
    color:#3e0960;
    margin-bottom:20px;
}

/* Text */
.feature-card p{
    color:#666;
    line-height:1.9;
}
/* Staggered Layout */
.card-1{
    margin-top:0;
}

.card-2{
    margin-top:60px;
}

.card-3{
    margin-top:120px;
}

.icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:#fdf0ee;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#ac3124;
}

.feature-card h3{
    margin-bottom:20px;
    font-size:28px;
}

.feature-card p{
    line-height:1.8;
    color:#070707;
}
.features{
position:relative;
padding:100px 0;
background:linear-gradient(90deg,#d9d6da 0%, #d9d6da 33%, #d9d6da 33%,
             #d9d6da 66%, #d9d6da 66%, #d9d6da 100%);
}

.feature-card{
display:flex;
flex-direction:column;
justify-content:space-between;
text-align:center;
padding:40px;
}

.feature-sticker{
width:160px;
margin:30px auto 0;
}

.feature-grid,
.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.feature-card,
.price-card,
.about-card{
background:#fff;
padding:35px;
border-radius:40px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.feature-card:hover,
.price-card:hover,
.about-card:hover{
transform:translateY(-8px);
}

.feature-card{
text-align:center;
}

.feature-card i{
width:80px;
height:80px;
display:flex;
align-items:center;
justify-content:center;
margin:auto auto 20px;
border-radius:50%;
font-size:34px;
color:var(--primary);
background:rgba(231,76,60,.1);
}

.feature-card h3{
margin-bottom:15px;
}

.feature-card p{
line-height:1.8;
color:#666;
}

.about-section{
    max-width:1200px;
    margin:auto;
    padding:70px 40px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.section-tag{
    color:#5a1a75;
    font-weight:600;
    font-size: 20px;
    letter-spacing:1px;
}

.about-left h2{
    font-size:43px;
    color:#3e0960;
    margin:15px 0 15px;
    line-height:1.2;
}

.about-left p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

.outline-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #3e0960;
    border-radius: 50px;
    color: #3e0960;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
}

.outline-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #3e0960;
    transition: height 0.4s ease;
    z-index: -1;
}

.outline-btn:hover::after {
    height: 100%;
}

.outline-btn:hover {
    color: #fff;
}

.about-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.feature{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.feature-icon{
    width:70px;
    height:70px;
    min-width:70px;

    border-radius:50%;
    background:#f8eafc;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#3e0960;
    font-size:28px;
}

.feature h3{
    margin-bottom:10px;
    font-size:24px;
    color: #3e0960;
}

.feature p{
    color:#666;
    line-height:1.7;
}

/* STATS */

.stats-section{
padding:5px 0;
background:#fff;
}

.stats-container{
max-width:1300px;
margin:auto;
padding:0 100px;
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
}

.stats-image{
flex:1;
}

.stats-image img{
width:100%;
max-width:1000px;
}

.stats-content{
    flex:1;
    display:flex;
    justify-content:center;
}

.stats-circle{
position:relative;
width:550px;
height:450px;
border:2.5px dashed #e5e7eb;
border-radius:50%;
}

.stat-item{
position:absolute;
text-align:center;
}

.stat-item h2{
font-size:60px;
font-weight:600;
color:#3e0960;
}

.stat-item p{
font-size:18px;
color:#3b4a6b;
font-weight:600;
}

.stat-top{
top:-45px;
left:50%;
transform:translateX(-50%);
}

.stat-left{
left:-40px;
top:60%;
transform:translateY(-50%);
}

.stat-right{
right:-80px;
top:60%;
transform:translateY(-50%);
}

.about{
background:#f9f9f9;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.about h2{
margin-bottom:20px;
}

.about p{
line-height:1.8;
margin-bottom:20px;
}

.about ul{
padding-left:20px;
}

.about li{
margin-bottom:12px;
}

/* =========================
   ABOUT GLAERS SECTION
========================= */

.about.glaers{
    position:relative;
    padding:60px 0;
    background:transparent;
}

.about-layout{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:40px;
}

.about-content{
    max-width:1000px;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:35px;
}

.about-content .section-title{
    text-align:center;
    margin-bottom:10px;
}

.about-content .section-title h2{
font-size:50px;
font-weight:700;
background:linear-gradient(90deg,#ac3124,#3e0960);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-timeline{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:40px;
}

.about-timeline::before{
content:"";
position:absolute;
top:0;
bottom:0;
width:3px;
background:linear-gradient(to bottom, #d43c2d, #6a1b9a);
}

.timeline-icon{
position:relative;
z-index:2;
width:72px;
height:82px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.timeline-icon i{
font-size:30px;
color:#3e0960
}

.timeline-icon:hover{
transform:scale(1.1);
}

/*=========================
        CTA about
===========================*/

/*=================================
        About CTA Section
==================================*/

.about-cta{

    width:100%;
    padding:120px 8%;

    display:flex;
    justify-content:center;
    align-items:center;
    background-color: #ffffff;
    min-height:650px;
}

/*===============================*/

.about-cta-content{

    width:100%;
    max-width:520px;

    margin-right:auto;

    padding-left:70px;
}

/*===============================*/

.about-cta-content h2{

    font-size:38px;

    font-weight:700;

    color:#3E0960;

    line-height:1.2;

    margin-bottom:18px;
}

/*===============================*/

.about-cta-content p{

    font-size:16px;

    color:#5f6475;

    line-height:1.3;

    margin-bottom:40px;
}


/*===============================*/

.about-cta-btn{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    padding:17px 42px;

    text-decoration:none;

    color:#ffffff;

    background:#3E0960;

    border-radius:50px;

    font-weight:600;

    transition:.35s;
}

.about-cta-btn:hover{

    transform:translateY(-4px);

    background:#52107d;

    box-shadow:0 18px 35px rgba(62,9,96,.25);

}

/*==========================
        Pricing Section
===========================*/

.pricing-section{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    padding:100px 8%;

    position:relative;
    overflow:hidden;

    /* Background Image */
    background-image:url("../images/pricing-bg.png");
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}


.pricing-left,
.pricing-right{
    position: relative;
    z-index: 2;
}

.pricing-left{
    flex: 1;
}

.pricing-left h2{
    font-size: 3rem;
    font-weight: 700;
    color: #3e0960;
    margin-bottom: 20px;
    position: relative;
}

.pricing-left h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background:#3e0960;
    display: block;
    margin-top: 12px;
    border-radius: 20px;
}

.pricing-left p{
    font-size: 17px;
    line-height: 1.9;
    color: #5f6475;
    margin: 35px 0;
    max-width: 560px;
}

.pricing-right{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Glow Behind Image */

.pricing-right::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,
        rgba(62,9,96,.12),
        rgba(122,63,255,.08),
        transparent 70%);
    border-radius:50%;
    z-index:-1;
}

/* Image */

.pricing-right img{
    width:100%;
    max-width:520px;
    transition:.4s ease;
    animation:floatImage 5s ease-in-out infinite;
}

.pricing-right img:hover{
    transform:translateY(-12px);
}

/* Button */

.outline-btn{
    display:inline-block;
    padding:16px 38px;
    text-decoration:none;
    font-weight:600;
    color:#3e0960;
    border:2px solid #3e0960;
    border-radius:50px;
    transition:.35s ease;
}

.outline-btn:hover{
    background:#3e0960;
    color:#fff;
    border-color:transparent;
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(62,9,96,.25);
}

/* =========================
   Latest News Section
========================= */

.latest-news{
padding:100px 0;
background:#ffffff;
}

.latest-news .section-title{
text-align:center;
margin-bottom:30px;
}

.latest-news .section-title h2{
font-size:42px;
font-weight:700;
color:#3e0960;
margin-bottom:3px;
}

.latest-news .section-title p{
color:#666;
font-size:17px;
}

/* Grid */
.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s ease;
    align-self:start;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.news-content{
    padding:25px;
}

.news-content h3{
    font-size:22px;
    color:#3e0960;
    line-height:1.4;
    margin-bottom:15px;
}

.news-text{
    color:#666;
    font-size:15px;
    line-height:1.8;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;

    overflow:hidden;
}

.news-content.active .news-text{
    display:block;
}

.news-toggle{
    width:42px;
    height:42px;

    margin-top:20px;
    margin-left:auto;

    display:flex;
    justify-content:center;
    align-items:center;

    border:none;
    border-radius:50%;

    background:#3e0960;

    color:#fff;
    cursor:pointer;

    transition:.3s ease;
}

.news-toggle:hover{
    transform:translateX(4px);
}

.news-content.active .news-toggle i{
    transform:rotate(270deg);
}

.news-toggle i{
    transition:.7s ease;
}

/* =========================
   CTA SECTION
========================= */

.footer-cta{
    width:100%;
    background:linear-gradient(90deg, #ac3124,#3e0960);
    padding:60px 70px;

    clip-path: polygon(
        25px 0,
        calc(100% - 25px) 0,
        100% 25px,
        100% 100%,
        0 100%,
        0 25px
    );
}

.cta-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-text p{
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    color:#ffffff;
}

.cta-text h2{
    margin-bottom: 8px;
    font-size:40px;
    line-height:1.2;
    max-width:700px;
    color:#ffffff;
    font-weight:700;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:#000;
    text-decoration:none;
    padding:10px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
    transition:all .3s ease;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

/* =========================
   FOOTER
========================= */

.footer{
background:#111827;
color:#fff;
padding:100px 0 25px;
position:relative;
margin-top:0;
}

.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg, #d43c2d, #6a1b9a);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
}

.footer-logo{
width:220px;
margin-bottom:20px;
background:#ffffff;
padding:8px;
border-radius:10px;
}

.footer-col h3{
margin-bottom:20px;
font-size:22px;
color:#fff;
}

.footer-col p{
color:#cbd5e1;
line-height:1.8;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:8px;
}

.footer-social{
display:flex;
gap:15px;
}

.footer-social a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(35, 31, 31, 0.08);
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-social a:hover{
background:linear-gradient(135deg,#ac3124,#3e0960);
transform:translateY(-5px);
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:25px;
}

.footer-bottom p{
color:#94a3b8;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#430ed3;
}

/* ==================================================
                HYPER LINKS 
====================================================*/

.legal-page{
    padding:120px 0;
    background:#fff;
}

.legal-page .container{
    max-width:1000px;
}

.legal-page h1{
    font-size:48px;
    color:#3e0960;
    margin-bottom:30px;
}

.legal-page h2{
    font-size:24px;
    color:#3e0960;
    margin-top:35px;
    margin-bottom:15px;
}

.legal-page p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

/* Responsive */

@media(max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}

@media(max-width:768px){

    .cta-content h2{
        font-size:38px;
    }

    .cta-content p{
        font-size:17px;
    }

    .cta-content::before,
    .cta-content::after,
    .circle-5{
        display:none;
    }
}
/* Responsive */

@media(max-width:768px){

    .about.glaers{
        padding:80px 0;
    }

    .about.glaers .container{
        padding-left:25px;
    }

    .about.glaers .section-title h2{
        font-size:40px;
    }

    .about.glaers p{
        font-size:16px;
    }
}

@media(max-width:992px){
.hero-grid,
.about-grid,
.feature-grid,
.pricing-grid,
.stats-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:48px;
}
}

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
padding:20px;
flex-direction:column;
align-items:center;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.nav-links.active{
display:flex;
}

.nav-buttons{
display:none;
}

.hero{
padding-top:130px;
padding-bottom:90px;
}

.hero h1{
font-size:36px;
text-align:center;
}

.hero p{
text-align:center;
margin-left:auto;
margin-right:auto;
}

.hero-buttons{
justify-content:center;
flex-direction:column;
align-items:center;
}

.btn-primary,
.btn-outline{
width:100%;
max-width:280px;
text-align:center;
}

.container{
width:90%;
}

.logo img{
height:55px;
}

.testimonial-grid{
grid-template-columns:1fr;
}

.pricing-grid{
    grid-template-columns:1fr;
}

/* Responsive */

@media(max-width:768px){

    .cta-content h2{
        font-size:38px;
    }

    .cta-content p{
        font-size:17px;
    }

    .cta-btn{
        padding:15px 30px;
        font-size:16px;
    }

}


/* Responsive */
@media(max-width:992px){

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .news-grid{
        grid-template-columns:1fr;
    }

    .latest-news .section-title h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .faq-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .faq-image img{
        max-width:350px;
        margin:auto;
    }

    .faq-content{
        width:100%;
    }
}
@media(max-width:992px){

    .stats-container{
        flex-direction:column;
    }

    .stats-circle{
        width:350px;
        height:350px;
    }

    .stat-item h2{
        font-size:50px;
    }
}

@media(max-width:992px){

    .faq-wrapper{
        flex-direction:column;
    }

    .faq-image{
        position:static;
        text-align:center;
    }

    .faq-image img{
        max-width:350px;
        margin:auto;
    }

    .faq-content{
        width:100%;
    }
}
}


@media(max-width:991px){

.about-layout{
    grid-template-columns:1fr;
}

.about-timeline{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:50px;
}

.about-timeline::before{
    display:none;
}

.about-content .section-title h2{
    font-size:50px;
}

}

/*=============================
    CTA FOOTER
==============================*/

/*LARGE LAPTOP 1200PX*/

@media (max-width:1200px){

.footer-cta{
    padding:55px 40px;
}

.cta-text h2{
    font-size:36px;
}

.cta-text p{
    font-size:15px;
}

}

/*TABLET 992PX*/

@media (max-width:992px){

.footer-cta{
    padding:50px 30px;
}

.cta-content{
    flex-direction:column;
    text-align:center;
}

.cta-text h2{
    font-size:34px;
    max-width:100%;
}

.cta-text p{
    max-width:700px;
    margin:auto;
}

.cta-btn{
    margin-top:10px;
}

}

/*SMALL TABLET 768PX*/

@media (max-width:768px){

.footer-cta{
    padding:45px 20px;

    clip-path:none;
}

.cta-text h2{
    font-size:30px;
}

.cta-text p{
    font-size:14px;
    line-height:1.8;
}

.cta-btn{
    padding:15px 35px;
    font-size:16px;
}

}

/*MOBILE 576PX*/

@media (max-width:576px){

.footer-cta{
    padding:40px 15px;
}

.cta-text h2{
    font-size:26px;
}

.cta-text p{
    font-size:14px;
}

.cta-btn{
    width:100%;
    padding:15px;
    font-size:15px;
}

}

/*SMALL MOBILE 400PX*/

@media (max-width:400px){

.footer-cta{
    padding:35px 10px;
}

.cta-text h2{
    font-size:22px;
}

.cta-text p{
    font-size:13px;
}

.cta-btn{
    font-size:14px;
}

}

/*==============================
    FOOTER
==============================*/

/*LARGE LAPTOP 1200PX*/

@media (max-width:1200px){

.footer{
    padding:80px 20px 25px;
}

.footer-grid{
    gap:35px;
}

.footer-logo{
    width:190px;
}

}

/*TABLET 992PX*/

@media (max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.footer-col{
    text-align:center;
}

.footer-logo{
    margin:auto auto 20px;
}

.footer-social{
    justify-content:center;
}

}

/*SMALL TABLET 768PX*/

@media (max-width:768px){

.footer{
    padding:70px 20px 25px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.footer-col{
    text-align:center;
}

.footer-logo{
    width:180px;
}

.footer-social{
    justify-content:center;
}

.footer-bottom p{
    font-size:14px;
    line-height:1.8;
}

}

/*MOBILE 576PX*/

@media (max-width:576px){

.footer{
    padding:60px 15px 20px;
}

.footer-col h3{
    font-size:20px;
}

.footer-col p,
.footer-col ul li a{
    font-size:15px;
}

.footer-social a{
    width:42px;
    height:42px;
}

.footer-bottom{
    margin-top:30px;
}

.footer-bottom p{
    font-size:13px;
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:center;
}

}

/*SMALL MOBILE 400PX*/

@media (max-width:400px){

.footer{
    padding:50px 10px 20px;
}

.footer-logo{
    width:160px;
}

.footer-col h3{
    font-size:18px;
}

.footer-col p,
.footer-col ul li a{
    font-size:14px;
}

.footer-social{
    gap:10px;
}

.footer-social a{
    width:38px;
    height:38px;
}

.footer-bottom p{
    font-size:12px;
    line-height:1.7;
}

}
