

:root{
       --primary:#0056a6;
    --secondary:#08192d;
    --orange:#ff6b00;
}

body{
    font-family: 'Segoe UI', sans-serif;
}

.textbig{

font-size: 18px;
line-height: 30px;
text-align: justify;

}

/* =========================
   TOP BAR
========================= */

.topbar{
    background:#003D7A;
    color:#fff;
    font-size:14px;
    padding:10px 0;
    position:relative;
    z-index:1001;
}

.topbar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:40px;
}

.topbar-left{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.topbar-left span{
    display:flex;
    align-items:center;
}

.topbar i{
    color:#ff6b00;
    margin-right:8px;
}

.topbar-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.topbar-right a{
    color:#fff;
    transition:.3s;
}

.topbar-right a:hover{
    color:#ff6b00;
}



/* =========================
   HEADER
========================= */

.main-header{
    position:absolute;
    top:60px; /* Topbar Height */
    left:0;
    width:100%;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    z-index:999;
    transition:all .4s ease;
}

.main-header .navbar{
    padding:0;
}

.main-header .navbar-brand img{
    height:80px;
    transition:.3s;
}

/* Navigation Hover Underline Effect */

/* All Nav Links */
.navbar-nav .nav-link{
    position: relative;
    color: #222;
    transition: .35s;
}

/* Underline */
.navbar-nav .nav-link::before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 0;
    height: 2px;
    background: #de230e;
    transform: translateX(-50%);
    transition: width .35s ease;
}

/* Hover & Active */
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-item:hover > .nav-link::before,
.navbar-nav .nav-link.active::before{
    width: 70%;
}

/* Text Color */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav .nav-link.active{
    color: #de230e;
}


/* Desktop */
@media (min-width:992px){

.mega-menu{
    width:1000px;
    left:50%;
    transform:translateX(-50%);
    padding:25px;
}

}




/* Mobile */
@media (max-width:991px){

.mega-menu{
    width:100%;
    position:static !important;
    transform:none !important;
    border:none;
    box-shadow:none;
    padding:15px;
}

.mega-menu .row{
    display:block;
}

.mega-menu .col-lg-3{
    width:100%;
    margin-bottom:20px;
}

.mega-banner{
    display:none;
}

/* Underline */
.navbar-nav .nav-link::before{
  display: none;
}


}

.dropdown-toggle::after{
    display:none !important;
}



/* =========================
   STICKY HEADER
========================= */

.main-header.sticky{
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    animation:headerSlide .4s ease;
}

.main-header.sticky .navbar-brand img{
    height:65px;
}

.main-header.sticky .nav-link{
    padding:25px 18px !important;
    color:#08192d !important;
}

@keyframes headerSlide{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .main-header{
        top:0;
        position:relative;
        background:#fff;
    }

    .main-header.sticky{
        position:fixed;
        top:0;
    }

    .navbar-brand img{
        height:60px !important;
    }

    .nav-link{
        padding:12px 0 !important;
    }

    .header-actions{
        margin-top:15px;
    }
}

/* Normal Menu */
.navbar-nav .nav-link{
    color: #000000;
    transition: 0.3s;
}
    
/* Sticky Menu */
.main-header.sticky .nav-link{
    color: #000 !important;
}

/* Active Link */
.main-header.sticky .nav-link.active{
    color: #000 !important;
}

/* Dropdown Icon */
.main-header.sticky .dropdown-toggle::after{
    color: #000;
    
}
/* NAVIGATION */

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #030303;
}

.navbar{
    padding:0;
}

.navbar-brand{
    padding:15px 0;
}

.navbar-brand img{
    height:80px;
}

.nav-link{
    padding:35px 18px !important;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:#000000;
}
/* MEGA MENU */

.mega-menu{
    width:100%;
    left:0;
    right:0;
    padding:30px;
    border:none;
    border-radius:15px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    background:#fff;
    margin-top:15px;
}

/* Lists */

.mega-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mega-menu ul li{
    margin-bottom:10px;
}


.mega-menu .row{
    align-items:flex-start;
}

.mega-menu h5{
    font-size:18px;
    font-weight:700;
    color:#0056a6;
    margin-bottom:20px;
}

