/* ===================================================
   RUDRA SERVICES
   Professional IT & Technology Solutions

   STYLE.CSS PART 1
   Global Styles • Header • Hero
=================================================== */


/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* ===========================
   ROOT VARIABLES
=========================== */

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --primary-light:#60a5fa;

    --gold:#f5c542;
    --gold-dark:#d99d14;
    --gold-light:#ffe28a;

    --bg:#05070d;
    --bg-light:#0c1220;
    --card:#111827;

    --white:#ffffff;
    --text:#e8edf5;
    --muted:#a7b0c0;

    --border:rgba(255,255,255,.08);

    --shadow:
    0 25px 60px rgba(0,0,0,.45);

    --radius:20px;

    --transition:.35s ease;

}



/* ===========================
   RESET
=========================== */


*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}



::selection{

    background:var(--gold);

    color:#000;

}




/* ===========================
   GLOBAL ELEMENTS
=========================== */


a{

    text-decoration:none;

    color:inherit;

}



img{

    display:block;

    width:100%;

    height:auto;

}



button{

    font-family:inherit;

    cursor:pointer;

    border:none;

}



h1,
h2,
h3,
h4{

    color:#fff;

    line-height:1.2;

    font-weight:700;

}



h2{

    font-size:clamp(2rem,4vw,3rem);

}



h3{

    font-size:1.35rem;

}



p{

    color:var(--muted);

    font-size:1rem;

}




/* ===========================
   CONTAINER
=========================== */


.container{

    width:min(1180px,92%);

    margin:auto;

}



/* ===========================
   SECTIONS
=========================== */


.section{

    padding:110px 0;

    position:relative;

}



/* ===========================
   BACKGROUND EFFECTS
=========================== */


.bg-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.20;

    z-index:-1;

}



.glow-1{

    width:380px;

    height:380px;

    background:#2563eb;

    top:-140px;

    left:-120px;

}



.glow-2{

    width:450px;

    height:450px;

    background:#f5c542;

    right:-180px;

    top:25%;

}



.glow-3{

    width:420px;

    height:420px;

    background:#1e40af;

    bottom:-180px;

    left:35%;

}




/* ===========================
   SCROLLBAR
=========================== */


::-webkit-scrollbar{

    width:10px;

}



::-webkit-scrollbar-track{

    background:#05070d;

}



::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        180deg,
        var(--primary),
        var(--gold)
    );

    border-radius:50px;

}




/* ===========================
   SECTION HEADING
=========================== */


.section-heading{

    max-width:720px;

    margin-bottom:60px;

}



.section-heading.center{

    text-align:center;

    margin-left:auto;

    margin-right:auto;

}



.section-heading h2{

    margin:18px 0;

}



.section-heading h2 span{

    color:var(--gold);

}



.section-heading p{

    font-size:1.05rem;

}




/* ===========================
   EYEBROW
=========================== */


.eyebrow{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:var(--gold);

    font-size:.85rem;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}



.eyebrow::before{

    content:"";

    width:38px;

    height:2px;

    background:
    linear-gradient(
        90deg,
        var(--primary),
        var(--gold)
    );

}





/* ===================================================
   HEADER
=================================================== */


.navbar{

    position:sticky;

    top:0;

    width:100%;

    z-index:1000;

    background:
    rgba(5,7,13,.85);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid var(--border);

}



.nav-wrapper{

    min-height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}





/* ===========================
   LOGO
=========================== */


.logo{

    display:flex;

    align-items:center;

    gap:14px;

    color:#fff;

    font-size:1.15rem;

    font-weight:700;

}



.logo strong{

    display:block;

    color:var(--gold);

}



.logo-icon{

    width:48px;

    height:48px;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--gold)
    );

    box-shadow:
    0 0 25px rgba(37,99,235,.35);

}




/* ===========================
   DESKTOP NAV
=========================== */


.desktop-nav{

    display:flex;

    gap:34px;

    align-items:center;

}



.desktop-nav a{

    color:#d8deea;

    font-size:.95rem;

    font-weight:500;

    position:relative;

}



.desktop-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}



