/*=========================================================
 Padamnabh Tech Pvt. Ltd.
 Main Stylesheet
=========================================================*/

/*==============================
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:#1745b5;

    --secondary:#0f172a;

    --accent:#00d4ff;

    --gold:#f4b400;

    --white:#ffffff;

    --light:#f8fafc;

    --gray:#64748b;

    --border:#e2e8f0;

    --background:#f5f7fb;

    --card:#ffffff;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/*==============================
RESET
==============================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--background);

    color:var(--secondary);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1250px;

    margin:auto;

}

/*==============================
SECTION SPACING
==============================*/

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-size:15px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

}

.section-title h2{

    font-size:42px;

    margin-top:12px;

    margin-bottom:18px;

    font-weight:700;

}

.section-title p{

    max-width:760px;

    margin:auto;

    color:var(--gray);

}

/*==============================
BUTTONS
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:linear-gradient(
            135deg,
            #2563eb,
            #00b4ff
    );

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(37,99,235,.35);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

.btn-secondary{

    background:#fff;

    color:var(--secondary);

    box-shadow:var(--shadow);

}

.btn-large{

    padding:18px 40px;

}

/*==============================
LOADER
==============================*/

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-logo img{

    width:120px;

    animation:pulse 2s infinite;

}

/*==============================
HEADER
==============================*/

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(14px);

    z-index:9999;

    border-bottom:1px solid var(--border);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    display:flex;

    align-items: flex-start;

    text-decoration: none;

    gap:14px;

}

.logo img{

    width:72px;

}

.logo-text h2{

    font-size:25px;

    color:var(--primary);

}

.logo-text span{

    color:var(--gray);

    font-size:15px;

}

.nav-links{

    display:flex;

    gap:34px;

}

.nav-links a{

    color:var(--secondary);

    font-weight:500;

    position:relative;

}

.nav-links a:hover,