.mega-menu ul li{
    margin-bottom:10px;
}

/* Individual Items */

.mega-menu ul li a{
    display:flex;
    align-items:center;
    padding:12px 16px;
    border-radius:10px;
    text-decoration:none;
    color:#444;
    font-size:15px;
    font-weight:500;
    background:#f8f9fa;
    transition:.35s;
    position:relative;
}


.mega-menu ul li a:hover{
    background:linear-gradient(135deg, #cb2110 0%, #de230e 100%);
    color:#fff;
    transform:translateX(6px);
    box-shadow:0 8px 20px rgba(255,107,0,.25);
}



/* Arrow */

.mega-menu ul li a::after{
    content:"➜";
    margin-left:auto;
    opacity:0;
    transform:translateX(-10px);
    transition:.3s;
    color:linear-gradient(135deg, #cb2110 0%, #de230e 100%);
}
@media (min-width:992px){

.mega-menu-item{
    position:static;
}

.mega-menu{
    display:block;
    visibility:hidden;
    opacity:0;
    top:120%;
    transition:.3s;
}

.mega-menu-item:hover .mega-menu{
    visibility:visible;
    opacity:1;
    top:100%;
}

}

@media (max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:10px;
        border-radius:10px;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
    }

}

.navbar-toggler{
    border:none;
    padding:5px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

@media (max-width:991px){

    .mega-menu{
        position:static !important;
        transform:none !important;
        width:100%;
        max-width:100%;
        display:none;
        visibility:visible;
        opacity:1;
        padding:15px;
        box-shadow:none;
        border-top:1px solid #eee;
    }

    .dropdown-menu.show{
        display:block;
    }

}
/*==============================
DROPDOWN ANIMATION
==============================*/

/* Desktop Only */
@media (min-width:992px){

    .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(20px);
        transition:.35s;
    }

    .dropdown-menu.show{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .mega-menu-item:hover>.dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

}


@media (max-width:991px){

    .dropdown-menu{
        display:none;
        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;
        position:static !important;
        box-shadow:none;
        border:none;
    }

    .dropdown-menu.show{
        display:block !important;
    }

}






.mega-menu-item:hover > .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-menu-item:hover > .nav-link{
    color:#cb2110 !important;
}

.mega-menu-item:hover > .nav-link::after{
    width:calc(100% - 36px);
}

.mega-menu ul li a::before{
    content:"";
    width:8px;
    height:8px;
    background:#e63a06;
    border-radius:50%;
    margin-right:12px;
    transition:.3s;
}

.mega-menu ul li a:hover::before{
    background:#fff;
}


/* Mobile Menu Scroll */
@media (max-width:991px){

    .navbar-collapse{
         position: fixed;
        top: 80px;
        left: 0;
        width: 90%;
        height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        background: #e7e5e5;
        padding: 20px;
        margin: 10px;
        z-index: 9999;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-collapse.show{
        display: block;
    }

    /* Mega menu */
    .mega-menu{
        position: static !important;
        max-height: 350px;
        overflow-y: auto;
        padding: 10px 0;
        box-shadow: none;
        border: none;
    }

    .mega-menu ul li a{
        padding: 10px 15px;
        font-size: 14px;
    }

    /* Scrollbar */
    .navbar-collapse::-webkit-scrollbar,
    .mega-menu::-webkit-scrollbar{
        width: 6px;
    }

    .navbar-collapse::-webkit-scrollbar-thumb,
    .mega-menu::-webkit-scrollbar-thumb{
        background: #cb2110;
        border-radius: 10px;
    }
}
/*==============================
PRODUCT IMAGE CARD
==============================*/

.mega-banner{
    background:#f8f9fa;
    padding:20px;
    border-radius:15px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.mega-banner:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.mega-banner img{
    border-radius:12px;
}

.mega-banner h5{
    margin:20px 0 15px;
    font-size:20px;
    font-weight:700;
}

.mega-banner .btn{
    border-radius:30px;
    padding:10px 22px;
    background-color: #002a72;
}



/* ACTIONS */

.header-actions{
    display:flex;
    gap:12px;
}

.btn-outline-custom{
    border:2px solid #0056a6;
    color:#0056a6;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.catalog-btn{
    background:#e3210c;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.catalog-btn:hover{
    background:#08192d;
    color:#fff;
}

/* Slider */

/* #mainSlider{
    margin-top:100px;
}
.carousel-item{
    height:85vh;
    min-height:500px;
    position:relative;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
} */

/* .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,25,60,.70);
} */

/* .slider-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    max-width:900px;
    z-index:2;
}

.slider-content h1{
    font-size:60px;
    font-weight:700;
} */

.btn-custom{
    background:var(--orange);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

/* Section */
.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--primary);
    font-weight:700;
}

/* Product Cards */
/* .product-card{
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
    transition:.4s;
    height:100%;
}

.product-card:hover{
    transform: scale(1.05);
}

.product-card i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;
} */

/* Counter */
.counter-section{
    background:#1a1a2e;
    padding:80px 0;
}

.counter-box{
    color:#fff;
    padding:20px;
}

.counter-box h3{
    font-size:60px;
    font-weight:700;
    color:#FFA500 ;
    margin-bottom:10px;
}

.counter-box p{
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin:0;
}





.vision-section{
    padding:100px 0;
   background:
    linear-gradient(
        rgba(8,25,45,0.85),
        rgba(8,25,45,0.85)
    ),
    url('images/banner.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}   

.vision-title{
    text-align:center;
    font-size:40px;
    font-weight:900;
    color:#ffffff;
    margin-bottom:25px;
}

.vision-header{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.vision-header .line{
    width:180px;
    height:2px;
    background:#ffffff;
}

.vision-header i{
    color:#ffffff;
    font-size:18px;
}

.vision-content{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.shield-icon{
    width:120px;
    height:120px;
    background:#002c75;
    color:#fff;
    margin:auto auto 30px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:55px;
    animation:float 3s ease infinite;
}

.vision-content p{
    font-size:40px;
    line-height:1.4;
    font-weight:700;
    color:#f9f9f9;
}

.vision-content span{
    color:#4ba52d;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:70px;
}

.value-box{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.value-box:hover{
    transform:translateY(-10px);
}

.value-box i{
    font-size:50px;
    color:#002c75;
    margin-bottom:20px;
}

.value-box h4{
    color:#002c75;
    margin-bottom:10px;
}

.product-showcase{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    margin-top:80px;
}

/* .product-card{
    overflow:hidden;
    border-radius:20px;
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
} */

.vision-footer{
    margin-top:70px;
    text-align:center;
}

.vision-footer h3{
    font-size:50px;
    font-weight:900;
    color:#002c75;
}

.vision-footer span{
    color:#4ba52d;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@media(max-width:991px){

.values-grid{
    grid-template-columns:repeat(2,1fr);
}

.product-showcase{
    grid-template-columns:repeat(2,1fr);
}

.vision-title{
    font-size:42px;
}

.vision-content p{
    font-size:24px;
}
}

@media(max-width:576px){

.values-grid,
.product-showcase{
    grid-template-columns:1fr;
}

.vision-title{
    font-size:32px;
}

.vision-content p{
    font-size:20px;
}

.vision-footer h3{
    font-size:28px;
}
}





*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f7fb;
}

.pvc-banner{
    padding:80px 0;
    overflow:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* Heading */

.banner-title{
    text-align:center;
    margin-bottom:50px;
}

.banner-title h1{
    font-size:70px;
    font-weight:800;
    color:#002a72;
    line-height:1.1;
    animation:slideDown 1s ease;
}

.banner-title span{
    color:#0056d6;
}

.banner-sub{
    display:inline-block;
    margin-top:20px;
    background:#0d4ba8;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    font-size:24px;
    font-weight:600;
    animation:zoomIn 1.2s ease;
}

/* Comparison */

.compare-wrapper{
    display:flex;
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.compare-box{
    width:50%;
    position:relative;
    min-height:650px;
    color:#fff;
}

.before{
    background:url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.after{
    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.before::before,
.after::before{
    content:'';
    position:absolute;
    inset:0;
}

.before::before{
    background:rgba(0,0,0,.65);
}

.after::before{
    background:rgba(0,45,120,.35);
}

.content{
    position:relative;
    z-index:2;
    padding:50px;
}

.label{
    display:inline-block;
    padding:12px 30px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    margin-bottom:40px;
}

.before .label{
    background:#111;
}

.after .label{
    background:#0d4ba8;
}

.feature{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
    animation:fadeUp .8s ease forwards;
}

.feature i{
    width:65px;
    height:65px;
    background:#fff;
    color:#0d4ba8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.feature h4{
    font-size:26px;
    line-height:1.3;
}

.vs{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:120px;
    height:120px;
    background:#0d4ba8;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:800;
    z-index:5;
    border:6px solid #fff;
    animation:pulse 2s infinite;
}

/* Bottom Benefits */

.bottom-strip{
    background:#002a72;
    margin-top:30px;
    border-radius:15px;
    padding:30px;
}

.bottom-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.bottom-item{
    color:#fff;
    text-align:center;
}

.bottom-item i{
    font-size:42px;
    margin-bottom:15px;
}

.bottom-item h5{
    font-size:20px;
    line-height:1.5;
}

.cta{
    text-align:center;
    margin-top:40px;
}

.cta a{
    display:inline-block;
    background:#0056d6;
    color:#fff;
    padding:18px 45px;
    text-decoration:none;
    border-radius:50px;
    font-size:20px;
    font-weight:700;
    transition:.4s;
}

.cta a:hover{
    transform:translateY(-5px);
    background:#003b95;
}

/* Animations */

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.5);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

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

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(13,75,168,.6);
    }
    70%{
        box-shadow:0 0 0 30px rgba(13,75,168,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(13,75,168,0);
    }
}

@media(max-width:991px){

.banner-title h1{
    font-size:42px;
}

.compare-wrapper{
    flex-direction:column;
}

.compare-box{
    width:100%;
}

.vs{
    top:50%;
    left:50%;
}

.bottom-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){

.banner-title h1{
    font-size:32px;
}

.banner-sub{
    font-size:16px;
}

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


/* ===========================
   ABOUT SECTION
=========================== */

.about-section{
    background: linear-gradient(180deg,#ffffff 0%,#fff8f3 100%);
    position: relative;
    overflow: hidden;
    padding:80px 0;
}

.about-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,107,0,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,140,0,.05);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

/* Main Heading */

.about-section h2{
    font-size:2.0rem;
    font-weight:700;
    line-height:1.35;
    color:#1b1b1b;
    /* max-width:1100px; */
    /* margin-top:30px; */
}

/* Section Tag */

.section-tag{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:.85rem;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:20px;
}

/* Paragraph */

.textbig{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

/* Images */

.about-images{
    position:relative;
}

.main-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

/* Experience Badge */

.experience-box{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#cb2110;
    color:#fff;
    padding:22px 30px;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(255,107,0,.35);
}

.experience-box h2{
    color:#fff;
    margin:0;
    font-size:40px;
    line-height:1;
}

.experience-box span{
    font-size:15px;
}

/* Feature Cards */

.feature-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#fff;
    border-radius:18px;
    padding:25px;
    border:1px solid #f2f2f2;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.feature-icon{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#ff6b00,#ff9800);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.feature-box h6{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}

.feature-box p{
    color:#666;
    margin:0;
    line-height:1.7;
}

/* Button */

.catalog-btn{
    display:inline-block;
    background:linear-gradient(135deg, #cb2110 0%, #de230e 100%);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(255,107,0,.30);
}

.catalog-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(255,107,0,.40);
}

/* Mobile */

@media(max-width:768px){

.about-section h2{
    font-size:1.8rem;
}

.textbig{
    font-size:16px;
}

.experience-box{
    right:10px;
    bottom:10px;
    padding:15px 20px;
}

.experience-box h2{
    font-size:30px;
}

}
/* Decorative Shapes */
.shape{
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape1{
    width: 120px;
    height: 120px;
    background: rgba(0,86,166,.1);
    top: -20px;
    right: 40px;
    animation: rotateShape 15s linear infinite;
}

.shape2{
    width: 70px;
    height: 70px;
    background: rgba(255,107,0,.15);
    bottom: 0;
    right: 30%;
    animation: floatY 6s ease-in-out infinite;
}

/* Tag */
.section-tag{
    display: inline-block;
    background: #003D7A;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Animations */
@keyframes floatY{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-15px);
    }
}

@keyframes rotateShape{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* Mobile */
@media(max-width:991px){

    .about-images{
        min-height: 450px;
    }

    .main-img{
        width: 100%;
    }

    .main-img img{
        height: 400px;
    }

    .floating-img{
        width: 50%;
    }

    .floating-img img{
        height: 150px;
    }

    .experience-box{
        left: 10px;
        /* bottom: 10px; */
        padding: 15px 20px;
    }

    .experience-box h2{
        font-size: 30px;
    }

.center-image {
    width: 320px !important;
    height: 320px !important;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 0 0 12px rgba(0, 86, 166, .08), 0 20px 60px rgba(0, 0, 0, .18);
}





    
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:20px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,86,166,.12);
}

.feature-icon{
    min-width:55px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #0056a6, #282869);
    color:#fff;
    border-radius:14px;
    font-size:22px;
}

.feature-box h6{
    margin-bottom:5px;
    font-weight:700;
    color:#08192d;
}

.feature-box p{
    margin:0;
    font-size:14px;
    color:#6c757d;
    line-height:1.6;
}

.hero-section{
    padding:180px 0 100px;
    background:
    linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef5ff 100%);
}

.hero-section h1{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    color:#08192d;
}

.hero-tag{
    display:inline-block;
    padding:8px 20px;
    background:#0056a6;
    color:#fff;
    border-radius:30px;
    margin-bottom:20px;
}

.products-section{
    background:#f8fafc;
}

.productSwiper{
    padding:20px 10px 60px;
}

.product-box{
    background:#2a2a6b;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
    height:100%;
}

.product-box:hover{
    transform:translateY(-8px);
}

.product-box img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.product-box h5{
    padding:20px;
    margin:0;
    font-weight:600;
    color:#ffffff;
    font-size: 16px;
}

.swiper-button-next,
.swiper-button-prev{
    width:50px;
    height:50px;
    background:#0056a6;
    border-radius:50%;
    color:#fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:18px;
    font-weight:bold;
}

.swiper-pagination-bullet-active{
    background:#0056a6;
}



.why-choose-section{
    background:#fff;
    position:relative;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#08192d;
    line-height:1.3;
}

.experience-highlight{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px 30px;
    background:linear-gradient(135deg,#0056a6,#08192d);
    border-radius:15px;
    color:#fff;
    max-width:400px;
}

.experience-highlight h3{
    font-size:60px;
    font-weight:700;
    margin:0;
}

.experience-highlight span{
    font-size:18px;
    line-height:1.5;
}

.choose-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    height:100%;
    border:1px solid #e9ecef;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.choose-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:var(--orange);
}

.choose-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.icon-box{
    width:70px;
    height:70px;
    background:#f8f9fa;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-box i{
    font-size:28px;
    color:var(--orange);
}

.choose-card h5{
    font-weight:700;
    margin-bottom:15px;
    color:#08192d;
}

.choose-card p{
    color:#6c757d;
    line-height:1.8;
    margin:0;
}




.protection-section{
    background:#f8f9fa;
    padding:100px 0;
}

.section-heading{
    /* max-width:800px; */
    margin:auto;
    margin-bottom:70px;
}

.section-heading span{
    /* color:#ff6b00; */
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#08192d;
    margin:15px 0;
}

.compare-side{
    position:relative;
    height:600px;
    overflow:hidden;
}

.compare-side img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.compare-side:hover img{
    transform:scale(1.08);
}

.compare-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
                rgba(0,0,0,.85),
                rgba(0,0,0,.15));
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
}

.compare-overlay h3{
    font-size:32px;
    margin-bottom:20px;
}

.compare-overlay ul{
    list-style:none;
    padding:0;
}

.compare-overlay li{
    margin-bottom:12px;
}

.center-benefits{
    background:#08192d;
    color:#fff;
    height:600px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:30px;
    text-align:center;
}

.benefit-icon{
    width:90px;
    height:90px;
    background:#ff6b00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.benefit-icon i{
    font-size:40px;
}

.center-benefits h4{
    margin-bottom:30px;
    font-size:28px;
}

.benefit-item{
    margin:12px 0;
    font-size:18px;
}

.benefit-item i{
    color:#ff6b00;
    margin-right:10px;
}



.protection-section{
    background:#f8fafc;
}

#imgcontainer{
    position:relative;
    width:100%;
    max-width:900px;
    height:500px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    margin:auto;
}

.img-wrapper{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.img-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* After Image */
.img-wrapper:nth-child(2){
    clip-path: inset(0 50% 0 0);
}

/* Divider Line */
#line{
    position:absolute;
    top:0;
    left:50%;
    width:4px;
    height:100%;
    background:#fff;
    transform:translateX(-50%);
    z-index:10;
    box-shadow:0 0 15px rgba(0,0,0,0.3);
}

/* Circle Handle */
#line::before{
    content:'⇆';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0056a6;
    color:#fff;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    border:4px solid #fff;
}

/* Range Slider */
#slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:ew-resize;
    z-index:20;
}

/* Labels */
.before-label,
.after-label{
    position:absolute;
    top:20px;
    padding:8px 18px;
    background:rgba(0,0,0,.7);
    color:#fff;
    font-weight:600;
    border-radius:30px;
    z-index:5;
}

.before-label{
    left:20px;
}

.after-label{
    right:20px;
}

@media(max-width:768px){
    #imgcontainer{
        height:350px;
    }

    #line::before{
        width:50px;
        height:50px;
        font-size:18px;
    }
.why-us-section h2 {
    font-size: 35px !important;
    font-weight: 700;
    color: #08192d;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 35px !important;
    font-weight: 700;
    color: #08192d;
    margin: 15px 0;
}
.before-label, .after-label {
    position: absolute;
    top: 20px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    z-index: 5;
    font-size: 10px !important;
}

.nav-link {
    padding: 15px 18px !important;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #000000;
}

.main-header.sticky .nav-link {
    padding: 15px 18px !important;
    color: #08192d !important;
}
#mainSlider {
    margin-top: 0px !important;
}

.carousel-item{
    height:200px;
    min-height:200px;
    position:relative;
}

}


.footer-wrapper{
    background:#08192d;
    margin-top:120px;
}

/* CTA */



.cta-box{
    background: linear-gradient(135deg, #cb2110 0%, #de230e 100%);
    border-radius:25px;
    padding:45px;
    transform:translateY(-80px);
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.cta-tag{
    color:#fff;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.cta-box h2{
    color:#fff;
    font-size:2rem;
    font-weight:700;
    margin:15px 0;
}

.cta-box p{
    color:rgba(255,255,255,.9);
}

.cta-btn{
    background:#fff;
    color:#08192d;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
    transition:.4s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    color:#ff6b00;
}
.footer-cta{
    background:#1a1a2e;
    position:relative;
    margin-top:120px;
}
/* Footer */

.colrred{

  color: red !important;  
}

.footer-area{
    padding:20px 0 0;
    color:#fff;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-area h5{
    margin-bottom:25px;
    color:#fff;
    font-weight: 600;
}

.footer-area ul{
    list-style:none;
    padding:0;
}

.footer-area ul li{
    margin-bottom:12px;
}

.footer-area ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
}

.footer-area ul li a:hover{
    color:red;
}

.footer-map{
    border-radius:15px;
    overflow:hidden;
    border:2px solid rgba(255,255,255,.1);
}

.footer-contact{
    margin-top:50px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-contact .col-md-4{
    text-align:center;
    color:rgba(255,255,255,.8);
}

.footer-contact i{
    color:#ff6b00;
    margin-right:10px;
}

.copyright{
    padding:25px 0;
    color:rgba(255,255,255,.6);
}

/* Mobile */

@media(max-width:991px){

    .cta-box{
        padding:40px 25px;
        text-align:center;
    }

    .cta-box h2{
        font-size:30px;
    }

    .cta-btn{
        margin-top:20px;
    }

    .footer-contact .col-md-4{
        margin-bottom:15px;
    }
}


.why-us-section{
    background:#f8f9fb;
    overflow:hidden;
}

/* .section-tag{
    color:#ff6b00;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
} */

.why-us-section h2{
    font-size:42px;
    font-weight:700;
    color:#08192d;
    margin-bottom:15px;
}

.why-us-section p{
    color:#666;
}

.feature-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:20px;
    margin-bottom:5px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box .icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#0056a6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-box .icon i{
    color:#fff;
    font-size:28px;
}

.feature-box h5{
    font-size:20px;
    font-weight:700;
    color:#08192d;
}

.center-image{
    width:420px;
    height:420px;
    border-radius:50%;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:
        0 0 0 12px rgba(0,86,166,.08),
        0 20px 60px rgba(0,0,0,.18);
}

.center-image::before{
    content:'';
    position:absolute;
    inset:-15px;
    border:3px dashed #0056a6;
    border-radius:50%;
    animation:rotate 20s linear infinite;
}

.center-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    display:block;
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}


.hero-slider{
    position:relative;
    overflow:hidden;
}

.hero-slider .swiper-slide{
    min-height:760px;
    display:flex;
    align-items:center;
    position:relative;
    background-size:cover;
    background-position:center;
}

.slide1{
    background-image:url("images/pvc-products.jpg");
}

.slide2{
    background-image:url("images/background2.jpg");
}

.slide3{
    background-image:url("images/background3.jpg");
}

    /* .overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(
        90deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45),
        rgba(0,0,0,.15));
    } */

.container{
    position:relative;
    z-index:5;
}

.hero-tag{
    display:inline-block;
    background:#cb2110;
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    margin-bottom:25px;
    font-weight:600;
    letter-spacing:1px;
}

.hero-slider h1{
    font-size:58px;
    color:#fff;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-slider p{
    color:#eee;
    font-size:18px;
    line-height:32px;
    margin-bottom:35px;
    max-width:560px;
}

.hero-btns{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#cb2110;
    border:none;
    padding:14px 36px;
}

.btn-primary:hover{
    background:#e45c00;
}

.btn-outline-light{
    padding:14px 36px;
}

.product-image{
    max-width:700px;
    /* animation:float 4s ease-in-out infinite; */
    /* margin-top: 80px; */
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
    width:55px;
    height:55px;
}

.swiper-pagination-bullet{
    width:14px;
    height:14px;
    background:#c8c8c8;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    opacity:1;
    background:#ff6b00;
}

@media(max-width:991px){

.hero-slider .swiper-slide{
    min-height:auto;
    padding:100px 0;
}

.hero-slider h1{
    font-size:38px;
}

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

.product-image{
    margin-top:40px;
    max-width:320px;
}

.hero-btns{
    flex-wrap:wrap;
}

}


#backToTop{
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background:  #222;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 9999;
}

#backToTop:hover{
    background:#ff4000;
    color: #fff;
    transform: translateY(-4px);
}