.desktop-nav a:hover{

    color:#fff;

}



.desktop-nav a:hover::after{

    width:100%;

}




/* ===================================================
   BUTTONS
=================================================== */


.nav-button,
.hero-cta,
.primary-button{


    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border-radius:999px;

    color:#fff;

    font-weight:600;


    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--gold-dark)
    );


    box-shadow:

    0 15px 35px rgba(0,0,0,.35),

    0 0 25px rgba(37,99,235,.25);


    transition:var(--transition);

}



.nav-button:hover,
.hero-cta:hover,
.primary-button:hover{


    transform:translateY(-4px);


    box-shadow:

    0 25px 50px rgba(0,0,0,.45),

    0 0 35px rgba(245,197,66,.25);


}




/* ===================================================
   HERO
=================================================== */


.hero{

    padding:60px 0 80px;

}



.hero-container{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:35px;

}




.hero-banner-link{

    display:block;

    width:100%;

    border-radius:28px;

    overflow:hidden;

    background:#0b1020;

    border:
    1px solid var(--border);


    box-shadow:

    0 30px 70px rgba(0,0,0,.5);


    transition:.45s ease;

}



.hero-banner-link:hover{

    transform:translateY(-6px);

}




.hero-banner{

    width:100%;

    border-radius:28px;

}





.hero-cta{

    min-width:260px;

}
/* ===================================================
   STYLE.CSS PART 2

   Trust Strip • About • Services
=================================================== */


/* ===================================================
   TRUST STRIP
=================================================== */


.trust-strip{

    padding:35px 0;

    background:
    rgba(255,255,255,.02);

    border-top:
    1px solid var(--border);

    border-bottom:
    1px solid var(--border);

    backdrop-filter:blur(12px);

}



.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.trust-grid div{

    padding:25px 20px;

    text-align:center;

    border-radius:18px;


    background:
    rgba(255,255,255,.035);


    border:
    1px solid rgba(255,255,255,.06);


    transition:var(--transition);

}



.trust-grid div:hover{

    transform:translateY(-7px);


    border-color:
    rgba(245,197,66,.45);


    box-shadow:

    0 20px 40px rgba(0,0,0,.35);

}



.trust-grid strong{

    display:block;

    color:#fff;

    font-size:1rem;

    margin-bottom:8px;

}



.trust-grid span{

    color:var(--muted);

    font-size:.9rem;

}





/* ===================================================
   ABOUT SECTION
=================================================== */


.about-grid{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:60px;

    align-items:center;

}



.about-content h3{

    font-size:1.6rem;

    margin-bottom:20px;

}



.about-content p{

    margin-bottom:18px;

}





/* ===========================
   TEXT LINK
=========================== */


.text-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:20px;

    color:var(--gold);

    font-weight:600;

}



.text-link i{

    transition:.3s;

}



.text-link:hover{

    color:#fff;

}



.text-link:hover i{

    transform:translateX(6px);

}





/* ===================================================
   ABOUT INFO CARDS
=================================================== */


.about-cards{

    display:grid;

    gap:25px;

}



.info-card{

    position:relative;

    overflow:hidden;


    padding:38px;


    border-radius:24px;


    background:

    linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );


    border:

    1px solid rgba(255,255,255,.08);


    transition:var(--transition);

}



.info-card:hover{

    transform:translateY(-8px);


    border-color:
    rgba(37,99,235,.45);


    box-shadow:

    0 25px 55px rgba(0,0,0,.4);

}



.card-number{

    position:absolute;

    right:22px;

    top:12px;


    font-size:3rem;

    font-weight:800;


    color:

    rgba(255,255,255,.05);

}




.info-card i{


    width:65px;

    height:65px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:18px;


    margin-bottom:22px;


    font-size:1.4rem;

    color:#fff;


    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--gold)
    );


    box-shadow:

    0 10px 30px rgba(37,99,235,.25);

}



.info-card h3{

    margin-bottom:12px;

}



.info-card p{

    color:var(--muted);

}





/* ===================================================
   SERVICES SECTION
=================================================== */


.services{

    position:relative;

}



