*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#070B14;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:22px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    background:rgba(7,11,20,0.7);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.logo{
    font-size:28px;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#00B7FF;
}

.nav-btn{
    text-decoration:none;
    padding:12px 24px;
    border-radius:40px;
    background:linear-gradient(90deg,#005FDB,#00B7FF);
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.nav-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 25px rgba(0,183,255,0.4);
}

/* HERO */

.premium-hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:140px 8% 100px;
    gap:40px;
    position:relative;
}

.premium-hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#005FDB 0%,transparent 70%);
    top:-250px;
    left:-250px;
    opacity:0.35;
}

.premium-hero::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#6C3BFF 0%,transparent 70%);
    bottom:-250px;
    right:-250px;
    opacity:0.35;
}

.hero-left{
    position:relative;
    z-index:2;
}

.eyebrow{
    color:#00B7FF;
    margin-bottom:20px;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.hero-left h1{
    font-size:88px;
    line-height:1.02;
    margin-bottom:25px;
    font-family:'Poppins',sans-serif;
}

.hero-left h1 span{
    background:linear-gradient(90deg,#00B7FF,#6C3BFF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:#cbd5e1;
    max-width:650px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    text-decoration:none;
    background:linear-gradient(90deg,#005FDB,#00B7FF);
    padding:16px 34px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 30px rgba(0,183,255,0.4);
}

.secondary-btn{
    text-decoration:none;
    border:1px solid rgba(255,255,255,0.1);
    padding:16px 34px;
    border-radius:50px;
    color:#fff;
    transition:0.3s;
}

.secondary-btn:hover{
    background:#111827;
}

/* HERO RIGHT */

.hero-right{
    position:relative;
    height:760px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;
}

.orbit-glow{
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#00B7FF 0%,transparent 70%);
    opacity:0.18;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.hero-right::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,#00B7FF 0%,transparent 70%);
    filter:blur(80px);
    opacity:0.18;
    z-index:1;
}

.hero-right::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle,#6C3BFF 0%,transparent 70%);
    filter:blur(90px);
    opacity:0.22;
    right:40px;
    bottom:60px;
    z-index:1;
}

.astronaut-img{
    width:130%;
    max-width:850px;
    position:relative;
    z-index:2;
    animation:floatAstronaut 6s ease-in-out infinite;
    filter:
        drop-shadow(0 0 60px rgba(0,183,255,0.45))
        drop-shadow(0 0 120px rgba(108,59,255,0.25));
    mix-blend-mode:screen;
    opacity:0.96;
}

.floating-card{
    position:absolute;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:22px;
    width:220px;
    z-index:5;
    box-shadow:0 0 25px rgba(0,0,0,0.25);
}

.floating-card span{
    display:block;
    margin-bottom:8px;
    color:#cbd5e1;
}

.floating-card strong{
    font-size:32px;
}

.floating-card small{
    display:block;
    margin-top:10px;
    color:#00ffae;
}

.card-one{
    top:20px;
    right:-20px;
}

.card-two{
    bottom:120px;
    left:-40px;
}

.card-three{
    bottom:10px;
    right:0;
}

/* STATS */

.stats{
    padding:0 8% 120px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:45px 30px;
    text-align:center;
    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-6px);
    border-color:#00B7FF;
}

.stat-box h2{
    color:#00B7FF;
    font-size:52px;
    margin-bottom:12px;
}

/* SECTION */

.section{
    padding:120px 8%;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:60px;
}

.section h2{
    font-size:52px;
    line-height:1.2;
    max-width:700px;
    font-family:'Poppins',sans-serif;
}

/* SERVICES */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:35px;
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:radial-gradient(circle,#00B7FF 0%,transparent 70%);
    top:-60px;
    right:-60px;
    opacity:0;
    transition:0.4s;
}

.service-card:hover::before{
    opacity:0.25;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
}

.service-card span{
    font-size:40px;
    display:block;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* ABOUT */

.about-preview{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:80px;
    align-items:center;
}

.about-preview p{
    color:#cbd5e1;
    line-height:1.8;
    margin-top:20px;
}

.check-list{
    margin:30px 0;
    list-style:none;
}

.check-list li{
    margin-bottom:15px;
}

.about-card{
    height:350px;
    border-radius:30px;
    background:linear-gradient(135deg,#005FDB,#6C3BFF);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    box-shadow:0 0 40px rgba(0,183,255,0.25);
}

.about-card h3{
    font-size:100px;
}

/* PROCESS */

.process{
    text-align:center;
}

.process h2{
    margin:auto;
    margin-bottom:70px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.process-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:40px;
}

.process-card strong{
    font-size:42px;
    color:#00B7FF;
}

.process-card h3{
    margin:20px 0;
}

/* CTA */

.cta-section{
    margin:100px 8%;
    padding:100px 8%;
    text-align:center;
    border-radius:40px;
    background:linear-gradient(135deg,#005FDB,#6C3BFF);
    box-shadow:0 0 50px rgba(0,183,255,0.2);
}

.cta-section h2{
    font-size:56px;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
}

.cta-section p{
    margin-bottom:40px;
}

/* FOOTER */

.footer{
    padding:100px 8%;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer h2{
    margin-bottom:20px;
}

.footer h4{
    margin-bottom:20px;
}

.footer p,
.footer a{
    color:#cbd5e1;
    text-decoration:none;
    display:block;
    margin-bottom:12px;
}

/* ANIMATION */

@keyframes floatAstronaut{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* MOBILE */

@media(max-width:1100px){

.premium-hero{
    grid-template-columns:1fr;
}

.about-preview{
    grid-template-columns:1fr;
}

.footer{
    grid-template-columns:1fr 1fr;
}

.hero-right{
    height:600px;
}

}

@media(max-width:768px){

.nav-links{
    display:none;
}

.hero-left h1{
    font-size:52px;
}

.section h2{
    font-size:38px;
}

.hero-text{
    font-size:17px;
}

.cta-section h2{
    font-size:38px;
}

.footer{
    grid-template-columns:1fr;
}

.hero-right{
    display:none;
}

}

@media(max-width:600px){

.navbar{
    padding:18px 5%;
}

.logo{
    font-size:22px;
}

.nav-btn{
    padding:10px 18px;
    font-size:14px;
}

.premium-hero{
    padding:120px 5% 80px;
}

.hero-left h1{
    font-size:42px;
}

.section{
    padding:80px 5%;
}

.stats{
    padding:0 5% 80px;
}

.hero-buttons{
    flex-direction:column;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

.section-head{
    flex-direction:column;
    align-items:flex-start;
}

}
/* CONTACT PAGE */

.page-hero{
    padding:170px 8% 90px;
    text-align:center;
    background:
        radial-gradient(circle at top left, rgba(0,95,219,0.35), transparent 40%),
        radial-gradient(circle at bottom right, rgba(108,59,255,0.28), transparent 40%);
}

.page-hero h1{
    font-size:62px;
    font-family:'Poppins',sans-serif;
    margin-bottom:20px;
}

.page-hero p{
    max-width:800px;
    margin:auto;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

.contact-section{
    padding:80px 8% 120px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
}

.contact-info h2{
    font-size:42px;
    font-family:'Poppins',sans-serif;
    margin-bottom:20px;
}

.contact-info > p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:25px;
    margin-bottom:20px;
}

.contact-card strong{
    color:#00B7FF;
    display:block;
    margin-bottom:10px;
}

.contact-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.contact-form{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(14px);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    margin-bottom:18px;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-family:'Inter',sans-serif;
    outline:none;
}

.contact-form textarea{
    min-height:150px;
    resize:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#94a3b8;
}

.contact-form select{
    color:#94a3b8;
}

.contact-form button{
    width:100%;
    padding:17px;
    border:none;
    border-radius:50px;
    background:linear-gradient(90deg,#005FDB,#00B7FF);
    color:#fff;
    font-weight:700;
    cursor:pointer;
    font-size:16px;
}

.success-msg{
    background:rgba(0,255,174,0.12);
    color:#00ffae;
    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

.error-msg{
    background:rgba(255,0,80,0.12);
    color:#ff5c8a;
    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

@media(max-width:900px){
    .contact-section{
        grid-template-columns:1fr;
    }

    .page-hero h1{
        font-size:42px;
    }
}
/* CONTACT PAGE STARTS HERE */

.page-hero{
    padding:170px 8% 90px;
    text-align:center;
    background:
        radial-gradient(circle at top left, rgba(0,95,219,0.35), transparent 40%),
        radial-gradient(circle at bottom right, rgba(108,59,255,0.28), transparent 40%);
}

.page-hero h1{
    font-size:62px;
    font-family:'Poppins',sans-serif;
    margin-bottom:20px;
}

.page-hero p{
    max-width:800px;
    margin:auto;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

.contact-section{
    padding:80px 8% 120px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
}

.contact-info h2{
    font-size:42px;
    font-family:'Poppins',sans-serif;
    margin-bottom:20px;
}

.contact-info > p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:25px;
    margin-bottom:20px;
    backdrop-filter:blur(14px);
}

.contact-card strong{
    color:#00B7FF;
    display:block;
    margin-bottom:10px;
}

.contact-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.contact-form{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(14px);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    margin-bottom:18px;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#ffffff;
    font-family:'Inter',sans-serif;
    outline:none;
    font-size:15px;
}

.contact-form textarea{
    min-height:150px;
    resize:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#94a3b8;
}

.contact-form select{
    color:#94a3b8;
}

.contact-form option{
    background:#0f172a;
    color:#ffffff;
}

.contact-form button{
    width:100%;
    padding:17px;
    border:none;
    border-radius:50px;
    background:linear-gradient(90deg,#005FDB,#00B7FF);
    color:#ffffff;
    font-weight:700;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 30px rgba(0,183,255,0.35);
}

.success-msg{
    background:rgba(0,255,174,0.12);
    color:#00ffae;
    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

.error-msg{
    background:rgba(255,0,80,0.12);
    color:#ff5c8a;
    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

@media(max-width:900px){

    .contact-section{
        grid-template-columns:1fr;
    }

    .page-hero h1{
        font-size:42px;
    }

}
/* SERVICE CARD LINKS */

.service-link-card{
    text-decoration:none !important;
    display:block !important;
}

.service-link-card h3,
.service-link-card p,
.service-link-card span{
    color:#ffffff !important;
}

.service-arrow{
    margin-top:24px;
    color:#00B7FF;
    font-weight:700;
    font-size:15px;
    transition:0.3s;
}

.service-link-card:hover .service-arrow{
    transform:translateX(6px);
}
/* BLOGS */

.blogs-section{
    padding:80px 8% 120px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.blog-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    transition:0.3s;
    backdrop-filter:blur(12px);
}

.blog-card:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:28px;
}

.blog-date{
    color:#00B7FF;
    font-size:14px;
    display:block;
    margin-bottom:14px;
}

.blog-content h2{
    font-size:28px;
    margin-bottom:18px;
    line-height:1.3;
}

.blog-content p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:24px;
}

.read-more-btn{
    text-decoration:none;
    display:inline-block;
    padding:14px 24px;
    border-radius:50px;
    background:linear-gradient(90deg,#005FDB,#00B7FF);
    color:#fff;
    font-weight:700;
}

/* BLOG DETAIL */

.blog-detail-hero{
    padding:180px 8% 90px;
    text-align:center;
}

.blog-detail-hero h1{
    max-width:900px;
    margin:auto;
    margin-bottom:20px;
    font-size:62px;
    line-height:1.2;
    font-family:'Poppins',sans-serif;
}

.blog-detail-hero p{
    color:#94a3b8;
}

.blog-detail-section{
    padding:0 8% 120px;
    max-width:1100px;
    margin:auto;
}

.blog-detail-img{
    width:100%;
    border-radius:30px;
    margin-bottom:50px;
}

.blog-detail-content{
    font-size:18px;
    line-height:2;
    color:#cbd5e1;
}

.blog-detail-content h2,
.blog-detail-content h3{
    color:#fff;
    margin:35px 0 20px;
}

.blog-detail-content p{
    margin-bottom:24px;
}

@media(max-width:768px){

    .blog-detail-hero h1{
        font-size:42px;
    }

}
/* SERVICES PAGE */

.services-page-section{
    padding:80px 8% 120px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-page-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(14px);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.service-page-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:radial-gradient(circle,#00B7FF 0%,transparent 70%);
    top:-70px;
    right:-70px;
    opacity:0;
    transition:0.4s;
}

.service-page-card:hover::before{
    opacity:0.22;
}

.service-page-card:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
}

.service-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:linear-gradient(135deg,#005FDB,#6C3BFF);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    box-shadow:0 0 30px rgba(0,183,255,0.22);
}

.service-page-card h2{
    font-size:30px;
    margin-bottom:18px;
    font-family:'Poppins',sans-serif;
}

.service-page-card p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:25px;
}

.service-page-card ul{
    list-style:none;
}

.service-page-card ul li{
    margin-bottom:14px;
    color:#ffffff;
    position:relative;
    padding-left:24px;
}

.service-page-card ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#00B7FF;
    font-weight:bold;
}
/* SERVICES PAGE FIX */

.services-page-section{
    padding:80px 8% 120px !important;
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr)) !important;
    gap:30px !important;
}

.service-page-card{
    background:rgba(255,255,255,0.05) !important;
    border:1px solid rgba(255,255,255,0.08) !important;
    border-radius:30px !important;
    padding:40px !important;
    backdrop-filter:blur(14px) !important;
    transition:0.3s !important;
}

.service-page-card:hover{
    transform:translateY(-8px) !important;
    border-color:#00B7FF !important;
}

.service-icon{
    width:72px !important;
    height:72px !important;
    border-radius:20px !important;
    background:linear-gradient(135deg,#005FDB,#6C3BFF) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:34px !important;
    margin-bottom:25px !important;
}

.service-page-card h2{
    font-size:30px !important;
    margin-bottom:18px !important;
}

.service-page-card p{
    color:#cbd5e1 !important;
    line-height:1.8 !important;
    margin-bottom:25px !important;
}

.service-page-card ul{
    list-style:none !important;
}

.service-page-card ul li{
    margin-bottom:14px !important;
    padding-left:24px !important;
    position:relative !important;
}

.service-page-card ul li::before{
    content:'✓' !important;
    position:absolute !important;
    left:0 !important;
    color:#00B7FF !important;
}
/* ABOUT PAGE */

.about-page-section{
    padding:80px 8% 120px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.about-page-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    font-family:'Poppins',sans-serif;
}

.about-page-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:22px;
}

.about-points{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-top:40px;
}

.about-points div{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:18px;
    backdrop-filter:blur(10px);
}

.about-page-card{
    min-height:420px;
    border-radius:36px;
    background:linear-gradient(135deg,#005FDB,#6C3BFF);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    padding:40px;
    box-shadow:0 0 50px rgba(0,183,255,0.25);
}

.about-page-card h3{
    font-size:62px;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
}

.about-page-card p{
    font-size:22px;
}

@media(max-width:900px){

    .about-page-section{
        grid-template-columns:1fr;
    }

    .about-page-content h2{
        font-size:40px;
    }

}
/* ABOUT PAGE FIX */

.about-page-section{
    padding:80px 8% 120px !important;
    display:grid !important;
    grid-template-columns:1.2fr 1fr !important;
    gap:60px !important;
    align-items:center !important;
}

.about-page-content h2{
    font-size:52px !important;
    line-height:1.2 !important;
    margin-bottom:25px !important;
}

.about-page-content p{
    color:#cbd5e1 !important;
    line-height:1.9 !important;
    margin-bottom:22px !important;
}

.about-points{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr)) !important;
    gap:18px !important;
    margin-top:40px !important;
}

.about-points div{
    background:rgba(255,255,255,0.05) !important;
    border:1px solid rgba(255,255,255,0.08) !important;
    border-radius:18px !important;
    padding:18px !important;
}

.about-page-card{
    min-height:420px !important;
    border-radius:36px !important;
    background:linear-gradient(135deg,#005FDB,#6C3BFF) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    text-align:center !important;
    padding:40px !important;
}

.about-page-card h3{
    font-size:62px !important;
    margin-bottom:20px !important;
}

.about-page-card p{
    font-size:22px !important;
}

@media(max-width:900px){

    .about-page-section{
        grid-template-columns:1fr !important;
    }

}
/* INDUSTRIES SECTION */

.industries-section{
    position:relative;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
    margin-top:40px;
}

.industry-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:22px;
    text-align:center;
    font-weight:600;
    color:#ffffff;
    backdrop-filter:blur(12px);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.industry-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:radial-gradient(circle,#00B7FF 0%,transparent 70%);
    top:-60px;
    right:-60px;
    opacity:0;
    transition:0.4s;
}

.industry-card:hover::before{
    opacity:0.25;
}

.industry-card:hover{
    transform:translateY(-6px);
    border-color:#00B7FF;
    box-shadow:0 0 25px rgba(0,183,255,0.15);
}
/* FLOATING CONTACT BUTTONS */

.floating-contact{
    position:fixed;
    right:22px;
    bottom:22px;
    display:flex;
    flex-direction:column;
    gap:16px;
    z-index:9999;
}

.floating-btn{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:30px;
    color:#fff;
    box-shadow:0 0 25px rgba(0,0,0,0.25);
    transition:0.3s;
    backdrop-filter:blur(12px);
}

.floating-btn:hover{
    transform:translateY(-5px) scale(1.05);
}

.whatsapp-btn{
    background:linear-gradient(135deg,#00c853,#00e676);
    box-shadow:0 0 30px rgba(0,230,118,0.35);
}

.call-btn{
    background:linear-gradient(135deg,#005FDB,#00B7FF);
    box-shadow:0 0 30px rgba(0,183,255,0.35);
}

@media(max-width:768px){

    .floating-btn{
        width:58px;
        height:58px;
        font-size:26px;
    }

}
/* MOBILE HAMBURGER MENU */

.menu-toggle{
    display:none;
}

.hamburger{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#ffffff;
    z-index:1001;
}

@media(max-width:768px){

    .hamburger{
        display:block;
    }

    .mobile-nav{
        position:absolute;
        top:75px;
        left:5%;
        right:5%;
        background:rgba(7,11,20,0.96);
        border:1px solid rgba(255,255,255,0.10);
        border-radius:22px;
        padding:25px;
        display:none;
        backdrop-filter:blur(16px);
    }

    .mobile-nav .nav-links{
        display:flex !important;
        flex-direction:column;
        gap:18px;
    }

    .menu-toggle:checked ~ .mobile-nav{
        display:block;
    }

}
/* FINAL CLEAN MOBILE FIX */

@media(max-width:768px){

    .navbar{
        padding:14px 5% !important;
        height:72px !important;
    }

    .logo{
        font-size:18px !important;
    }

    .nav-btn{
        padding:9px 14px !important;
        font-size:12px !important;
    }

    .hamburger{
        display:block !important;
        font-size:24px !important;
    }

    .premium-hero{
        display:block !important;
        min-height:auto !important;
        padding:105px 5% 45px !important;
    }

    .hero-left h1{
        font-size:38px !important;
        line-height:1.08 !important;
    }

    .hero-text{
        font-size:15px !important;
        line-height:1.7 !important;
    }

    .hero-buttons{
        flex-direction:column !important;
        gap:12px !important;
        margin-top:28px !important;
    }

    .primary-btn,
    .secondary-btn{
        width:100% !important;
        padding:14px 18px !important;
        font-size:14px !important;
        text-align:center !important;
    }

    .hero-right{
        display:block !important;
        height:auto !important;
        margin-top:30px !important;
    }

    .astronaut-img{
        width:100% !important;
        max-width:340px !important;
        margin:auto !important;
        display:block !important;
    }

    .floating-card{
        display:none !important;
    }

    .stats{
        grid-template-columns:1fr 1fr !important;
        padding:25px 5% 45px !important;
        gap:14px !important;
    }

    .stat-box{
        padding:22px 12px !important;
        border-radius:18px !important;
    }

    .stat-box h2{
        font-size:30px !important;
    }

    .stat-box p{
        font-size:13px !important;
    }

    .section{
        padding:55px 5% !important;
    }

    .section h2{
        font-size:30px !important;
        line-height:1.25 !important;
    }

    .section-head{
        margin-bottom:28px !important;
    }

    .service-grid,
    .process-grid{
        grid-template-columns:1fr !important;
        gap:16px !important;
    }

    .service-card,
    .process-card{
        padding:22px !important;
        border-radius:20px !important;
    }

    .service-card span{
        font-size:28px !important;
        margin-bottom:12px !important;
    }

    .service-card h3,
    .process-card h3{
        font-size:21px !important;
    }

    .service-card p,
    .process-card p{
        font-size:14px !important;
        line-height:1.6 !important;
    }

    .process-card strong{
        font-size:32px !important;
    }

    .about-preview{
        grid-template-columns:1fr !important;
        gap:28px !important;
    }

    .about-card{
        min-height:200px !important;
        border-radius:24px !important;
    }

    .about-card h3{
        font-size:54px !important;
    }

    .industries-grid{
        grid-template-columns:1fr 1fr !important;
        gap:12px !important;
    }

    .industry-card{
        padding:13px 10px !important;
        font-size:13px !important;
        border-radius:14px !important;
        text-align:center !important;
    }

    .cta-section{
        margin:45px 5% !important;
        padding:42px 22px !important;
        border-radius:24px !important;
    }

    .cta-section h2{
        font-size:28px !important;
    }

    .footer{
        grid-template-columns:1fr !important;
        padding:55px 5% !important;
    }

    .floating-contact{
        right:12px !important;
        bottom:86px !important;
        gap:9px !important;
    }

    .floating-btn{
        width:46px !important;
        height:46px !important;
        font-size:20px !important;
    }
}
/* SCROLL REVEAL ANIMATIONS */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* HERO FINAL POLISH */

.hero-text{
    max-width:560px !important;
}

.astronaut-img{
    border-radius:28px !important;
    -webkit-mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.card-one{
    top:30px !important;
    right:40px !important;
}

.card-two{
    bottom:90px !important;
    left:20px !important;
}

.card-three{
    bottom:20px !important;
    right:45px !important;
}
/* TESTIMONIALS SECTION */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.testimonial-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:35px;
    backdrop-filter:blur(14px);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
}

.testimonial-card p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:24px;
}

.testimonial-card h3{
    font-size:22px;
    margin-bottom:8px;
}

.testimonial-card span{
    color:#00B7FF;
}
/* PREMIUM FOOTER FINAL FIX */

.footer.premium-footer{
    display:block !important;
    grid-template-columns:none !important;
    margin-top:120px !important;
    padding:90px 8% 35px !important;
    background:linear-gradient(180deg,#050b16 0%,#020617 100%) !important;
    border-top:1px solid rgba(255,255,255,0.08) !important;
}

.footer-top{
    display:grid !important;
    grid-template-columns:1.5fr 1fr 1fr 1fr !important;
    gap:60px !important;
    align-items:flex-start !important;
}

.footer-brand h2{
    font-size:34px !important;
    margin-bottom:22px !important;
}

.footer-brand p{
    color:#cbd5e1 !important;
    line-height:1.8 !important;
    max-width:390px !important;
    margin-bottom:30px !important;
}

.footer-socials{
    display:flex !important;
    gap:14px !important;
    flex-wrap:wrap !important;
}

.footer-socials a{
    display:inline-flex !important;
    padding:12px 16px !important;
    border-radius:14px !important;
    border:1px solid rgba(0,183,255,0.35) !important;
    color:#00B7FF !important;
    text-decoration:none !important;
    margin-bottom:0 !important;
}

.footer-links,
.footer-contact{
    display:flex !important;
    flex-direction:column !important;
}

.footer-links h4,
.footer-contact h4{
    font-size:20px !important;
    margin-bottom:28px !important;
    position:relative !important;
}

.footer-links h4::after,
.footer-contact h4::after{
    content:'' !important;
    position:absolute !important;
    left:0 !important;
    bottom:-10px !important;
    width:48px !important;
    height:3px !important;
    background:#00B7FF !important;
    border-radius:20px !important;
}

.footer-links a{
    color:#cbd5e1 !important;
    text-decoration:none !important;
    margin-bottom:16px !important;
    transition:0.3s !important;
}

.footer-links a:hover{
    color:#00B7FF !important;
    transform:translateX(5px) !important;
}

.footer-contact p{
    color:#cbd5e1 !important;
    margin-bottom:16px !important;
}

.footer-btn{
    display:inline-flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin-top:20px !important;
    padding:15px 24px !important;
    border-radius:16px !important;
    background:linear-gradient(90deg,#005FDB,#00B7FF) !important;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:700 !important;
    width:max-content !important;
}

.footer-bottom{
    margin-top:70px !important;
    padding-top:28px !important;
    border-top:1px solid rgba(255,255,255,0.08) !important;
    text-align:center !important;
}

.footer-bottom p{
    color:#94a3b8 !important;
    margin:0 !important;
}

@media(max-width:900px){
    .footer-top{
        grid-template-columns:1fr !important;
        gap:42px !important;
    }

    .footer.premium-footer{
        padding:65px 5% 30px !important;
    }
}
/* FOOTER SOCIAL ICONS */

.footer-socials a{
    width:52px !important;
    height:52px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:16px !important;
    font-size:22px !important;
    background:rgba(255,255,255,0.04) !important;
    border:1px solid rgba(255,255,255,0.1) !important;
    color:#00B7FF !important;
    transition:0.3s !important;
    text-decoration:none !important;
}

.footer-socials a:hover{
    transform:translateY(-5px) !important;
    background:linear-gradient(135deg,#007BFF,#7B3CFF) !important;
    color:#fff !important;
    box-shadow:0 10px 25px rgba(0,183,255,0.3) !important;
}
/* PREMIUM PAGE LOADER */

#page-loader{
    position:fixed;
    inset:0;
    background:#070B14;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    transition:opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content{
    text-align:center;
}

.loader-logo{
    font-size:54px;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    letter-spacing:4px;
    background:linear-gradient(90deg,#00B7FF,#7B3CFF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:30px;
}

.loader-line{
    width:220px;
    height:5px;
    margin:auto;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    overflow:hidden;
    position:relative;
}

.loader-line::before{
    content:'';
    position:absolute;
    left:-40%;
    top:0;
    width:40%;
    height:100%;
    background:linear-gradient(90deg,#00B7FF,#7B3CFF);
    animation:loaderMove 1.2s linear infinite;
}

.loader-content p{
    margin-top:24px;
    color:#94a3b8;
    letter-spacing:2px;
    font-size:14px;
}

@keyframes loaderMove{
    0%{
        left:-40%;
    }

    100%{
        left:100%;
    }
}

body.loaded #page-loader{
    opacity:0;
    visibility:hidden;
}

@media(max-width:768px){

    .loader-logo{
        font-size:36px;
    }

    .loader-line{
        width:170px;
    }

}
/* SERVICE DETAIL PAGE */

.service-hero{
    min-height:70vh;
    padding:170px 8% 100px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top left, rgba(0,95,219,0.35), transparent 38%),
        radial-gradient(circle at bottom right, rgba(108,59,255,0.28), transparent 42%);
}

.service-hero-content{
    max-width:900px;
}

.service-hero h1{
    font-size:64px;
    line-height:1.15;
    margin-bottom:24px;
    font-family:'Poppins',sans-serif;
}

.service-hero p{
    color:#cbd5e1;
    font-size:19px;
    line-height:1.8;
    margin-bottom:35px;
}

.service-content{
    max-width:1050px;
    margin:auto;
}

.service-content h2{
    font-size:42px;
    margin:45px 0 20px;
}

.service-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:22px;
    font-size:17px;
}

.service-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin:35px 0;
}

.feature-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:22px;
    border-radius:18px;
    color:#fff;
    font-weight:600;
}

.service-list{
    margin:30px 0;
    list-style:none;
}

.service-list li{
    margin-bottom:16px;
    color:#cbd5e1;
    padding-left:28px;
    position:relative;
}

.service-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#00B7FF;
    font-weight:700;
}

@media(max-width:768px){
    .service-hero{
        padding:125px 5% 70px;
        min-height:auto;
    }

    .service-hero h1{
        font-size:38px;
    }

    .service-hero p{
        font-size:16px;
    }

    .service-content h2{
        font-size:30px;
    }
}
/* SERVICE PAGE FINAL SPACING FIX */

.service-hero{
    min-height:auto !important;
    padding:150px 8% 80px !important;
}

.service-content-section{
    padding:80px 8% 70px !important;
}

.service-content h2{
    margin:35px 0 18px !important;
}

.service-content p{
    margin-bottom:18px !important;
}

.service-features{
    margin:30px 0 45px !important;
}

.service-list{
    margin:25px 0 45px !important;
}

.service-content-section + .cta-section{
    margin-top:40px !important;
}

.service-content-section + .cta-section + .premium-footer,
.premium-footer{
    margin-top:70px !important;
}

@media(max-width:768px){
    .service-hero{
        padding:120px 5% 55px !important;
    }

    .service-content-section{
        padding:55px 5% 45px !important;
    }
}
/* SEO SERVICE PAGE PREMIUM DESIGN */

.seo-hero{
    display:grid !important;
    grid-template-columns:1.1fr 0.9fr !important;
    gap:60px !important;
}

.seo-hero-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:32px;
    padding:36px;
    backdrop-filter:blur(18px);
    box-shadow:0 0 45px rgba(0,183,255,0.18);
}

.seo-bar{
    width:100%;
    height:14px;
    border-radius:30px;
    background:linear-gradient(90deg,#005FDB,#00B7FF,#6C3BFF);
    margin-bottom:30px;
}

.seo-hero-card h3{
    font-size:30px;
    margin-bottom:12px;
}

.seo-hero-card p{
    color:#cbd5e1;
    margin-bottom:25px;
}

.seo-metric{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:18px;
    margin-bottom:16px;
}

.seo-metric span{
    color:#cbd5e1;
}

.seo-metric strong{
    color:#00B7FF;
    font-size:24px;
}

.seo-search-box{
    margin-top:25px;
    padding:18px;
    border-radius:18px;
    background:#020617;
    color:#00B7FF;
    border:1px solid rgba(0,183,255,0.25);
}

.seo-visual-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:22px;
    margin:45px 0;
}

.seo-visual-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:30px;
}

.seo-visual-card span{
    font-size:34px;
    display:block;
    margin-bottom:18px;
}

.seo-visual-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.seo-process-section{
    padding:90px 8%;
    text-align:center;
}

.seo-process-section h2{
    font-size:52px;
    margin-bottom:60px;
    font-family:'Poppins',sans-serif;
}

.seo-process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.seo-process-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:35px;
    text-align:left;
}

.seo-process-card strong{
    font-size:38px;
    color:#00B7FF;
}

.seo-process-card h3{
    margin:20px 0 12px;
    font-size:24px;
}

.seo-process-card p{
    color:#cbd5e1;
    line-height:1.7;
}

@media(max-width:900px){

    .seo-hero{
        grid-template-columns:1fr !important;
    }

    .seo-hero-card{
        margin-top:20px;
    }

    .seo-process-section h2{
        font-size:34px;
    }

}
/* ADVANCED HOVER GLOW ANIMATIONS */

.service-card,
.stat-box,
.process-card,
.testimonial-card,
.industry-card,
.seo-visual-card,
.seo-process-card{
    position:relative;
    overflow:hidden;
}

.service-card::after,
.stat-box::after,
.process-card::after,
.testimonial-card::after,
.industry-card::after,
.seo-visual-card::after,
.seo-process-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at var(--x) var(--y), rgba(0,183,255,0.22), transparent 32%);
    opacity:0;
    transition:opacity 0.35s ease;
    pointer-events:none;
}

.service-card:hover::after,
.stat-box:hover::after,
.process-card:hover::after,
.testimonial-card:hover::after,
.industry-card:hover::after,
.seo-visual-card:hover::after,
.seo-process-card:hover::after{
    opacity:1;
}
/* FAQ SECTION */

.faq-section{
    padding:110px 8%;
}

.faq-section h2{
    font-size:52px;
    margin:18px 0 60px;
    text-align:center;
    font-family:'Poppins',sans-serif;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.faq-item{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:26px;
    padding:32px;
    transition:0.35s ease;
}

.faq-item:hover{
    transform:translateY(-8px);
    border-color:rgba(0,183,255,0.35);
    box-shadow:0 18px 45px rgba(0,183,255,0.12);
}

.faq-item h3{
    font-size:24px;
    margin-bottom:18px;
    line-height:1.4;
}

.faq-item p{
    color:#cbd5e1;
    line-height:1.8;
}

@media(max-width:768px){

    .faq-section{
        padding:80px 5%;
    }

    .faq-section h2{
        font-size:36px;
        margin-bottom:40px;
    }

}
/* PREMIUM CONTACT FUNNEL */

.contact-funnel-hero{
    max-width:950px;
    margin:auto;
    text-align:center;
    padding-bottom:70px;
}

.contact-funnel-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:0 8% 100px;
    align-items:start;
}

.contact-funnel-left h2{
    font-size:54px;
    line-height:1.15;
    margin:20px 0 28px;
    font-family:'Poppins',sans-serif;
}

.contact-funnel-left p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:17px;
}

.funnel-benefits{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.funnel-benefits div{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:18px 22px;
    border-radius:18px;
    color:#fff;
}

.contact-trust-box{
    margin-top:40px;
    padding:30px;
    border-radius:28px;
    background:linear-gradient(135deg,rgba(0,95,219,0.18),rgba(108,59,255,0.18));
    border:1px solid rgba(255,255,255,0.08);
}

.contact-trust-box h3{
    font-size:28px;
    margin-bottom:15px;
}

.premium-contact-form{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:32px;
    padding:40px;
    backdrop-filter:blur(18px);
}

.premium-contact-form h2{
    font-size:38px;
    margin-bottom:10px;
}

.form-subtitle{
    color:#94a3b8;
    margin-bottom:30px;
}

.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea{
    width:100%;
    margin-bottom:18px;
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.04);
    color:#fff;
    font-size:16px;
}

.premium-contact-form textarea{
    min-height:150px;
    resize:none;
}

.premium-contact-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:18px;
    background:linear-gradient(90deg,#005FDB,#00B7FF);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.premium-contact-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,183,255,0.25);
}

.premium-contact-form small{
    display:block;
    margin-top:18px;
    color:#94a3b8;
    text-align:center;
}

.contact-proof-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    padding:0 8% 110px;
}

