/* =====================================
   TECHVORA WEBSITE
   Premium Style - Part 1
===================================== */

/* Google Font */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

:root{
    --primary:#0A66C2;
    --secondary:#38bdf8;
    --dark:#0f172a;
    --dark2:#111827;
    --white:#ffffff;
    --gray:#94a3b8;
    --light:#f8fafc;
}

body{
    background:var(--light);
    color:#1e293b;
    line-height:1.7;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#e5e7eb;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* Header */

header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(15px);
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar{
    width:98%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
    padding:0 15px;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

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

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#0A66C2;
}

.menu-btn{
    display:none;
    color:#ffffff;
    font-size:30px;
    cursor:pointer;
}

.nav-links{
    background:#f8fafc;
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:120px 20px 80px;

    background:
    linear-gradient(rgba(10,15,35,.82),rgba(10,15,35,.82)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

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

.hero-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(10,102,194,.15);
    color:#9ccfff;
    margin-bottom:25px;
    font-size:15px;
}

.hero h1{
    font-size:68px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
}

.hero h1 span{
    color:var(--secondary);
}

.hero p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    color:#d6dbe5;
    margin-bottom:40px;
}
/* ===========================
   Buttons
=========================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
    background:var(--primary);
    color:#fff;
    box-shadow:0 10px 25px rgba(10,102,194,.35);
}

.btn:hover{
    transform:translateY(-4px);
    background:var(--secondary);
}

.btn-outline{
    background:transparent;
    border:2px solid var(--secondary);
    color:#fff;
    box-shadow:none;
}

.btn-outline:hover{
    background:var(--secondary);
    color:#fff;
}

/* ===========================
   Sections
=========================== */

section{
    padding:100px 10%;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
    color:var(--primary);
}

/* ===========================
   About
=========================== */

.about{
    background:#fff;
}

.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#475569;
}

/* ===========================
   Services
=========================== */

.services{
    background:#f8fafc;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.card{
    background:white;
    padding:40px 30px;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid #e5e7eb;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(10,102,194,.15);
}

.card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:28px;
}

.card p{
    color:#64748b;
}

/* ==========================
        TEAM
========================== */

.team{
    padding:100px 10%;
    background:#f8fafc;
}

.team .section-title{
    text-align:center;
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.team .section-subtitle{
    text-align:center;
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
    margin-bottom:60px;
}

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

.team-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    border-top:4px solid transparent;
}

.team-card:hover{
    transform:translateY(-10px);
    border-top:4px solid #38bdf8;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.team-card h3{
    color:#0f172a;
    margin-bottom:8px;
}

.team-card span{
    color:#38bdf8;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.team-card p{
    color:#475569;
    line-height:1.8;
}

.featured{
    border-top:4px solid #38bdf8;
}

/* =============================
        OUR PROCESS
============================= */

.process{
    padding:90px 8%;
    background:#f8fafc;
    text-align:center;
}

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

.process-card{
    background:white;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
}

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

.step-number{
    width:65px;
    height:65px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}

.process-card h3{
    color:#2563eb;
    margin-bottom:15px;
    font-size:24px;
}

.process-card p{
    color:#64748b;
    line-height:1.8;
}

@media(max-width:768px){

.process{
    padding:70px 6%;
}

.process-grid{
    gap:20px;
}

.process-card{
    padding:35px 25px;
}

}

/* ===========================
   Why Choose Us
=========================== */

.why{
    background:var(--dark);
    color:white;
}

.why h2{
    color:white;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.features div{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.features div:hover{
    transform:translateY(-8px);
    background:rgba(10,102,194,.18);
}

.features h3{
    margin-bottom:15px;
    font-size:26px;
}

.features p{
    color:#cbd5e1;
}

/* ===========================
   Contact
=========================== */

.contact{
    background:white;
}

form{
    max-width:700px;
    margin:auto;
}

#formMessage{
    margin-top:20px;
    text-align:center;
    font-size:16px;
    font-weight:600;
}

form input,
form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border-radius:10px;
    border:1px solid #d1d5db;
    font-size:16px;
    transition:.3s;
}

form input:focus,
form textarea:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(10,102,194,.15);
}

form textarea{
    resize:none;
    height:170px;
}

button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:var(--primary);
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:var(--secondary);
}

.contact-info{
    text-align:center;
    margin:25px 0 35px;
    color:#555;
}

.contact-info p{
    margin:12px 0;
    font-size:17px;
}