.services-grid{


    display:grid;


    grid-template-columns:
    repeat(3,1fr);


    gap:30px;


}




/* ===========================
   SERVICE CARD
=========================== */


.service-card{


    position:relative;


    overflow:hidden;


    padding:38px 32px;


    border-radius:24px;


    background:


    linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );


    border:

    1px solid rgba(255,255,255,.08);


    transition:var(--transition);


}




.service-card:hover{


    transform:translateY(-10px);


    border-color:

    rgba(245,197,66,.45);



    box-shadow:


    0 30px 60px rgba(0,0,0,.45);


}




.service-number{


    position:absolute;


    right:22px;

    top:15px;


    font-size:3rem;


    font-weight:800;


    color:

    rgba(255,255,255,.05);


}





.service-icon{


    width:70px;


    height:70px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:20px;


    margin-bottom:25px;


    color:#fff;


    font-size:1.5rem;


    background:


    linear-gradient(
        135deg,
        var(--primary),
        var(--gold)
    );


    box-shadow:


    0 12px 35px rgba(37,99,235,.25);


}





.service-card h3{

    margin-bottom:15px;

}



.service-card p{


    margin-bottom:25px;


    color:var(--muted);


}




.service-card a{


    display:inline-flex;


    align-items:center;


    gap:10px;


    color:var(--gold);


    font-weight:600;


}



.service-card a i{


    transition:.3s;


}



.service-card a:hover{


    color:#fff;


}



.service-card a:hover i{


    transform:translateX(6px);


}




/* ===================================================
   RESPONSIVE PART 2
=================================================== */


@media(max-width:992px){


    .trust-grid{

        grid-template-columns:repeat(2,1fr);

    }


    .about-grid{

        grid-template-columns:1fr;

        gap:40px;

    }


    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }


}




@media(max-width:768px){


    .trust-grid{

        grid-template-columns:1fr;

    }



    .services-grid{

        grid-template-columns:1fr;

    }



    .info-card{

        padding:30px;

    }



    .service-card{

        padding:30px;

    }



}
/* ===================================================
   STYLE.CSS PART 3

   Why Us • Process • FAQ • CTA • Footer
=================================================== */


/* ===================================================
   WHY CHOOSE US
=================================================== */


.why-us{

    position:relative;

}



.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.why-card{

    position:relative;

    padding:35px 28px;


    border-radius:22px;


    background:

    linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );


    border:

    1px solid rgba(255,255,255,.08);


    transition:var(--transition);

}



.why-card:hover{

    transform:translateY(-8px);


    border-color:

    rgba(37,99,235,.45);


    box-shadow:

    0 25px 50px rgba(0,0,0,.4);

}



.why-card span{

    position:absolute;

    right:20px;

    top:15px;


    font-size:2.8rem;

    font-weight:800;


    color:

    rgba(255,255,255,.05);

}



.why-card i{


    width:65px;

    height:65px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:18px;


    margin-bottom:22px;


    font-size:1.4rem;


    color:#fff;


    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--gold)
    );


}



.why-card h3{

    margin-bottom:12px;

}



.why-card p{

    font-size:.95rem;

}




/* ===================================================
   PROCESS
=================================================== */


.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.process-card{

    position:relative;


    padding:40px 32px;


    text-align:center;


    border-radius:24px;


    background:

    rgba(255,255,255,.035);


    border:

    1px solid rgba(255,255,255,.08);


    transition:var(--transition);

}



.process-card:hover{


    transform:translateY(-8px);


    border-color:

    rgba(245,197,66,.45);


}



.process-step{

    position:absolute;

    top:15px;

    right:20px;


    font-size:3rem;

    font-weight:800;


    color:

    rgba(255,255,255,.05);

}



.process-card i{

    width:75px;

    height:75px;


    display:flex;

    align-items:center;

    justify-content:center;


    margin:0 auto 25px;


    border-radius:22px;


    font-size:1.6rem;


    color:#fff;


    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--gold)
    );

}



.process-card h3{

    margin-bottom:15px;

}




/* ===================================================
   FAQ
=================================================== */


