/*======================================
THEME COLORS
=======================================*/

:root{

    --primary:#FFC107;
    --secondary:#F7931E;
    --accent:#58B7D4;
    --dark:#1E3A5F;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --text:#6c757d;
    --border:#e9ecef;

    --gradient:linear-gradient(135deg,var(--accent),var(--dark));

    --shadow:0 15px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:var(--light);
overflow-x:hidden;
}

.custom-navbar{

background:rgba(255,255,255,.95);

backdrop-filter:blur(12px);

padding:15px 0;

transition:.4s;

box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.logo{

height:52px;

}

.navbar-brand{

display:flex;

align-items:center;

gap:10px;

font-size:24px;

font-weight:700;

color:var(--primary);

}
.navbar.scrolled{

background:#fff!important;

box-shadow:0 10px 30px rgba(0,0,0,.1);

transition:.3s;

}
.nav-link{

font-weight:600;

margin-left:18px;

color:#444;

position:relative;

}

.nav-link::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:var(--secondary);

transition:.4s;

}

.nav-link:hover::after,

.nav-link.active::after{

width:100%;

}

.btn-call{

background:var(--accent);;

color:var(--white);

margin-right:8px;

border-radius:50px;

padding:10px 15px;

}

.btn-whatsapp{

background:var(--secondary);

color:var(--white);

border-radius:50px;

padding:10px 15px;

}

.btn-call:hover,

.btn-whatsapp:hover{

transform:translateY(-3px);

color:var(--white);

}

.btn-warning,
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active{

background:var(--primary) !important;

border-color:var(--primary) !important;

color:var(--dark) !important;

}

.btn-success,
.btn-success:hover,
.btn-success:focus,
.btn-success:active{

background:var(--accent)!important;

border-color:var(--accent)!important;

color:var(--white) !important;

}
/*==========================================
HERO SECTION
==========================================*/

.hero-section{
    position: relative;
    overflow: hidden;
}