.contact-info a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.contact-info a:hover{
    text-decoration:underline;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.nav-links li{
    margin:18px 0;
}

.nav-links a{
    color:#ffffff;
    font-size:18px;
    font-weight:600;
    display:block;
    padding:10px 0;
}

.nav-links a.active{
    color:#38bdf8;
}
   
.logo img{
    height:250px;
}

.logo{
    display:flex;
    align-items:center;
    margin-left:0;
    transform: translateY(-10px);
}

.menu-btn{
    display:block;
}

.nav-links{
    display:none;
    position:absolute;
    top:82px;
    left:0;
    width:100%;
    background:#0f172a;
    flex-direction:column;
    text-align:center;
    padding:20px 0;
}

.nav-links.active{
    display:flex;
}

.nav-links li{
    margin:18px 0;
}

.hero h1{
    font-size:48px;
}

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

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:250px;
    text-align:center;
}

section{
    padding:80px 7%;
}

section h2{
    font-size:34px;
}

.card{
    padding:30px;
}

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

.footer-container{
    text-align:center;
}

.footer-box a:hover{
    transform:none;
}   
}
/* =====================================
   TECHVORA WEBSITE
   Part 3 - Animations & Premium Effects
===================================== */

/* Fade In Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Floating Hero */

@keyframes floating{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

.hero-content{
    animation:fadeUp 1s ease;
}

.hero-badge{
    animation:floating 4s ease-in-out infinite;
}

/* Service Cards */

.card{
    animation:fadeUp .8s ease;
}

.card:hover{
    transform:translateY(-12px) scale(1.02);
}

/* Feature Cards */

.features div{
    animation:fadeUp 1s ease;
}

.features div:hover{
    transform:translateY(-10px);
}

/* Contact Form */

form{
    animation:fadeUp 1s ease;
}

/* Button Glow */

.btn{
    position:relative;
    overflow:hidden;
}

.btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.7s;
}

.btn:hover::after{
    left:120%;
}

/* Image Hover */

.logo img{
    transition:.35s;
}

.logo img:hover{
    transform:scale(1.05);
}

/* Section Hover */

.card,
.features div{
    transition:.35s;
}

/* Selection */

::selection{
    background:#0A66C2;
    color:white;
}

/* Smooth Scroll Offset */

html{
    scroll-padding-top:90px;
}

/* Footer */

footer{
    border-top:1px solid rgba(255,255,255,.08);
}

/* Mobile */

@media(max-width:768px){

.hero{
    padding-top:140px;
}

.hero h1{
    font-size:42px;
    line-height:1.2;
}

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

.hero-buttons{
    gap:15px;
}

.card,
.features div{
    padding:25px;
}

footer h3{
    font-size:24px;
}

}

/* Large Screens */

@media(min-width:1200px){

.hero h1{
    font-size:74px;
}

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

}

/* End of TECHVORA Premium CSS */
/* Active Navigation Link */

.nav-links a.active{
    color:#38bdf8;
    font-weight:600;
}
/* ===========================
   Back To Top Button
=========================== */

#topBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#0A66C2;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(10,102,194,.35);
    transition:.3s;
}

#topBtn:hover{
    transform:translateY(-5px);
    background:#38bdf8;
}
/* ===========================
   Statistics
=========================== */

.stats{
    background:#08111f;
    color:white;
    text-align:center;
}

.stats h2{
    color:white;
    margin-bottom:50px;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:#38bdf8;
}

.stat-card h3{
    font-size:52px;
    color:#38bdf8;
    margin-bottom:10px;
}

.stat-card p{
    color:#cbd5e1;
    font-size:18px;
}
/* ===========================
   Portfolio
=========================== */

.portfolio{
    background:#f8fafc;
    text-align:center;
}

.portfolio-text{
    max-width:700px;
    margin:0 auto 50px;
    color:#64748b;
}

.portfolio-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-card{
    background:white;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(10,102,194,.15);
}

.project-image{
    height:180px;
    background:linear-gradient(135deg,#0A66C2,#38bdf8);
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:70px;
    margin-bottom:25px;
    color:white;
}

.project-card h3{
    color:#0A66C2;
    margin-bottom:15px;
}

.project-card p{
    color:#64748b;
    margin-bottom:25px;
}

/* ===========================
      TECHNOLOGIES
=========================== */

.technologies{
    padding:100px 8%;
    background:#08111f;
    text-align:center;
}

.tech-text{
    max-width:750px;
    margin:20px auto 60px;
    color:#cbd5e1;
    line-height:1.8;
}

.tech-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
}