.contact-proof-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:26px;
    padding:35px;
}

.contact-proof-card strong{
    display:block;
    font-size:28px;
    margin-bottom:14px;
}

.contact-proof-card p{
    color:#cbd5e1;
    line-height:1.8;
}

@media(max-width:900px){

    .contact-funnel-section{
        grid-template-columns:1fr;
        padding:0 5% 80px;
    }

    .contact-funnel-left h2{
        font-size:38px;
    }

    .premium-contact-form{
        padding:28px;
    }

    .contact-proof-section{
        padding:0 5% 80px;
    }

}
.service-hero{
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.service-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(102,0,255,0.18);
    filter:blur(120px);
    right:-120px;
    top:0;
    z-index:0;
}

.service-hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:900px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    color:#cfcfcf;
    max-width:1000px;
}

.eyebrow{
    color:#00B7FF;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:15px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(90deg,#00B7FF,#6C3BFF);
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.06);
}

.hero-tags{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-tags span{
    padding:10px 18px;
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.03);
    border-radius:50px;
    color:#d7d7d7;
    font-size:14px;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:46px;
    }

    .hero-content p{
        font-size:18px;
    }

}
.section{
    padding:110px 0;
}

.section-heading{
    max-width:1000px;
}

.section-heading h2{
    font-size:58px;
    line-height:1.2;
    margin:20px 0;
}