.hero-slide{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background Images */

.slide-one{
    background-image:url("../img/slider/slide-1.jpg");
}

.slide-two{
    background-image:url("../img/slider/slide-2.jpg");
}

.slide-three{
    background-image:url("../img/slider/slide-3.jpg");
}

/* Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(32,75,99,.92) 0%,
        rgba(32,75,99,.75) 40%,
        rgba(88,183,212,.45) 100%
    );
}

/* Content */

.hero-content{
    position:relative;
    z-index:5;
    max-width:650px;
    color:var(--white);
}

.hero-tag{
    display:inline-block;
    padding:10px 24px;
    background:var(--gradient);
    color:var(--white);
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:25px;
    box-shadow:var(--shadow);
}

.hero-content h1{
    font-size:62px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
    color:var(--white);
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    font-size:18px;
    line-height:32px;
    color:rgba(255,255,255,.92);
    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.hero-buttons .btn-warning{
    background:var(--gradient);
    border:none;
    color:var(--white);
}

.hero-buttons .btn-warning:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.hero-buttons .btn-outline-light{
    border:2px solid rgba(255,255,255,.8);
    color:var(--white);
}

.hero-buttons .btn-outline-light:hover{
    background:var(--white);
    color:var(--dark);
}

/* Swiper Pagination */

.swiper-pagination{
    bottom:35px !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:rgba(255,255,255,.45);
    opacity:1;
    transition:.3s;
}

.swiper-pagination-bullet-active{
    width:35px;
    border-radius:30px;
    background:var(--primary);
}

/*==========================================
Large Desktop
==========================================*/

@media (min-width:1400px){

.hero-content{
    max-width:720px;
}

.hero-content h1{
    font-size:72px;
}

.hero-content p{
    font-size:20px;
}

}

/*==========================================
Laptop
==========================================*/

@media (max-width:1199px){

.hero-content h1{
    font-size:54px;
}

.hero-content p{
    font-size:17px;
}

}

/*==========================================
Tablet
==========================================*/

@media (max-width:991px){

.hero-slide{
    min-height:800px;
    text-align:center;
}

.hero-content{
    max-width:100%;
    margin:auto;
    padding:0 30px;
}

.hero-content h1{
    font-size:46px;
}

.hero-content p{
    font-size:16px;
    line-height:28px;
}

.hero-buttons{
    justify-content:center;
}

}

/*==========================================
Mobile
==========================================*/

@media (max-width:767px){

.hero-slide{
    min-height:700px;
    background-position:center;
}

.overlay{
    background:linear-gradient(
        rgba(32,75,99,.88),
        rgba(32,75,99,.65)
    );
}

.hero-content{
    text-align:center;
    padding:0 20px;
}

.hero-tag{
    font-size:13px;
    padding:8px 18px;
}

.hero-content h1{
    font-size:34px;
    line-height:1.3;
}

.hero-content p{
    font-size:15px;
    line-height:26px;
}



.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

.gallery-hidden {
    display: none;
}

/*==========================================
Small Mobile
==========================================*/

@media (max-width:575px){

.hero-slide{
    min-height:450px;
}

.hero-content{
    padding:0 15px;
}

.hero-tag{
    font-size:12px;
}

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:14px;
    line-height:24px;
}

.swiper-pagination{
    bottom:15px !important;
}

}
/* ========================================
ABOUT SECTION
======================================== */

.about-section{

background:var(--white);

padding:100px 0;

}

.section-tag{

display:inline-block;

background:var(--accent);

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.section-title{

font-size:42px;

font-weight:700;

margin-bottom:20px;

line-height:1.3;

}

.section-title span{

color:var(--accent);

}

.about-text{

font-size:16px;

color:#666;

line-height:30px;

margin-bottom:15px;

}

.about-image{

position:relative;

overflow:hidden;

}

.main-img{

transition:.5s;

}

.main-img:hover{

transform:scale(1.05);

}

.experience-card{

position:absolute;

bottom:20px;

right:20px;

background:var(--accent);

color:#fff;

padding:25px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.experience-card h2{

font-size:42px;

font-weight:700;

margin:0;

}

.feature-box{

background:#f8f9fa;

padding:15px 20px;

border-radius:12px;

font-weight:600;

transition:.3s;

}

.feature-box i{

color:var(--accent);

margin-right:10px;

font-size:20px;

}

.feature-box:hover{

background:var(--accent);

color:#fff;

transform:translateY(-5px);

}

.feature-box:hover i{

color:#fff;

}
/*=============================
WHY US
=============================*/

.section-padding{

padding:100px 0;

}

.section-subtitle{

display:inline-block;

padding:8px 20px;

background:var(--secondary);

color:#fff;

border-radius:30px;

font-weight:600;

font-size:14px;

margin-bottom:20px;

}

.section-heading{

font-size:44px;

font-weight:700;

margin-bottom:15px;

}

.section-heading span{

color:var(--accent);

}

.section-description{

max-width:700px;

margin:auto;

color:#666;

font-size:17px;

line-height:30px;

}

.why-card{

background:var(--white);

padding:40px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

position:relative;

overflow:hidden;

}

.why-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:5px;

background:var(--primary);

transition:.4s;

}

.why-card:hover::before{

left:0;

}

.why-card:hover{

transform:translateY(-12px);

}

.icon-box{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

background:var(--secondary);

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.icon-box i{

font-size:34px;

color:#fff;

}

.why-card h4{

font-weight:700;

margin-bottom:15px;

}

.why-card p{

color:#666;

line-height:28px;

}
/*=========================
ACHIEVEMENT SECTION
=========================*/

.achievement-section{

padding:90px 0;

background:var(--gradient);

position:relative;

overflow:hidden;

}

.achievement-section::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(255,255,255,.08);

border-radius:50%;

top:-200px;

left:-120px;

}

.achievement-section::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-150px;

right:-100px;

}

.achievement-box{

position:relative;

z-index:2;

background:rgba(255,255,255,.08);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.15);

padding:35px 25px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

}

.achievement-box:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.12);

}

.achievement-icon{

width:80px;

height:80px;

background:var(--accent);

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

}

.achievement-icon i{

font-size:34px;

color:var(--white);

}

.achievement-box h2{

color:#fff;

font-size:46px;

font-weight:700;

margin-bottom:10px;

}

.achievement-box p{

color:#fff;

margin:0;

font-size:17px;

}
/*==================================================
PRODUCT SHOWCASE
==================================================*/

.products-section{
    padding:100px 0;
    background:linear-gradient(to bottom,#f8fbfd,#ffffff);
}

.product-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:60px;
}

.tab-btn{

    border:none;

    padding:14px 28px;

    border-radius:50px;

    background:#ffffff;

    color:#444;

    font-weight:600;

    font-size:15px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.tab-btn:hover{

    background:var(--accent);

    color:#fff;

    transform:translateY(-3px);

}

.tab-btn.active{

    background:var(--gradient);

    color:#fff;

    box-shadow:0 15px 30px rgba(25,135,84,.35);

}

.product-item{

    transition:.45s;

}

.product-card{

    background:var(--white);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-img{

    height:260px;

    position:relative;

    overflow:hidden;

}

.product-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.12);

}

.product-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.15),
    rgba(0,0,0,.70));

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-overlay{

    opacity:1;

}

.overlay-btn{

    text-decoration:none;

    background:var(--primary);

    color:#000;

    padding:12px 26px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.overlay-btn:hover{

    background:var(--white);

    color:var(--accent);

}

.product-body{

    padding:28px;

}

.product-body h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#222;

}

.product-body p{

    color:#777;

    line-height:28px;

    min-height:80px;

}