#backToTop.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/*=====================================
    Page Banner
======================================*/

.page-banner{
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:130px 0 100px;
    overflow:hidden;
}

.page-banner .banner-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner .content-box{
    text-align:center;
}

.page-banner h1{
    color:#ffffff;
    font-size:52px;
    font-weight:700;
    margin-bottom:18px;
    /* text-transform:uppercase; */
    letter-spacing:1px;
}

.page-banner .breadcrumb{
    margin:0;
    padding:0;
    background:transparent;
}

.page-banner .breadcrumb-item{
    color:#ffffff;
    font-size:16px;
    font-weight:500;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before{
    color:#ffffff;
}

.page-banner .breadcrumb-item a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.page-banner .breadcrumb-item a:hover{
    color:#04ad98;
}

.page-banner .breadcrumb-item.active{
    color:#04ad98;
}

.page-banner .breadcrumb i{
    margin-right:6px;
}

/* Responsive */

@media (max-width:991px){

    .page-banner{
        padding:100px 0 80px;
    }

    .page-banner h1{
        font-size:40px;
    }

}

@media (max-width:767px){

    .page-banner{
        padding:80px 0 60px;
    }

    .page-banner h1{
        font-size:30px;
    }

    .page-banner .breadcrumb-item{
        font-size:14px;
    }

}


/*==============================
Section
==============================*/

.section-subtitle{
color:#0d6efd;
font-weight:600;
letter-spacing:2px;
}

.section-title{
font-size:42px;
font-weight:700;
margin:15px 0;
}

.section-desc{
font-size:17px;
color:#666;
line-height:1.9;
}



/*==============================
Product Card
==============================*/

/* .product-card{
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    will-change: transform;
}

.product-card:hover{
    transform: translate3d(0,-8px,0);
} */


.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    /* height:250px; */
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

/* .product-card:hover .product-image img{
    transform:scale(1.08);
} */


.product-content{
padding:30px;
}

.product-content h4{
font-size:24px;
font-weight:600;
margin-bottom:15px;
}

.product-content p{
color:#666;
line-height:1.8;
min-height:85px;
}

.btn-product{
display:inline-flex;
align-items:center;
text-decoration:none;
font-weight:600;
color:#0d6efd;
transition:.3s;
}

.btn-product:hover{
color:#ff6600;
}




.product-gallery .main-image{
    overflow:hidden;
    border:1px solid #eee;
    border-radius:15px;
}

.product-gallery .main-image img{
    width:100%;
    transition:.4s;
    cursor:zoom-in;
}

.product-gallery .main-image:hover img{
    transform:scale(1.4);
}

.thumbs{
    display:flex;
    gap:15px;
}

.thumbs img{
    width:90px;
    height:90px;
    object-fit:cover;
    cursor:pointer;
    border-radius:8px;
    border:2px solid transparent;
}

.thumbs img.active{
    border-color:#cb2110;
}

.product-title{
    font-size:42px;
    font-weight:700;
}

.product-brand{
    color:#cb2110;
    font-weight:600;
    letter-spacing:1px;
}

.product-features{
    list-style:none;
    padding:0;
}

.product-features li{
    margin-bottom:12px;
}

/*==============================
Product Details
==============================*/

.product-details{
    background:#f8fafc;
}

.product-gallery{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.main-image{
    border:1px solid #eee;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    text-align:center;
    padding:30px;
}

.main-image img{
    width:100%;
    transition:.4s;
}

.main-image:hover img{
    transform:scale(1.05);
}

.thumbs{
    display:flex;
    gap:12px;
}

.thumbs img{
    width:90px;
    height:90px;
    border:2px solid #ddd;
    border-radius:10px;
    cursor:pointer;
    padding:8px;
    transition:.3s;
    object-fit:contain;
    background:#fff;
}

.thumbs img:hover,
.thumbs img.active{
    border-color:#d40000;
}

.product-brand{
    display:inline-block;
    background:#d40000;
    color:#fff;
    padding:6px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.product-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
    color:#0b1f3a;
}

.product-short{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.product-features{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.product-features li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#444;
}

.product-features li i{
    color:#d40000;
    margin-right:10px;
}

.product-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.product-btns .btn{
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
}

.specification-box{
    margin-top:70px;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.specification-box h2{
    font-size:30px;
    margin-bottom:25px;
    color:#0b1f3a;
}

.table-specs td{
    padding:15px;
}

.table-specs tr:nth-child(even){
    background:#f7f7f7;
}

.product-description{
    margin-top:60px;
}

.product-description h2{
    margin-bottom:20px;
    color:#0b1f3a;
}

.product-description p{
    line-height:32px;
    color:#666;
}

.faq-section{
    margin-top:70px;
}

.related-products{
    margin-top:70px;
}

.contact-section{
    background:#f8fafc;
}

.contact-info,
.contact-form{
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
}

.section-title{
    font-weight:700;
    color:#0A4D8C;
}

.info-box{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.info-box .icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0A4D8C;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.info-box h5{
    font-weight:600;
    margin-bottom:6px;
}

.info-box p{
    margin:0;
    color:#666;
    line-height:1.7;
}




.map-section iframe{
    display:block;
}

/* Link style */
.product-box .product-link {
    color: #0A4D8C;   /* Change to your required colour */
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-box .product-link:hover {
    color: #FF7A00 !important;   /* Hover colour */
}

