/* ==========================
   CSS RESET
========================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html,
body{

    width:100%;

    overflow-x:hidden;

}
/* ==========================
   ROOT VARIABLES
========================== */

:root{

    /* Brand Colors */

    --primary:#003b95;
    --primary-dark:#002b70;

    --secondary:#d7e63b;

    --accent:#ef3b2d;

    --white:#ffffff;

    --black:#111111;

    --text:#555555;

    --gray:#f5f5f5;

    --light-gray:#f8f8f8;

    --border:#e5e5e5;

    /* Typography */

    --heading-font:'Poppins',sans-serif;

    --body-font:'Inter',sans-serif;

    /* Radius */

    --radius-sm:10px;

    --radius-md:16px;

    --radius-lg:24px;

    --radius-xl:40px;

    /* Shadow */

    --shadow-sm:
    0 5px 15px rgba(0,0,0,.05);

    --shadow-md:
    0 10px 30px rgba(0,0,0,.08);

    --shadow-lg:
    0 20px 50px rgba(0,0,0,.12);

    /* Transition */

    --transition:.4s ease;
}


/* ==========================
   TYPOGRAPHY
========================== */

body{

    font-family:var(--body-font);
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    background:#fff;

}

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:var(--heading-font);
    color:var(--black);
    font-weight:700;
    line-height:1.2;

}

h1{

    font-size:65px;
    letter-spacing:-1px;

}

h2{

    font-size:35px;

}

h3{

    font-size:25px;

}

h4{

    font-size:20px;

}

h5{

    font-size:18px;

}

h6{

    font-size:16px;

}

p{

    color:var(--text);
    font-size:14px;

}

a{

    text-decoration:none;

}

/* ==========================
   CONTAINER
========================== */

.container{

    width:90%;
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;

}

/* ==========================
   SECTION SPACING
========================== */

section{

    padding:100px 0;
    position:relative;

}

/* ==========================
   SECTION HEADER
========================== */

.section-header{

    text-align:center;
    max-width:760px;
    margin:0 auto 60px;

}

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:14px;
    font-weight:600;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:15px;

}

.section-header h2{

    margin-bottom:20px;

}

.section-header p{

    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin:0 auto;

}

/* ==========================
   BUTTONS
========================== */

.btn-primary,
.btn-secondary,
.product-btn,
.promo-btn,
.showcase-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;
    gap:10px;

    min-height:40px;

    padding:0 20px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    letter-spacing:.3px;

    transition:all .3s ease;

    cursor:pointer;

}

/* Primary Button */

.btn-primary{

    background:var(--secondary);

    color:var(--black);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

/* Secondary Button */

.btn-secondary{

    background:var(--light-gray);

    border:2px solid var(--secondary);

    color:var(--black);

}

.btn-secondary:hover{

    background:var(--white);

    color:var(--black);

    transform:translateY(-3px);

}

/* ==========================
   GRID UTILITIES
========================== */

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

/* ==========================
   GLOBAL CARD
========================== */

.card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/* ==========================
   STATUS BADGES
========================== */

.product-status{

    position:absolute;

    top:20px;
    left:20px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:32px;

    padding:0 14px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;

    letter-spacing:.5px;
    text-transform:uppercase;

    z-index:2;

}

/* Available */

.available{

    background:#16a34a;
    color:#fff;

    box-shadow:0 4px 12px rgba(22,163,74,.25);

}

/* Coming Soon */

.coming-soon{

    background:#f59e0b;
    color:#fff;

    box-shadow:0 4px 12px rgba(245,158,11,.25);

}


/* ==========================
   HOVER EFFECTS
========================== */

.hover-up{

    transition:var(--transition);
}

.hover-up:hover{

    transform:translateY(-10px);
}

.zoom-image{

    overflow:hidden;
}

.zoom-image img{

    transition:.6s ease;
}

.zoom-image:hover img{

    transform:scale(1.08);
}

/* ==========================
   HEADER
========================== */

.header{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    padding:10px 0;
}

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:70px;
}

/* Logo */

.logo{

    flex-shrink:0;
}

.logo img{

    width:120px;

    height:auto;

    display:block;
}

/* Navigation */

.nav-menu{

    display:flex;

    align-items:center;

    gap:40px;

    list-style:none;

    margin:0;

    padding:0;
}

.nav-menu li{

    list-style:none;
}

.nav-menu a{

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    transition:.3s ease;
}

.nav-menu a:hover{

    color:var(--secondary);
}