.tech-card{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;

    padding:40px 25px;

    transition:.35s;

    backdrop-filter:blur(10px);

}

.tech-card img{

    width:65px;
    height:65px;

    margin-bottom:20px;

}

.tech-card h3{

    color:white;
    margin-bottom:8px;

}

.tech-card span{

    color:#38bdf8;
    font-size:15px;
    font-weight:600;

}

.tech-card:hover{

    transform:translateY(-12px);

    border-color:#38bdf8;

    background:rgba(56,189,248,.08);

    box-shadow:0 18px 40px rgba(56,189,248,.20);

}

@media(max-width:768px){

.tech-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:500px){

.tech-container{

grid-template-columns:1fr;

}

}

/* ===========================
        PRICING
=========================== */

.pricing{

    padding:100px 8%;
    background:#f8fafc;
    text-align:center;

}

.pricing-text{

    max-width:700px;
    margin:20px auto 60px;
    color:#64748b;
    line-height:1.8;

}

.pricing-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;

}

.pricing-card{

    background:white;

    border-radius:22px;

    padding:45px 35px;

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

    transition:.35s;

    position:relative;

}

.pricing-card:hover{

    transform:translateY(-12px);

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

}

.pricing-card h3{

    color:#0f172a;

    margin-bottom:15px;

}

.price{

    color:#38bdf8;

    font-weight:600;

}

.pricing-card h1{

    color:#2563eb;

    margin:20px 0;

    font-size:38px;

}

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:35px 0;

}

.pricing-card ul li{

    padding:12px 0;

    color:#475569;

    border-bottom:1px solid #e2e8f0;

}

.pricing-btn{

    display:inline-block;

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:14px 32px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.pricing-btn:hover{

    background:#0f172a;

}

.featured{

    border:3px solid #38bdf8;

    transform:scale(1.05);

}

.featured:hover{

    transform:scale(1.05) translateY(-12px);

}

.popular{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:#38bdf8;

    color:white;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

@media(max-width:768px){

.featured{

transform:none;

}

.featured:hover{

transform:translateY(-12px);

}

}

/* ===========================
   Testimonials
=========================== */

.testimonials{
    background:#f8fafc;
    text-align:center;
}

.testimonial-text{
    max-width:700px;
    margin:0 auto 50px;
    color:#64748b;
}

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

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(10,102,194,.15);
}

.stars{
    font-size:24px;
    color:#fbbf24;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#475569;
    font-style:italic;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#0A66C2;
    font-weight:600;
}
/* ===========================
   FAQ
=========================== */

.faq{
    background:#08111f;
    color:white;
}

.faq h2{
    color:white;
    text-align:center;
    margin-bottom:50px;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    padding:25px;
    margin-bottom:20px;
    transition:.3s;
}

.faq-item:hover{
    border-color:#38bdf8;
    transform:translateY(-3px);
}

.faq-item h3{
    color:#38bdf8;
    margin-bottom:12px;
    font-size:22px;
}

.faq-item p{
    color:#cbd5e1;
    line-height:1.7;
}
/* =========================
   PREMIUM FOOTER
========================= */

footer{
    background:#0b1220;
    color:#fff;
    padding:70px 10% 25px;
}

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

.footer-box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:20px;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:#0A66C2;
    transform:translateX(6px);
}

footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.1);
    margin:30px 0;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p:first-child{
    color:#0A66C2;
    font-weight:600;
    margin-bottom:12px;
    letter-spacing:1px;
}

.footer-bottom p:last-child{
    color:#94a3b8;
    font-size:15px;
}

.footer-bottom a{
    color:#38bdf8;
    text-decoration:none;
    font-weight:500;
}

.footer-bottom a:hover{
    color:#60a5fa;
    text-decoration:underline;
}

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

#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#08111f;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .6s ease, visibility .6s ease;
}

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

.loader-logo{
    width:320px;
    margin-bottom:20px;
    filter: invert(1) brightness(1.2)
            drop-shadow(0 0 12px rgba(56,189,248,.6));
}

.loader-content h2{
    color:white;
    letter-spacing:3px;
    margin-bottom:25px;
}

.loader{
    width:55px;
    height:55px;
    border:5px solid rgba(255,255,255,.2);
    border-top:5px solid #38bdf8;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:auto;
}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

#preloader.hide{
    opacity:0;
    visibility:hidden;
}

