/*==================================================
    INDOVARIS TECHNOLOGIES PRIVATE LIMITED
    Enterprise Corporate Website
    Main Stylesheet
====================================================*/

/*==================================
        GOOGLE FONTS
===================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/*==================================
        ROOT VARIABLES
===================================*/

:root{

    --primary:#0A2540;

    --secondary:#1E3A8A;

    --accent:#2563EB;

    --success:#10B981;

    --warning:#F59E0B;

    --danger:#EF4444;

    --dark:#08111F;

    --light:#F8FAFC;

    --gray:#64748B;

    --white:#FFFFFF;

    --black:#000000;

    --border:#E2E8F0;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.4s ease;

    --radius:12px;

}

/*==================================
        RESET
===================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

    line-height:1.7;

}

/*==================================
        CONTAINER
===================================*/

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

/*==================================
        HEADINGS
===================================*/

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

    font-weight:700;

    color:var(--primary);

}

h1{

    font-size:60px;

    line-height:1.15;

}

h2{

    font-size:42px;

}

h3{

    font-size:28px;

}

p{

    color:#555;

    font-size:17px;

}

/*==================================
        LINKS
===================================*/

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

/*==================================
        BUTTONS
===================================*/

.btn-primary{

    display:inline-block;

    background:var(--accent);

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-secondary{

    display:inline-block;

    padding:16px 35px;

    border:2px solid var(--accent);

    color:var(--accent);

    border-radius:50px;

    margin-left:15px;

}

.btn-secondary:hover{

    background:var(--accent);

    color:#fff;

}

/*==================================
        PRELOADER
===================================*/

#preloader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100vh;

    background:#08111F;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader{

    display:flex;

    gap:8px;

}

.loader span{

    font-size:40px;

    color:#fff;

    animation:bounce 1s infinite;

}

.loader span:nth-child(2){

    animation-delay:.1s;

}

.loader span:nth-child(3){

    animation-delay:.2s;

}

.loader span:nth-child(4){

    animation-delay:.3s;

}

.loader span:nth-child(5){

    animation-delay:.4s;

}

.loader span:nth-child(6){

    animation-delay:.5s;

}

.loader span:nth-child(7){

    animation-delay:.6s;

}

.loader span:nth-child(8){

    animation-delay:.7s;

}

.loader span:nth-child(9){

    animation-delay:.8s;

}

@keyframes bounce{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================
        NAVIGATION
===================================*/

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

.navbar{

    padding:20px 0;

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:180px;

}

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links li a{

    color:#222;

    font-weight:600;

    position:relative;

}

.nav-links li a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    left:0;

    bottom:-5px;

    background:var(--accent);

    transition:.4s;

}

.nav-links li a:hover::after{

    width:100%;

}

/*==================================
        HERO SECTION
===================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#0A2540,#1E3A8A);

    color:#fff;

    position:relative;

    overflow:hidden;

}

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

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-250px;

    top:-250px;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.hero h5{

    color:#8EC5FF;

    font-size:18px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero h1{

    color:#fff;

    margin-bottom:30px;

}

.hero p{

    color:#dbeafe;

    margin-bottom:40px;

    font-size:20px;

}
/*====================================================
                ABOUT SECTION
=====================================================*/

.about-section{

    padding:120px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:20px;

    color:var(--primary);

}

.section-title p{

    max-width:850px;

    margin:auto;

    color:#666;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.about-content h3{

    font-size:36px;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:25px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:40px 0;

}

.feature{

    padding:15px;

    background:#F8FAFC;

    border-radius:12px;

    font-weight:600;

    transition:.4s;

}

.feature:hover{

    background:#2563EB;

    color:#fff;

    transform:translateY(-5px);

}

/*====================================================
                STATISTICS
=====================================================*/

.statistics{

    padding:100px 0;

    background:linear-gradient(135deg,#0A2540,#1E3A8A);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:45px;

    border-radius:20px;

    color:#fff;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:#2563EB;

}

.stat-card h2{

    color:#fff;

    font-size:56px;

    margin-bottom:15px;

}

.stat-card p{

    color:#E2E8F0;

    font-size:18px;

}

/*==========================================
PAGE HERO
==========================================*/

.page-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#0F172A 0%,#1E3A8A 55%,#2563EB 100%);
    color:#fff;
    padding:170px 0 120px;
}

.page-hero::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    top:-250px;
    right:-180px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.page-hero::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    bottom:-180px;
    left:-120px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

.page-hero .container{
    position:relative;
    z-index:10;
    max-width:900px;
}