/* Header Actions */

.header-actions{

    display:flex;

    align-items:center;

    gap:15px;
}


/* Menu Toggle */

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:10px;

    background:rgba(255,255,255,.12);

    color:#fff;

    cursor:pointer;

    align-items:center;

    justify-content:center;

    font-size:20px;
}

/* Active Navigation */

.nav-menu a{
    position:relative;
}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--secondary);

    transition:.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{

    width:100%;
}

.nav-menu a.active{

    color:var(--secondary);
}


/* ==========================================
   HERO SECTION
========================================== */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

    padding:0 !important;

    display:flex;

    align-items:center;
}

/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;
}

.hero-slide{

    position:absolute;

    inset:0;

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

transform:translate3d(100%,0,0);

transition:
transform 1.2s cubic-bezier(
0.77,
0,
0.175,
1
);
    z-index:1;
}

/* Active Slide */

.hero-slide.active{

    transform:translateX(0);

    z-index:3;
}

/* Previous Slide */

.hero-slide.prev{

    transform:translateX(-100%);

    z-index:2;
}

/* ==========================================
   OVERLAY
========================================== */

.hero-slide::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(0,20,80,.82) 0%,
        rgba(0,20,80,.65) 25%,
        rgba(0,20,80,.25) 55%,
        rgba(0,20,80,.05) 75%,
        transparent 100%
    );

    z-index:1;
}

/* ==========================================
   SLIDE 01
========================================== */

.hero-slide:nth-child(1){

    background-image:
    url("../images/hero-1.png");
}

/* ==========================================
   SLIDE 02
========================================== */

.hero-slide:nth-child(2){

    background-image:
    url("../images/hero-2.png");
}

/* ==========================================
   SLIDE 03
========================================== */

.hero-slide:nth-child(3){

    background-image:
    url("../images/banner-2.jpeg");
}

/* ==========================================
   HERO WRAPPER
========================================== */

.hero-wrapper{

    position:relative;

    z-index:5;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    width:100%;

    min-height:100vh;

}
/* ==========================================
   HERO CONTENT
========================================== */
.hero-content{

    opacity:0;

    transform:translateX(-50px);

    transition:
    opacity .8s ease,
    transform .8s ease;

    transition-delay:.3s;
}

.hero-slide.active .hero-content{

    opacity:1;

    transform:translateX(0);
}

.hero-content{

    width:100%;

    max-width:60%;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;
        padding-top:80px;


}

/* Subtitle */

.hero-subtitle{

    display:inline-block;

    margin-bottom:10px;

    color:var(--secondary);

    font-size:18px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:1px;
}

/* Main Heading */

.hero-content h1{

    color:#fff;


    line-height:1;

    margin-bottom:10px;

    text-shadow:
    0 4px 20px rgba(0,0,0,.3);
}

/* Sub Heading */

.hero-content h2{

    color:var(--secondary);


    margin-bottom:10px;

    font-weight:600;
}

/* Description */

.hero-content p{

    color:rgba(255,255,255,.95);


    line-height:1.8;

    margin-bottom:20px;

    max-width:550px;
}

/* ==========================================
   BUTTONS
========================================== */

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

/* ==========================================
   HERO DOTS
========================================== */

.hero-controls{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:10;
}

.hero-dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.4);

    cursor:pointer;

    transition:.3s ease;
}

.hero-dot.active{

    background:var(--secondary);

    transform:scale(1.2);
}



/* ==========================
FEATURED PRODUCTS
========================== */

.featured-products{


background:var(--gray);


}

.products-grid{


display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;


}

/* Product Card */

.product-card{


position:relative;

overflow:hidden;

border-radius:24px;

min-height:420px;

background:#fff;

cursor:pointer;

box-shadow:var(--shadow-sm);

transition:.4s ease;


}

.product-card:hover{


transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,59,149,.15);


}

.product-image{

    width:100%;

    height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;
}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.8s ease;
}

.product-card:hover .product-image img{

transform:scale(1.08);


}

/* Product Name Overlay */

.product-content{


position:absolute;

left:0;

right:0;

bottom:0;

padding:30px;

background:
linear-gradient(
    transparent,
    rgba(0, 84, 180, 0.9)
);


}

.product-content h3{


color:#fff;

font-size:20px;

font-weight:700;

margin:0;

line-height:1.3;


}

/* Bottom CTA */

.products-action{


text-align:center;

margin-top:60px;


}



/* ==========================
PROMOTIONAL BANNERS
========================== */

