/* =====================================================
   SVA ENTERPRISES
   Professional Manufacturing Website
======================================================*/

:root{

    --primary:#0B3D91;
    --secondary:#1D4ED8;
    --dark:#0F172A;
    --light:#F8FAFC;
    --white:#ffffff;
    --text:#555;
    --heading:#1E293B;
    --border:#E5E7EB;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.3s;

}

ul{

    list-style:none;
    padding:0;

}

section{

    padding:90px 0;

}

.container{

    max-width:1200px;

}

/* ===========================
TYPOGRAPHY
===========================*/

.section-subtitle{

    color:var(--secondary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;

}
.h1
{
    color:var(--primary);

}
.section-title{

    font-size:42px;
    font-weight:700;
    color:var(--heading);
    margin:15px 0 20px;

}

.section-text{

    max-width:700px;
    margin:auto;
    color:#666;

}

/* ===========================
NAVBAR
===========================*/

.navbar{

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    padding:15px 0;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.logo{

    width:60px;
    height:60px;
    object-fit:contain;

}
/*
.company-name{

    font-size:20px;
    color:var(--primary);
    font-weight:700;

}
*/
.company-name{
    display:block;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    color:var(--primary);
}
.nav-link{

    color:#333;
    font-weight:500;
    margin-left:18px;
    position:relative;

}

.nav-link:hover{

    color:var(--secondary);

}

.nav-link.active{

    color:var(--secondary);

}


.nav-link::after{
    display: none;
}

.nav-link:hover::after{

    width:100%;

}

.quote-btn{

    border-radius:30px;
    padding:12px 30px;
    font-weight:600;

}


.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
}


/* ===========================
BUTTONS
===========================*/

.btn-primary{

    background:var(--secondary);
    border:none;
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;

}

.btn-primary:hover{

    background:var(--primary);
    transform:translateY(-3px);

}

.btn-outline-light{

    border-radius:40px;
    padding:14px 35px;
    font-weight:600;

}

/* ===========================
HERO
===========================*/

.hero{

    min-height:100vh;

    background:
    linear-gradient(rgba(5,20,45,.75),
    rgba(5,20,45,.75)),
    url("../images/hero.jpg")
    center center/cover;

    position:relative;

    display:flex;

    align-items:center;

    color:#fff;

}

.overlay{

    position:absolute;
    inset:0;

}

.hero-tag{

    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:25px;

}

.hero h1{

    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;

}

.hero p{

    font-size:18px;
    max-width:620px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* ===========================
HERO CARD
===========================*/

.hero-card{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:25px;

    padding:30px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card i{

    font-size:40px;

    color:var(--secondary);

    margin-bottom:15px;

}

.stat-card h3{

    color:var(--primary);

    font-weight:700;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    color:#666;

}

/* ===========================
ABOUT
===========================*/

.about-preview img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about-preview p{

    margin-bottom:20px;

}

/* ===========================
UTILITY
===========================*/

.shadow-lg{

    box-shadow:var(--shadow)!important;

}

.rounded-4{

    border-radius:25px!important;

}

.bg-light{

    background:#F8FAFC!important;

}
/*======================================================
    WHY CHOOSE US
======================================================*/

.why-us{
    background:#fff;
}

.feature-card{

    background:#fff;

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

    border:1px solid #eee;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.feature-card i{

    width:80px;

    height:80px;

    background:#EAF2FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    color:var(--secondary);

    font-size:34px;

    margin-bottom:25px;

}

.feature-card h4{

    color:var(--heading);

    margin-bottom:15px;

    font-weight:600;

}

.feature-card p{

    color:#666;

    margin:0;

}

/*======================================================
PRODUCTS
======================================================*/

.products-home{

    background:#F7F9FC;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card h4{

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

.product-card p{

    color:#666;

    min-height:110px;

}

.product-card a{

    color:var(--secondary);

    font-weight:600;

}

.product-card a:hover{

    color:var(--primary);

}

.product-card i{

    margin-left:8px;

}

/*======================================================
MANUFACTURING
======================================================*/

.capabilities{

    background:#fff;

}

.capabilities img{

    border-radius:22px;

}

.capabilities ul li{

    margin-bottom:15px;

    font-weight:500;

}

.capabilities i{

    color:#0D6EFD;

    margin-right:10px;

}

/*======================================================
INDUSTRIES
======================================================*/

.industries{

    background:#F8FAFC;

}

.industry-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    height:100%;

}

.industry-card:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-12px);

}

.industry-card:hover h4{

    color:#fff;

}

.industry-card:hover p{

    color:#fff;

}

.industry-card:hover i{

    color:#fff;

}

.industry-card i{

    font-size:48px;

    color:var(--secondary);

    margin-bottom:25px;

}

.industry-card h4{

    font-weight:600;

    color:var(--heading);

    margin-bottom:15px;

}

/*======================================================
CTA
======================================================*/

.cta-section{

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#0B3D91,#1D4ED8);

    border-radius:25px;

    padding:70px;

    overflow:hidden;

    position:relative;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-100px;

    top:-100px;

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

}

.cta-box .btn{

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

}

/*======================================================
SECTION SPACING
======================================================*/

.section-title{

    margin-bottom:20px;

}

.section-subtitle{

    display:inline-block;

    margin-bottom:10px;

}
/* =====================================================
   CONTACT PREVIEW
====================================================== */

.contact-preview {
    background: #fff;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-box i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-box h5 {
    color: var(--heading);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-box p {
    margin: 0;
    color: #666;
}

.contact-preview iframe {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* =====================================================
   FOOTER
====================================================== */

footer {
    background: var(--dark);
    color: #d6d6d6;
    padding: 25px 0 20px;
}
/*

.footer-logo {
    width: 70px;
    margin-bottom: 20px;
}

footer h3,
footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

footer p {
    color: #c7c7c7;
}

footer ul {
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #c7c7c7;
    transition: .3s;
}

footer ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

footer hr {
    border-color: rgba(255,255,255,.12);
    margin: 20px 0 20px;
}
*/
.copyright {
    text-align: center;
    color: #bdbdbd;
    font-size: 15px;
}

/* =====================================================
   WHATSAPP BUTTON
====================================================== */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
    z-index: 999;
    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}
















































































/* =====================================================
   SCROLL TO TOP
====================================================== */

#topBtn {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: .3s;
    box-shadow: var(--shadow);
}

#topBtn:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* =====================================================
   ANIMATIONS
====================================================== */

.feature-card,
.product-card,
.industry-card,
.stat-card,
.contact-box,
.cta-box {
    animation: fadeUp .6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

    .hero {
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        margin-top: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-box {
        padding: 45px 30px;
        text-align: center;
    }

    .cta-box .btn {
        margin-top: 25px;
    }

    .contact-preview .row > div:first-child {
        margin-bottom: 40px;
    }

}
/*
@media (max-width: 768px) 


    section {
        padding: 70px 0;
    }

    .navbar-brand small {
        display: none;
    }

    .company-name {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .product-card img {
        height: 220px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    #topBtn {
        width: 50px;
        height: 50px;
    } */
     @media (max-width:768px)
     {

    .logo{
        width:45px;
        height:45px;
    }

    .company-name{
        font-size:18px;
    }

    .navbar-brand small{
        display:none;
    }

    .navbar-brand{
        flex:1;
        min-width:0;
    }

    .navbar-toggler{
        margin-left:auto;
    }
    @media (max-width: 768px) {

    .stat-card h3 {
        font-size: 20px;
    }

    .stat-card p {
        font-size: 13px;
    }

    .stat-card i {
        font-size: 24px;
    }

}



}

@media (max-width: 576px) {

    .hero {
        min-height: auto;
    }

    .hero-tag {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .feature-card,
    .industry-card,
    .product-card {
        margin-bottom: 20px;
    }
      .stat-card {
        padding: 12px 8px;
    }

    .stat-card h3 {
        font-size: 16px;
    }

    .stat-card p {
        font-size: 11px;
    }

    .stat-card i {
        font-size: 20px;
    }

}
/* ===========================
PAGE HERO
=========================== */

.page-hero{

    min-height:50vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(rgba(10,25,55,.75),
    rgba(10,25,55,.75)),
    url("../images/about-banner.jpg")
    center center/cover;

}

.page-hero h1{

    font-size:52px;

    font-weight:700;

}

.page-hero p{

    font-size:18px;

    opacity:.9;

}


.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.footer-brand h4{
    margin:0;
    color:#fff;
    font-size:32px;
    font-weight:600;
}

.footer-logo{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:50%;
    display:block;
}