.page-breadcrumb{

    display:inline-block;

    margin-bottom:25px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

    color:#E2E8F0;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.page-hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

    color:#fff;

}

.page-hero p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

    max-width:760px;

    margin-bottom:45px;

}

/*==========================================
BUTTONS
==========================================*/

.page-hero .btn-primary,
.page-hero .btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.35s ease;

    margin-right:18px;

}

.page-hero .btn-primary{

    background:#2563EB;

    color:#fff;

    box-shadow:0 12px 30px rgba(37,99,235,.35);

}

.page-hero .btn-primary:hover{

    transform:translateY(-4px);

    background:#1D4ED8;

}

.page-hero .btn-outline{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    background:transparent;

}

.page-hero .btn-outline:hover{

    background:#fff;

    color:#1E3A8A;

    transform:translateY(-4px);

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.page-hero{

padding:140px 0 90px;

}

.page-hero h1{

font-size:48px;

}

.page-hero p{

font-size:18px;

}

}

@media(max-width:768px){

.page-hero{

text-align:center;

padding:120px 0 80px;

}

.page-hero h1{

font-size:38px;

}

.page-hero p{

font-size:17px;

}

.page-hero .btn-primary,
.page-hero .btn-outline{

display:block;

width:100%;

margin:15px 0;

}

}

/*====================================================
                SERVICES
=====================================================*/

.services-home{

    padding:120px 0;

    background:#F8FAFC;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#ffffff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.4s;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:6px;

    background:#2563EB;

    transition:.5s;

}

.service-card:hover::before{

    left:0;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card img{

    width:80px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:20px;

}

.service-card p{

    color:#666;

}

/*====================================================
                SOLUTIONS
=====================================================*/

.solutions{

    padding:120px 0;

}

.solutions-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.solution-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.4s;

}

.solution-card:hover{

    transform:translateY(-10px);

    border-left:6px solid #2563EB;

}

.solution-card img{

    width:70px;

    margin-bottom:20px;

}

.solution-card h3{

    margin-bottom:15px;

}

/*====================================================
                INDUSTRIES
=====================================================*/

.industries{

    padding:120px 0;

    background:#F8FAFC;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==========================================
INDUSTRY CARD
==========================================*/

.industry-card{

    background:#fff;

    padding:35px 30px;

    border:1px solid #E2E8F0;

    border-radius:18px;

    text-align:center;

    transition:all .4s ease;

    cursor:pointer;

    position:relative;

    overflow:hidden;

}

.industry-card{

    transition:all .35s ease;

}

.industry-card:hover{

    background:linear-gradient(135deg,#7295e1,#819ae1);

    box-shadow:0 20px 45px rgba(37,99,235,.25);

    animation:floatBounce .8s ease forwards;

}

@keyframes floatBounce{

    0%{
        transform:translateY(0);
    }

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

    60%{
        transform:translateY(-8px);
    }

    80%{
        transform:translateY(-13px);
    }

    100%{
        transform:translateY(-10px);
    }

}

.industry-card img{

    width:65px;

    margin-bottom:20px;

    transition:.4s;

}

.industry-card h3{

    color:#1E293B;

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

    transition:.4s;

}

.industry-card p{

    color:#64748B;

    line-height:1.8;

    transition:.4s;

}

/* Hover */

.industry-card:hover{

    background:linear-gradient(135deg,#82a1e2,#82a1e2);

}

.industry-card:hover h3,

.industry-card:hover p{

    color:#fff;

}

.industry-card:hover img{

    transform:scale(1.15) rotate(5deg);

}

/* Animated Shine */



.industry-card:hover::before{

    animation:shine .8s linear;

}



/*====================================================
                TECHNOLOGY
=====================================================*/

.technology{

    padding:120px 0;

}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.tech-box{

    padding:25px;

    text-align:center;

    background:#F8FAFC;

    border-radius:15px;

    font-weight:700;

    transition:.4s;

    border:1px solid #E5E7EB;

}

.tech-box:hover{

    background:#2563EB;

    color:#ffffff;

    transform:translateY(-8px);

}

/*====================================================
                AI SECTION
=====================================================*/

.innovation{

    padding:120px 0;

    background:linear-gradient(135deg,#08111F,#112D4E);

    color:#ffffff;

}

.innovation .section-title h2{

    color:#ffffff;

}

.innovation .section-title p{

    color:#CBD5E1;

}

.innovation-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.innovation-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:40px;

    border-radius:20px;

    transition:.4s;

}

.innovation-card:hover{

    background:#2563EB;

    transform:translateY(-10px);

}

.innovation-card img{

    width:70px;

    margin-bottom:20px;

}

.innovation-card h3{

    color:#ffffff;

    margin-bottom:15px;

}

.innovation-card p{

    color:#E2E8F0;

}
/*====================================================
                WHY CHOOSE US
=====================================================*/

.why-us{

    padding:120px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.why-card{

    background:#F8FAFC;

    padding:45px;

    border-radius:20px;

    transition:.4s;

    border-top:5px solid transparent;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-12px);

    border-top:5px solid var(--accent);

    box-shadow:0 20px 50px rgba(37,99,235,.18);

}

.why-card h3{

    margin-bottom:20px;

    color:var(--primary);

}

.why-card p{

    color:#666;

}

/*====================================================
                DEVELOPMENT PROCESS
=====================================================*/

.process{

    padding:120px 0;

    background:#F8FAFC;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.step{

    background:#ffffff;

    padding:35px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    position:relative;

}

.step:hover{

    transform:translateY(-10px);

}

.step span{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    border-radius:50%;

    background:var(--accent);

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

}

.step h3{

    font-size:22px;

}

/*====================================================
                PORTFOLIO
=====================================================*/

.portfolio{

    padding:120px 0;

    background:#ffffff;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.portfolio-card{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.portfolio-card img{

    width:100%;

    transition:.6s;

    display:block;

}

.portfolio-card:hover img{

    transform:scale(1.1);

}

.portfolio-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:25px;

    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    transparent);

}

.portfolio-content h3{

    color:#ffffff;

}

.portfolio-content p{

    color:#dddddd;

}

/*====================================================
                CLIENT LOGOS
=====================================================*/

.clients{

    padding:100px 0;

    background:#F8FAFC;

}

.client-slider{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

}

.client-slider img{

    width:140px;

    opacity:.6;

    transition:.4s;

}

.client-slider img:hover{

    opacity:1;

    transform:scale(1.08);

}

/*==========================================
TESTIMONIALS
==========================================*/

.testimonials{
    padding:100px 0;
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    border-top:5px solid #2563EB;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(37,99,235,.18);
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:15px;
    right:25px;
    font-size:70px;
    color:#2563EB;
    opacity:.08;
    font-family:serif;
}

.stars{
    color:#FFC107;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
    font-style:italic;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #2563EB;
}

.client h4{
    margin:0;
    color:#111827;
    font-size:18px;
    font-weight:700;
}

.client span{
    display:block;
    color:#6b7280;
    font-size:14px;
    margin-top:3px;
}

/*====================================
SOCIAL MEDIA
====================================*/

.social-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:50px;

}