.promo-banners {
    min-height: 100vh;
    margin: 0;

    background-image: url('../images/promo-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* ==========================
   BRAND SHOWCASE
========================== */

.brand-showcase{

    background:
    linear-gradient(
        135deg,
        #001b4d 0%,
        #003b95 50%,
        #005eff 100%
    );

    background-size:cover;

    background-position:center;
}

.showcase-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

/* Content */

.showcase-content{

    color:#fff;
}

.showcase-subtitle{

    display:inline-block;

    color:var(--secondary);

    margin-bottom:20px;

    font-size:20px;
}

.showcase-content h2{

    color:#fff;

    margin-bottom:25px;
}

.showcase-content h3{

    color:var(--secondary);

    margin-bottom:25px;
}

.showcase-content p{

color:rgba(255,255,255,.9);

    margin-bottom:35px;
}

.showcase-btn{

    background:var(--secondary);

    color:var(--black);
}

/* Images */

.showcase-images{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;
}

.showcase-main-image{

    max-width:400px;

    width:100%;
}

.showcase-secondary-image{

    position:absolute;

    top:40px;

    right:-20px;

    width:220px;
}

/* Quality Badge */

.quality-badge{

    position:absolute;

    bottom:30px;

    left:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--accent);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    font-weight:700;
}

.quality-badge strong{

    font-size:18px;
}

/* Hover Effects */

.showcase-main-image,
.showcase-secondary-image{

    transition:.7s ease;
}

.showcase-images:hover .showcase-main-image{

    transform:scale(1.04);
}

.showcase-images:hover .showcase-secondary-image{

    transform:translateY(-12px);
}

.showcase-features{

    margin:35px 0;

    display:grid;

    gap:15px;

}

.showcase-feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:600;

}

.showcase-feature i{

    color:var(--secondary);

    font-size:18px;

}


/* ==========================
   PRODUCT CATEGORIES
========================== */

.product-categories{

    background:#fff;
}

.categories-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.category-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);
}

.category-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);
}

.category-image{

    overflow:hidden;

    height:280px;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.8s ease;
}

.category-card:hover .category-image img{

    transform:scale(1.1);
}

.category-content{

    padding:30px;
}

.category-content h3{

    margin-bottom:15px;
}

.category-content p{

    margin-bottom:25px;

    font-weight:600;

    color:var(--primary);
}


/* ==========================
   CATEGORY PROMO
========================== */

.category-promo{
padding: 20px;
    background:var(--gray);
}

.category-promo-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.promo-box{

    position:relative;

    min-height:360px;

    overflow:hidden;

    border-radius:10px;

    padding:40px;

    display:flex;

    align-items:center;

    transition:var(--transition);
}

.promo-box:first-child{

    background:linear-gradient(
    135deg,
    #003b95,
    #0058dc
    );
}

.promo-box:last-child{

    background:linear-gradient(
    135deg,
    #00a651,
    #28c96c
    );
}
.pink-box:last-child{

    background:linear-gradient(
    135deg,
    #a60053,
    #c92893
    );
}

.promo-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}

.promo-box-content{

    max-width:55%;

    position:relative;

    z-index:2;
}

.promo-box-content span{

    color:rgba(255,255,255,.8);

    display:block;

    margin-bottom:15px;

    font-weight:600;
}

.promo-box-content h2{

    color:#fff;
    margin-bottom:20px;
}

.promo-box-content p{

color:rgba(255,255,255,.9);

    margin-bottom:30px;
}


.promo-box-image{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 45%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.promo-box-image img{
    width: 100%;
    max-height: 100%;
    object-fit: contain;

    display: block;
    transition: transform .8s ease;
}

.promo-box:hover .promo-box-image img{
    transform: scale(1.08);
}

/* ==========================
   WHY CHOOSE SUMO
========================== */

.why-choose-sumo{

    background:#fff;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.why-card{

    background:#fff;

    text-align:center;

    padding:50px 30px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);
}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);
}

.why-card i{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    font-size:34px;

    transition:var(--transition);
}

.why-card:hover i{

    background:var(--secondary);

    color:var(--black);

    transform:rotateY(180deg);
}

.why-card h3{

    margin-bottom:15px;
}


/* ==========================
   PARTNER CTA
========================== */