.section-heading p{
    font-size:20px;
    line-height:1.9;
    color:#cfcfcf;
    margin-bottom:25px;
}

.seo-benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}

.seo-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:40px;
    transition:0.3s;
}

.seo-card:hover{
    transform:translateY(-8px);
    border-color:rgba(108,59,255,0.4);
}

.seo-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.seo-card p{
    color:#cfcfcf;
    line-height:1.8;
}

@media(max-width:900px){

.seo-benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:70px;
}

    .section-heading h2{
        font-size:42px;
    }

}
.why-seo-section .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}

.why-seo-section .section-heading{
    max-width:900px;
}

@media(max-width:768px){
    .why-seo-section .container{
        padding:0 22px;
    }
}
.process-grid{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr)) !important;
    gap:30px !important;
    margin-top:70px !important;
}
/* SEO PAGE PROCESS GRID FORCE FIX */

.seo-process-section .process-grid,
.process-grid,
.seo-process-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:30px !important;
    margin-top:70px !important;
}

.seo-process-section .process-card,
.process-card,
.seo-process-card{
    width:100% !important;
    min-width:0 !important;
}

@media(max-width:1100px){
    .seo-process-section .process-grid,
    .process-grid,
    .seo-process-grid{
        grid-template-columns:repeat(2, 1fr) !important;
    }
}