.faq-wrapper{

    max-width:850px;

    margin:auto;

}



.faq-item{

    margin-bottom:18px;


    border-radius:18px;


    overflow:hidden;


    background:

    rgba(255,255,255,.035);


    border:

    1px solid rgba(255,255,255,.08);

}



.faq-question{

    width:100%;


    padding:22px 25px;


    display:flex;


    align-items:center;


    justify-content:space-between;


    background:transparent;


    color:#fff;


    font-size:1rem;


    font-weight:600;


    text-align:left;

}



.faq-question i{

    color:var(--gold);

    transition:.3s;

}



.faq-answer{


    max-height:0;

    overflow:hidden;


    transition:.4s ease;


}



.faq-answer p{


    padding:

    0 25px 22px;

}




.faq-item.active

.faq-question i{

    transform:rotate(45deg);

}




/* ===================================================
   FINAL CTA
=================================================== */


.cta{

    padding:100px 0;

}



.cta-box{


    position:relative;


    overflow:hidden;


    padding:70px 50px;


    text-align:center;


    border-radius:30px;


    background:


    linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(245,197,66,.12)
    );


    border:

    1px solid rgba(255,255,255,.1);


}



.cta-box h2{

    max-width:750px;

    margin:20px auto;

}



.cta-box h2 span{

    color:var(--gold);

}



.cta-box p{

    max-width:700px;

    margin:0 auto 35px;

}



.contact-button{

    margin-top:10px;

}




.cta-decoration{


    position:absolute;


    border-radius:50%;


    filter:blur(80px);


    opacity:.4;


}



.decoration-left{


    width:250px;

    height:250px;


    background:#2563eb;


    left:-120px;

    top:-80px;

}



.decoration-right{


    width:250px;

    height:250px;


    background:#f5c542;


    right:-120px;

    bottom:-80px;

}




/* ===================================================
   FOOTER
=================================================== */


footer{


    background:#04060b;


    border-top:

    1px solid rgba(255,255,255,.08);

}



.footer-grid{


    padding:70px 0;


    display:grid;


    grid-template-columns:1.5fr 1fr 1fr 1fr;


    gap:40px;

}



.footer-brand p{


    margin-top:20px;

    max-width:300px;

}



.footer-column{


    display:flex;

    flex-direction:column;

    gap:12px;

}



.footer-column h4{

    margin-bottom:15px;

    color:#fff;

}



.footer-column a,

.footer-column span{


    color:var(--muted);


    font-size:.95rem;

}



.footer-column a:hover{


    color:var(--gold);

}





.footer-bottom{


    padding:22px 0;


    border-top:

    1px solid rgba(255,255,255,.08);

}



.footer-bottom .container{


    display:flex;


    justify-content:space-between;


    gap:20px;


    color:var(--muted);


    font-size:.9rem;

}





/* ===================================================
   FLOATING WHATSAPP
=================================================== */


.floating-whatsapp{


    position:fixed;


    right:25px;

    bottom:25px;


    width:60px;

    height:60px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    color:#fff;


    font-size:1.5rem;


    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--gold)
    );


    box-shadow:

    0 15px 35px rgba(0,0,0,.45);


    z-index:999;


    transition:.35s;

}



.floating-whatsapp:hover{


    transform:translateY(-5px) scale(1.05);

}




/* ===================================================
   SCROLL TOP
=================================================== */


.scroll-top{


    position:fixed;


    right:25px;

    bottom:95px;


    width:45px;

    height:45px;


    display:flex;


    align-items:center;

    justify-content:center;


    border-radius:50%;


    background:#111827;


    color:#fff;


    border:

    1px solid rgba(255,255,255,.1);


    opacity:0;


    visibility:hidden;


    transition:.35s;


    z-index:998;

}



.scroll-top.show{


    opacity:1;


    visibility:visible;

}



.scroll-top:hover{


    background:var(--gold);


    color:#000;

}
/* ===================================================
   STYLE.CSS PART 4

   Responsive Optimization
   Mobile • Tablet • Final Adjustments
=================================================== */