.partner-cta{
    background:
    linear-gradient(
        rgba(0, 0, 0, 0.863),
        rgba(0, 140, 255, 0.884)
    ),
    url("../images/hero-1-mobile.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    text-align: center;
}

.partner-content{

    max-width:900px;

    margin:auto;
}

.partner-content span{

    color:var(--secondary);

    display:block;

    margin-bottom:20px;

    font-size:20px;

    font-weight:600;
}

.partner-content h2{

    color:#fff;

    margin-bottom:25px;
}

.partner-content p{

    color:rgba(255,255,255,.9);

    margin-bottom:40px;

    font-size:20px;
}

.partner-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.partner-benefits{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    max-width:700px;

    margin:40px auto;

}

.benefit-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:rgba(255,255,255,.1);

    padding:16px 20px;

    border-radius:12px;

    color:#fff;

    font-weight:600;

}

.benefit-item i{

    color:var(--secondary);

    font-size:18px;

}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{

    background:#fff;
}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;
}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:35px;
}

.contact-item i{

    width:40px;

    height:40px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;
}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid var(--border);

    border-radius:12px;
}

.contact-form button{

    height:50px;

    background:var(--primary);

    color:#fff;

    border-radius:12px;

    font-weight:700;

    cursor:pointer;

    transition:var(--transition);
}

.contact-form button:hover{

    background:var(--secondary);

    color:var(--black);
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials{

    background:#ffffff;

}

.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:.4s ease;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.stars{

    color:#fbbf24;

    margin-bottom:20px;

    font-size:18px;

}

.testimonial-card p{

    margin-bottom:25px;

    line-height:1.8;

}

.testimonial-card h4{

    margin-bottom:5px;

    color:var(--primary);

}

.testimonial-card span{

    color:var(--text);

    font-size:14px;

}

/* ==========================
   FOOTER
========================== */

/* ==========================
   FOOTER
========================== */

.footer{

    background:#0f172a;
    color:#fff;
    padding-top:100px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

    gap:50px;

    padding-bottom:70px;

}

/* Footer Logo */

.footer-column img{

    max-width:120px;

    margin-bottom:25px;

}

/* Headings */

.footer-column h3{

    color:#fff;

    margin-bottom:25px;

    font-size:20px;

}

/* Text */

.footer-column p{

    color:rgba(255,255,255,.75);

    margin-bottom:15px;

    line-height:1.8;

}

/* Lists */

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:15px;

}

.footer-column a{

    color:rgba(255,255,255,.75);

    transition:var(--transition);

}

.footer-column a:hover{

    color:var(--secondary);

}

/* Contact Icons */

.footer-column p i{

    color:var(--secondary);

    width:20px;

    margin-right:10px;

}

/* Social Links */

.footer .social-links{

    margin-top:25px;

    display:flex;

    gap:15px;

}

.footer .social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:var(--transition);

}

.footer .social-links a:hover{

    background:var(--secondary);

    color:var(--black);

    transform:translateY(-5px);

}

/* Footer Bottom */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:30px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    margin:0;

}

/* Developer Link */

.developer-link{

    color:var(--secondary);

    font-weight:700;

    transition:var(--transition);

}

.developer-link:hover{

    color:#fff;

    text-decoration:underline;

}


/* ==========================
   CUSTOM SCROLLBAR
========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--secondary);
}

/* ==========================
   TEXT SELECTION
========================== */

::selection{
    background:var(--secondary);
    color:var(--black);
}

/* ==========================
   PREMIUM BUTTON EFFECT
========================== */

.btn-primary,
.partner-btn,
.product-btn{

    position:relative;

    overflow:hidden;
}

.btn-primary::before,
.partner-btn::before,
.product-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.4),
    transparent
    );

    transition:.8s;
}

.btn-primary:hover::before,
.partner-btn:hover::before,
.product-btn:hover::before{

    left:100%;
}


.main-product{

    animation:float 4s ease-in-out infinite;
}

.floating-product{

    animation:float 5s ease-in-out infinite;
}

/* ==========================
   REVEAL ANIMATION
========================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;
}

.reveal.active{

    opacity:1;

    transform:translateY(0);
}

/* ==========================
   IMAGE GLOW
========================== */

.product-card:hover{

    box-shadow:
    0 25px 60px rgba(0,59,149,.15);
}

/* ==========================
   BACKGROUND PATTERN
========================== */

.pattern-bg{

    position:relative;
}

.pattern-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(
    rgba(0,59,149,.05) 1px,
    transparent 1px
    );

    background-size:30px 30px;

    pointer-events:none;
}


/* ==========================
   BACK TO TOP
========================== */

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    z-index:999;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);
}