.product-footer{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.product-footer .btn{

    flex:1;

    border-radius:50px;

    padding:12px;

    font-weight:600;

}

.product-footer .btn-success{

    background:#25D366 !important;

    border:none;

}

.product-footer .btn-primary{

    background:var(--primary);

    border:none;

}

.product-footer .btn:hover{

    transform:translateY(-2px);

}

.hide-product{

    transform:scale(.85);

    opacity:0;

    display:none!important;

}

.show-product{

    display:block!important;

    animation:fadeProducts .45s ease;

}

@keyframes fadeProducts{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Mobile */

@media(max-width:991px){

.product-tabs{

gap:10px;

}

.tab-btn{

padding:12px 20px;

font-size:14px;

}

.product-img{

height:220px;

}

}

@media(max-width:576px){

.product-body h4{

font-size:20px;

}

}
/*=========================
CONTACT
==========================*/

.contact-section{

padding:100px 0;

background:var(--white);

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.contact-item{

display:flex;

gap:20px;

align-items:flex-start;

padding:20px;

background:#f8f9fa;

border-radius:15px;

transition:.3s;

}

.contact-item:hover{

transform:translateY(-5px);

}

.contact-icon{

width:60px;

height:60px;

border-radius:50%;

background:var(--accent);

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:24px;

flex-shrink:0;

}

.contact-item h5{

font-weight:700;

margin-bottom:8px;

}

.contact-item a{

text-decoration:none;

color:#444;

}

.contact-form{

background:var(--white);

padding:35px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form .form-control{

height:55px;

border-radius:10px;

box-shadow:none;

}

.contact-form textarea{

height:auto!important;

}

.submit-btn{

background:var(--accent);

color:#fff;

padding:15px 35px;

border-radius:50px;

font-weight:600;

}

.submit-btn:hover{

background:#146c43;

color:#fff;

}

.map-box{

overflow:hidden;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.map-box iframe{

width:100%;

height:450px;

border:0;

}
/*=========================
FOOTER
==========================*/

.footer{

background:#0d1f16;

color:#fff;

padding:70px 0 20px;

}

.footer h3,
.footer h4{

margin-bottom:20px;

font-weight:700;

}

.footer p{

color:#ccc;

line-height:28px;

}

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#ccc;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#FFC107;

padding-left:5px;

}

.social-icons{

display:flex;

gap:15px;

margin-top:20px;

}

.social-icons a{

width:45px;

height:45px;

background:var(--accent);

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

color:#fff;

font-size:20px;

transition:.3s;

}

.social-icons a:hover{

background:var(--primary);

color:#000;

transform:translateY(-5px);

}

.footer hr{

margin:40px 0 20px;

border-color:rgba(255,255,255,.15);

}

.footer-bottom{

text-align:center;

color:#aaa;

font-size:15px;

}
/* Floating Buttons */

.floating-buttons{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:9999;

}

.floating{

width:60px;

height:60px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:26px;

color:#fff;

text-decoration:none;

box-shadow:0 15px 35px rgba(0,0,0,.25);

animation:pulse 2s infinite;

}

.whatsapp{

background:#25D366;

}

.call{

background:#0D6EFD;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}
#scrollTop{

position:fixed;

left:25px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--accent);

color:#fff;

display:none;

z-index:9999;

font-size:24px;

}

/*=====================================
GALLERY
======================================*/

.gallery-section{

padding:100px 0;

background:#ffffff;

}

.gallery-item{

display:block;

position:relative;

overflow:hidden;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-item img{

width:100%;

height:300px;

object-fit:cover;

transition:.5s;

display:block;

}

.gallery-overlay{

position:absolute;

inset:0;

background:linear-gradient(to top,
rgba(0,0,0,.8),
rgba(0,0,0,.2));

display:flex;

justify-content:flex-end;

align-items:flex-start;

flex-direction:column;

padding:25px;

opacity:0;

transition:.4s;

}

.gallery-overlay h5{

color:#fff;

margin:0;

font-weight:700;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

@media (max-width:767px){
    .section-heading {
        font-size: 32px !important;
    }
    .achievement-box h2 {
        font-size: 36px !important;
    }
}

/*======================================
BRANDS
======================================*/



.brandSlider{

    padding:20px 0;

}

.brandSlider .swiper-slide{

    background:var(--white);

    border-radius:15px;

    padding:25px;

    height:120px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

    /*box-shadow:var(--shadow);*/
    overflow:hidden;

}

.brandSlider .swiper-slide:hover{

    transform:translateY(-6px);

}

.brandSlider img{

    max-width:120px;

   

    width:auto;

    height:auto;

    object-fit:contain;

   

    opacity:.7;

    transition:.4s;

}

.brandSlider .swiper-slide:hover img{

    filter:none;

    opacity:1;

}