.nav-links .active{

    color:var(--primary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    gap:14px;

}

.menu-toggle{

    display:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:var(--secondary);

    margin:5px;

    border-radius:10px;

}

/*==============================
HERO
==============================*/

.hero{

    padding-top:170px;

    background:
    radial-gradient(circle at top left,#dbeafe 0%,transparent 40%),
    radial-gradient(circle at bottom right,#cffafe 0%,transparent 40%),
    #f8fbff;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-badge{

    display:inline-block;

    background:#e0f2fe;

    color:#2563eb;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:25px;

    font-weight:600;

}

.hero h1{

    font-size:58px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero h1 span{

    color:#2563eb;

}

.hero p{

    color:var(--gray);

    font-size:18px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:28px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.hero-stats{

    display:flex;

    gap:20px;

}

.stat-card{

    background:#fff;

    border-radius:18px;

    padding:20px;

    box-shadow:var(--shadow);

    flex:1;

}

.stat-card h2{

    color:var(--primary);

    font-size:28px;

    margin-bottom:6px;

}

.stat-card p{

    font-size:14px;

    margin:0;

    color:var(--gray);

}

/*=========================================================
 WHY CHOOSE US
=========================================================*/

.why-us{

    background:#ffffff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:var(--card);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow);

    border:1px solid transparent;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#dbeafe;

    box-shadow:0 20px 45px rgba(37,99,235,.18);

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    border-radius:50%;

    background:#eef7ff;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.feature-card p{

    color:var(--gray);

}

/*=========================================================
 ABOUT
=========================================================*/

.about-home{

    background:#f8fbff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.about-content span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:44px;

    margin:18px 0;

}

.about-content p{

    color:var(--gray);

    margin-bottom:18px;

}

.about-list{

    margin:30px 0;

}

.about-list li{

    padding:10px 0;

    font-weight:500;

    color:var(--secondary);

}

/*=========================================================
 SERVICES
=========================================================*/

.services-home{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.service-card h3{

    padding:25px 25px 10px;

    font-size:24px;

}

.service-card p{

    padding:0 25px 30px;

    color:var(--gray);

}

/*=========================================================
 ANPROBE
=========================================================*/

.anprobe-home{

    background:linear-gradient(
            135deg,
            #0f172a,
            #1e3a8a
    );

    color:#fff;

}

.anprobe-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.anprobe-content span{

    color:#93c5fd;

    letter-spacing:2px;

    font-weight:700;

}

.anprobe-content h2{

    font-size:58px;

    margin-top:15px;

}

.anprobe-content h3{

    color:#7dd3fc;

    margin-bottom:25px;

    font-size:28px;

}

.anprobe-content p{

    opacity:.9;

    margin-bottom:30px;

}

.product-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.product-features div{

    background:rgba(255,255,255,.08);

    padding:18px;

    border-radius:14px;

}

.anprobe-image img{

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

/*=========================================================
 STATISTICS
=========================================================*/

.statistics{

    background:#ffffff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stats-card{

    background:#fff;

    border-radius:22px;

    text-align:center;

    padding:50px 20px;

    box-shadow:var(--shadow);

}

.stats-card h2{

    font-size:56px;

    color:var(--primary);

    margin-bottom:12px;

}

.stats-card p{

    color:var(--gray);

    font-weight:600;

}

/*=========================================================
 INDUSTRIES
=========================================================*/

.industries{

    background:#f7fafc;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.industry-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-8px);

}

.industry-card img{

    width:80px;

    margin:auto auto 22px;

}

.industry-card h3{

    font-size:24px;

}

/*=========================================================
 WHY ANPROBE
=========================================================*/

.why-anprobe{

    background:#ffffff;

}

.comparison-table{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.comparison-column{

    background:#f8fafc;

    padding:40px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.comparison-column.highlight{

    background:linear-gradient(
            135deg,
            #2563eb,
            #0ea5e9
    );

    color:#fff;

}

.comparison-column h3{

    margin-bottom:25px;

    font-size:28px;

}

.comparison-column li{

    padding:14px 0;

    font-size:18px;

}

/*=========================================================
 WORKFLOW
=========================================================*/

.workflow{

    background:#f8fbff;

}

.workflow-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.workflow-card{

    background:#fff;

    border-radius:22px;

    text-align:center;

    padding:40px 25px;

    box-shadow:var(--shadow);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    margin:auto auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

}

.workflow-card h3{

    font-size:22px;

}

/*=========================================================
 TESTIMONIALS
=========================================================*/

.testimonials{

    background:#ffffff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:var(--shadow);

    position:relative;

}

.testimonial-card::before{

    content:"★★★★★";

    color:#f4b400;

    display:block;

    margin-bottom:20px;

    font-size:20px;

}

.testimonial-card p{

    color:var(--gray);

    margin-bottom:25px;

}

.testimonial-card h4{

    color:var(--primary);

}

/*=========================================================
 CALL TO ACTION
=========================================================*/

.cta{

    background:linear-gradient(
            135deg,
            #2563eb,
            #0ea5e9
    );

    color:#fff;

}

.cta-box{

    text-align:center;

}

.cta-box h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta-box p{

    max-width:760px;

    margin:0 auto 40px;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

/*=========================================================
 FOOTER
=========================================================*/

.footer{

    background:#0f172a;

    color:#fff;

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-logo{

    width:70px;

    margin-bottom:20px;

}

.footer-column h3{

    margin-bottom:18px;

}

.footer-column h4{

    margin-bottom:20px;

}

.footer-column p{

    opacity:.8;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column a{

    color:#cbd5e1;

}

.footer-column a:hover{

    color:#fff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

}

/*=========================================================
 PREMIUM ANIMATIONS
=========================================================*/

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes rotate360{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*=========================================================
 ANIMATION CLASSES
=========================================================*/

.fade-in{

    animation:fadeIn .9s ease forwards;

}

.slide-left{

    animation:slideLeft .9s ease forwards;

}

.slide-right{

    animation:slideRight .9s ease forwards;

}

.zoom-in{

    animation:zoomIn .8s ease forwards;

}

.float{

    animation:float 5s ease-in-out infinite;

}

.pulse{

    animation:pulse 2.5s infinite;

}

.rotate{

    animation:rotate360 25s linear infinite;

}

/*=========================================================
 GLASS EFFECT
=========================================================*/

.glass{

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:22px;

}

/*=========================================================
 IMAGE EFFECTS
=========================================================*/

img{

    transition:.45s;

}

img:hover{

    transform:scale(1.03);

}

.hero-image img{

    animation:float 6s ease-in-out infinite;

}

/*=========================================================
 CARDS
=========================================================*/

.feature-card,
.service-card,
.industry-card,
.stats-card,
.testimonial-card,
.workflow-card{

    transition:.4s;

}

.feature-card:hover,
.service-card:hover,
.industry-card:hover,
.stats-card:hover,
.testimonial-card:hover,
.workflow-card:hover{

    transform:translateY(-12px);

}

/*=========================================================
 FORMS
=========================================================*/

form{

    width:100%;

}

.input-group{

    margin-bottom:22px;

}

.input-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.input-group input,
.input-group textarea,
.input-group select{

    width:100%;

    padding:16px;

    border-radius:14px;

    border:1px solid var(--border);

    outline:none;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    transition:.3s;

    background:#fff;

}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

textarea{

    resize:vertical;

    min-height:180px;

}

/*=========================================================
 CONTACT SECTION
=========================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:24px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.contact-icon{

    width:60px;

    height:60px;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:24px;

}

/*=========================================================
 PRICING
=========================================================*/

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.price-card{

    background:#fff;

    border-radius:22px;

    box-shadow:var(--shadow);

    padding:45px 35px;

    transition:.35s;

    text-align:center;

}

.price-card:hover{

    transform:translateY(-15px);

}

.price-card.popular{

    background:linear-gradient(
        135deg,
        #2563eb,
        #00b4ff
    );

    color:#fff;

}

.price{

    font-size:54px;

    margin:18px 0;

    font-weight:700;

}

.price-card ul{

    margin:30px 0;

}

.price-card li{

    padding:10px;

}

/*=========================================================
 FAQ
=========================================================*/

.faq{

    background:#fff;

}

.faq-item{

    background:#fff;

    margin-bottom:18px;

    border-radius:16px;

    box-shadow:var(--shadow);

    overflow:hidden;

}

.faq-question{

    padding:24px;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

}

.faq-answer{

    padding:0 24px 24px;

    color:var(--gray);

}

/*=========================================================
 DOWNLOAD SECTION
=========================================================*/

.download-buttons{

    display:flex;

    gap:20px;

    justify-content:center;

    flex-wrap:wrap;

}

.store-button{

    display:flex;

    align-items:center;

    gap:15px;

    background:#111827;

    color:#fff;

    padding:16px 26px;

    border-radius:16px;

    transition:.35s;

}

.store-button:hover{

    transform:translateY(-5px);

}

/*=========================================================
 BADGES
=========================================================*/

.badge{

    display:inline-block;

    background:#e0f2fe;

    color:var(--primary);

    padding:8px 18px;

    border-radius:40px;

    font-weight:600;

}

/*=========================================================
 UTILITIES
=========================================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:22px;

}

.hidden{

    display:none;

}

.w-100{

    width:100%;

}

/*=========================================================
 SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f4f6;

}

::-webkit-scrollbar-thumb{

    background:#2563eb;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#1d4ed8;

}

/*=========================================================
 SELECTION
=========================================================*/

::selection{

    background:#2563eb;

    color:#fff;

}

/*=========================================================
 END OF style.css
=========================================================*/