@media(max-width:768px){
    .seo-process-section .process-grid,
    .process-grid,
    .seo-process-grid{
        grid-template-columns:1fr !important;
    }
}
/* SEO PAGE SIZE FIX */

.service-hero{
    padding:90px 0 !important;
}

.hero-content{
    max-width:760px !important;
}

.hero-content h1{
    font-size:54px !important;
    line-height:1.1 !important;
    margin:18px 0 !important;
}

.hero-content p{
    font-size:17px !important;
    line-height:1.8 !important;
    max-width:760px !important;
}

.hero-buttons{
    margin-top:28px !important;
}

.btn-primary,
.btn-secondary{
    padding:14px 28px !important;
    font-size:15px !important;
}

.hero-tags{
    margin-top:24px !important;
    gap:12px !important;
}

.hero-tags span{
    padding:8px 14px !important;
    font-size:13px !important;
}

.section{
    padding:75px 0 !important;
}

.section-heading{
    max-width:820px !important;
}

.section-heading h2{
    font-size:40px !important;
    margin:16px 0 !important;
}

.section-heading p{
    font-size:16px !important;
    line-height:1.8 !important;
    margin-bottom:18px !important;
}

.seo-benefits-grid{
    gap:22px !important;
    margin-top:45px !important;
}

.seo-card{
    padding:28px !important;
    border-radius:22px !important;
}