/* ===================================================
   LARGE TABLETS
=================================================== */


@media(max-width:1100px){


    .container{

        width:min(94%,1180px);

    }



    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }



    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }



}




/* ===================================================
   TABLETS
=================================================== */


@media(max-width:992px){



    .desktop-nav{

        display:none;

    }



    .nav-wrapper{

        min-height:75px;

    }



    .hero{

        padding:45px 0 70px;

    }



    .about-grid{

        grid-template-columns:1fr;

    }



    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }



    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }



    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }



}





/* ===================================================
   MOBILE DEVICES
=================================================== */


@media(max-width:768px){



    .section{

        padding:75px 0;

    }



    .container{

        width:92%;

    }



    /* HEADER */


    .logo{

        font-size:.95rem;

    }



    .logo-icon{

        width:42px;

        height:42px;

        border-radius:12px;

    }



    .nav-button{

        padding:12px 18px;

        font-size:.85rem;

    }




    /* HERO */


    .hero{

        padding:30px 0 55px;

    }



    .hero-banner-link{

        border-radius:18px;

    }



    .hero-banner{

        border-radius:18px;

    }



    .hero-cta{

        width:100%;

        max-width:330px;

        padding:15px 20px;

    }




    /* HEADINGS */


    h2{

        font-size:2rem;

    }



    h3{

        font-size:1.2rem;

    }



    p{

        font-size:.95rem;

    }





    /* TRUST */


    .trust-grid{

        grid-template-columns:1fr;

    }




    /* ABOUT */


    .about-grid{

        gap:35px;

    }



    .about-content h3{

        font-size:1.35rem;

    }



    .info-card{

        padding:28px;

    }




    /* SERVICES */


    .services-grid{

        grid-template-columns:1fr;

    }



    .service-card{

        padding:28px;

    }




    /* WHY */


    .why-grid{

        grid-template-columns:1fr;

    }



    .why-card{

        padding:30px 25px;

    }




    /* PROCESS */


    .process-grid{

        grid-template-columns:1fr;

    }



    .process-card{

        padding:35px 25px;

    }





    /* FAQ */


    .faq-question{

        padding:18px;

        font-size:.95rem;

    }



    .faq-answer p{

        padding:0 18px 18px;

    }





    /* CTA */


    .cta{

        padding:70px 0;

    }



    .cta-box{

        padding:45px 25px;

        border-radius:22px;

    }



    .cta-box h2{

        font-size:1.8rem;

    }





    /* FOOTER */


    .footer-grid{

        grid-template-columns:1fr;

        padding:55px 0;

        gap:35px;

    }



    .footer-brand p{

        max-width:none;

    }




    .footer-bottom .container{


        flex-direction:column;

        text-align:center;


    }





    /* FLOAT BUTTON */


    .floating-whatsapp{


        width:55px;

        height:55px;


        right:18px;

        bottom:18px;


    }



    .scroll-top{


        right:18px;

        bottom:85px;


    }



}





/* ===================================================
   SMALL MOBILE
=================================================== */


@media(max-width:420px){



    .logo{

        gap:10px;

    }



    .logo-icon{

        width:38px;

        height:38px;

        font-size:.9rem;

    }



    .nav-button{

        padding:10px 14px;

        font-size:.78rem;

    }



    .hero-cta{

        font-size:.9rem;

    }



    .section-heading h2{

        font-size:1.7rem;

    }



    .cta-box h2{

        font-size:1.55rem;

    }



}



/* ===================================================
   PERFORMANCE POLISH
=================================================== */


.hero-banner,
.service-card,
.info-card,
.why-card,
.process-card,
.cta-box{

    will-change:transform;

}



/* ===================================================
   ACCESSIBILITY
=================================================== */


a:focus-visible,
button:focus-visible{


    outline:

    2px solid var(--gold);


    outline-offset:4px;


}



/* ===================================================
   REDUCED MOTION
=================================================== */


@media(prefers-reduced-motion:reduce){


    *,
    *::before,
    *::after{


        animation:none!important;

        transition:none!important;

        scroll-behavior:auto!important;


    }


}