#backToTop.show{

    opacity:1;

    visibility:visible;
}

#backToTop:hover{

    background:var(--secondary);

    color:var(--black);

    transform:translateY(-5px);
}

/* ==========================
   PRELOADER
========================== */

.preloader{

    position:fixed;

    inset:0;

    background:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999;
}

.loader-logo img{

    width:180px;

    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }
}


/* ==========================
   INNER PAGE HERO
========================== */

.page-hero{
    background:
    linear-gradient(
        rgba(0,59,149,.85),
        rgba(0,59,149,.85)
    ),
    url("../images/banner-2.jpeg");

    background-size:cover;
    background-position:center;

    padding:180px 0 120px;
    text-align:center;
}

.page-hero h1{
    color:#fff;
    margin-bottom:20px;
}

.page-hero p{
    color:rgba(255,255,255,.9);
    max-width:700px;
    margin:auto;
}

/* ==========================
   PRODUCT PAGE
========================== */

.product-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.filter-btn{
    padding:12px 24px;
    border:none;
    border-radius:50px;
    background:#f5f5f5;
    cursor:pointer;
    font-weight:600;
}

.filter-btn.active{
    background:var(--primary);
    color:#fff;
}

.product-page-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.product-page-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.product-page-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    padding:20px;
}

.product-page-content{
    padding:25px;
    text-align:center;
}

/* ==========================
   ABOUT PAGE
========================== */

.about-story{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.about-content h2{
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
    line-height:1.9;
}

.company-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:40px 20px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
}

.stat-box h3{
    color:var(--primary);
    margin-bottom:10px;
}

.mission-vision{
    background:var(--gray);
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:var(--shadow-sm);
}

.mission-card i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;
}

.mission-card h3{
    margin-bottom:20px;
}

@media(max-width:992px){

    .about-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }

    .company-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .company-stats{
        grid-template-columns:1fr;
    }

}

/* ==========================
   CONTACT PAGE
========================== */

.contact-cards{
    background:var(--gray);
}

.contact-cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.contact-card i{
    width:80px;
    height:80px;
    margin:auto auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:var(--primary);

    color:#fff;
    font-size:30px;
}

.contact-card h3{
    margin-bottom:15px;
}

.contact-card a{
    color:var(--primary);
    font-weight:600;
}

.contact-page-form{
    background:#fff;
}

.contact-form-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.business-hours{
    margin-top:30px;
}

.business-hours li{
    list-style:none;
    padding:12px 0;
    border-bottom:1px solid var(--border);
}

.whatsapp-box{
    margin-top:30px;
    padding:30px;
    border-radius:20px;
    background:#25D366;
    color:#fff;
}

.whatsapp-box h3{
    color:#fff;
    margin-bottom:15px;
}

.whatsapp-box p{
    color:#fff;
    margin-bottom:20px;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:0;
}


/* ==========================================
   SINGLE PRODUCT PAGE
========================================== */

.single-product{

    padding:100px 0;

    background:#fff;
}

.single-product-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

/* Product Image */

.single-product-image{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    overflow:hidden;
}

.single-product-image img{

    width:100%;

    height:500px;

    object-fit:contain;

    transition:.6s ease;
}

.single-product-image:hover img{

    transform:scale(1.05);
}

/* Product Content */

.single-product-content h2{

    margin-bottom:20px;
}

.single-product-content p{

    margin-bottom:30px;

    font-size:16px;

    line-height:1.8;
}

/* Features */

.showcase-features{

    display:grid;

    gap:15px;
}

.single{
    display:flex;
    align-items:center;
    gap:12px;
color: var(--black);
    font-weight:600;
}
.showcase-feature i{

    color:#00a651;
}

/* ==========================================
   PRODUCT VARIANTS
========================================== */

.product-variants-section,
.featured-products{

    background:#f8f8f8;
}

.variants-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.variant-card{

    background:#fff;

    border-radius:24px;

    padding:25px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s ease;

    overflow:hidden;
}

.variant-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,59,149,.15);
}

.variant-card img{

    width:100%;

    height:220px;

    object-fit:contain;

    margin-bottom:15px;

    transition:.6s ease;
}

.variant-card:hover img{

    transform:scale(1.08);
}

.variant-card h3{

    color:#003b95;

    margin-bottom:8px;

    font-size:20px;
}

.variant-card p{

    font-size:14px;

    color:#666;
}

/* ==========================================
   PRODUCT CTA
========================================== */

.product-cta{

    text-align:center;

    margin-top:60px;
}