.seo-card h3{
    font-size:22px !important;
    margin-bottom:14px !important;
}

.seo-card p{
    font-size:15px !important;
    line-height:1.7 !important;
}

.seo-process-section{
    padding:75px 0 !important;
}

.process-grid{
    gap:22px !important;
    margin-top:45px !important;
}

.process-card{
    padding:28px !important;
    border-radius:22px !important;
}

.process-card span{
    font-size:42px !important;
    margin-bottom:12px !important;
}

.process-card h3{
    font-size:22px !important;
    margin-bottom:14px !important;
}

.process-card p{
    font-size:15px !important;
    line-height:1.7 !important;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px !important;
    }

    .hero-content p{
        font-size:15px !important;
    }

    .section-heading h2{
        font-size:32px !important;
    }

    .section{
        padding:55px 0 !important;
    }

}
/* FAQ SECTION */

.faq-section{
    padding:80px 0 !important;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:45px;
}

.faq-item{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:28px;
    transition:0.3s;
}

.faq-item:hover{
    transform:translateY(-6px);
    border-color:rgba(0,183,255,0.35);
}

.faq-item h3{
    font-size:22px;
    margin-bottom:14px;
    line-height:1.5;
}

.faq-item p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:768px){

    .faq-grid{
        grid-template-columns:1fr;
    }

}