.social-links a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px 28px;

    background:#ffffff;

    border:2px solid #E2E8F0;

    border-radius:50px;

    text-decoration:none;

    color:#1E293B;

    font-size:17px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.social-links a i{

    font-size:22px;

}

.social-links a:hover{

    transform:translateY(-8px);

    background:#2563EB;

    color:#fff;

    border-color:#2563EB;

    box-shadow:0 18px 35px rgba(37,99,235,.25);

}

/*====================================================
                FAQ
=====================================================*/

.faq{

    padding:120px 0;

    background:#F8FAFC;

}

.faq-item{

    background:#ffffff;

    margin-bottom:20px;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.4s;

}

.faq-item:hover{

    border-left:6px solid var(--accent);

}

.faq-item h3{

    margin-bottom:15px;

    cursor:pointer;

}

/*====================================================
                CALL TO ACTION
=====================================================*/

.cta{

    padding:120px 0;

    background:linear-gradient(135deg,#0A2540,#2563EB);

    text-align:center;

    color:#ffffff;

}

.cta h2{

    color:#ffffff;

    font-size:52px;

    margin-bottom:25px;

}

.cta p{

    color:#E2E8F0;

    font-size:20px;

    margin-bottom:40px;

}

/*====================================================
                FOOTER
=====================================================*/

footer{

    background:#08111F;

    color:#ffffff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-grid h3,

.footer-grid h4{

    color:#ffffff;

    margin-bottom:20px;

}

.footer-grid p{

    color:#CBD5E1;

}

.footer-grid ul{

    padding:0;

}

.footer-grid ul li{

    margin-bottom:12px;

}

.footer-grid ul li a{

    color:#CBD5E1;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#ffffff;

    padding-left:8px;

}

.copyright{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

}

.copyright p{

    color:#94A3B8;

}

/*====================================================
                UTILITIES
=====================================================*/

.text-center{

    text-align:center;

}

.mt-5{

    margin-top:50px;

}

.mb-5{

    margin-bottom:50px;

}

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:20px;

}

.glass{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.2);

}