
/* ==========================
   RESET
========================== */

:root {
    --primary: #0c3b91;
    --green: #73b53b;
    --white: #ffffff;
    --text: #0a1e4f;
    --border: #e5e7eb;
    --heading-font: 'Poppins', sans-serif;
    --script-font: 'Brush Script MT', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}














/* ==========================
   HEADER
========================== */

.header {
    width: 100%;
    background: #fff;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

/* Logo */

.logo img {
    max-width: 140px;
}

/* Navbar */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #0a2f6b;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.nav-links li a:hover {
    color: #6db33f;
}

/* Dropdown */

/*=====================================
MEGA DROPDOWN
=====================================*/

.dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;
    top:120%;
    left:50%;
    transform:translateX(-50%) translateY(15px);

    width:900px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    padding:18px;

    background:#fff;

    border-radius:12px;

    box-shadow:
    0 15px 45px rgba(0,0,0,.12),
    0 5px 12px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;

    transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s;

    z-index:9999;

    will-change:transform,opacity;
}

/* OPEN */

.dropdown:hover .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);

}

/*=====================================
ITEM
=====================================*/

.dropdown-menu li{

    list-style:none;

    /*border-radius:8px;*/
    margin-bottom:3px;

    overflow:hidden;

}

.dropdown-menu li a{

    position:relative;

    display:flex;
    align-items:center;

    padding:10px 13px;

    color:#133a7a;

    font-size:14px;

    font-weight:600;

    transition:.35s;

}

/* LEFT BAR */

.dropdown-menu li a::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:var(--green);

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;

}

/* HOVER */

.dropdown-menu li:hover a{

    background:#f7faff;

    color:var(--green);

    padding-left:24px;

}

.dropdown-menu li:hover a::before{

    transform:scaleY(1);

}

/* COLUMN GAP */

.dropdown-menu{

    column-gap:10px;
    row-gap:6px;
}
/* Contact Info */

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 45px;
    height: 45px;
    background: #0a2f6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    color: #0a2f6b;
    font-size: 15px;
}

.contact-text span {
    font-size: 13px;
    color: #666;
}

/* Mobile Toggle */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0a2f6b;
}

/*=========================================
TABLET & MOBILE NAVBAR
=========================================*/

@media (max-width:991px){

    .header{
        padding:12px 20px;
        position:sticky;
    }

    .logo img{
        max-width:110px;
    }

    .contact-info{
        display:none;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        font-size:24px;
        cursor:pointer;
        color:#0a2f6b;
        z-index:1001;
    }

    /* Navbar */

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 15px 35px rgba(0,0,0,.12);

        max-height:0;
        overflow:hidden;

        transition:max-height .45s ease;
        z-index:999;
    }

    .navbar.active{
        max-height:90vh;
        overflow-y:auto;
    }

    .nav-links{
        display:flex;
        flex-direction:column;
        gap:0;
        padding:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a{
        display:block;
        padding:16px 22px;
        border-bottom:1px solid #ececec;
        font-size:15px;
    }

    /*==================================
    Mobile Dropdown
    ==================================*/

    .mobile-dropdown-toggle{

        display:flex;
        justify-content:space-between;
        align-items:center;

        

        cursor:pointer;

        border-bottom:1px solid #ececec;

    }

    .mobile-dropdown-toggle a{

        padding:0;

        border:none;

        color:#0a2f6b;

        font-size:15px;

        font-weight:600;

    }

    .mobile-dropdown-toggle i{

        transition:.35s;

    }
.dropdown-menu{

    position:static !important;

    left:auto !important;
    top:auto !important;

    transform:none !important;

    width:100% !important;

    display:block !important;

    opacity:1 !important;
    visibility:visible !important;

    padding:0 !important;

    border-radius:0;

    box-shadow:none;

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

    .dropdown.active .dropdown-menu{

        max-height:1200px;

    }

    .dropdown.active .mobile-dropdown-toggle i{

        transform:rotate(180deg);

    }

    .dropdown-menu li{

        border:none;

        border-bottom:1px solid #f2f2f2;

    }

    .dropdown-menu li a{

        padding:14px 40px;

        background:#fafafa;

        font-size:14px;

        color:#555;

    }

    .dropdown-menu li:hover a{

        padding-left:50px;

    }

}


/*=========================================
MOBILE
=========================================*/

@media (max-width:576px){

    .header{

        padding:10px 15px;

    }

    .logo img{

        max-width:95px;

    }

    .menu-toggle{

        width:38px;
        height:38px;
        font-size:22px;

    }

    .nav-links li a{

        font-size:14px;

        padding:15px 18px;

    }

   
    .dropdown-menu li a{

        padding:13px 30px;

        font-size:13px;

    }

}

.mobile-dropdown-toggle{
    display:flex;
    align-items:center;
    gap:8px;
}

.mobile-dropdown-toggle a{
    color:#0a2f6b;
    font-size:15px;
    font-weight:600;
}

@media (min-width:992px){
    .mobile-dropdown-toggle{
        cursor:pointer;
    }
}


/* ==========================
   FOOTER
========================== */

.footer {
    background: #081f4d;
    color: #fff;
    padding: 70px 5% 20px;
}

.footer-container {
    display: grid;
   grid-template-columns: 2fr  1fr 1.5fr; /*  remove one 1fr */
    gap: 100px;
}
.footer-col{
    width: 80%;
}
.footer-logo {
    width: 140px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.company-info p {
    line-height: 1.8;
    color: #d5d5d5;
    margin-bottom: 20px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d5d5d5;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #6db33f;
    padding-left: 5px;
}

/* Social */

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #081f4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.social-icons a:hover {
    background: #6db33f;
    color: #fff;
}

/* Contact */

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-item i {
    color: #6db33f;
    margin-top: 4px;
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #d5d5d5;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px) {

  

    .contact-info {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

  

    .logo img {
        max-width: 140px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px) {

  

    .logo img {
        max-width: 120px;
    }

    .footer {
        padding: 50px 20px 20px;
    }

    .footer-col h3 {
        font-size: 20px;
    }

}

.hero-slider {

    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;

    background: url('/public/frontend/assets/bg-img/home-bg-new-img-1.png');
    background-size: cover;
    background-position: center;

}
.np-contact-card a{
color: #475569;
}

.slide {

    position: absolute;
    inset: 0;

    display: flex;
    align-items: start;
    justify-content: space-between;

    padding: 100px 6%;

    opacity: 0;
    visibility: hidden;

    transition: .8s;

}

.slide.active {

    opacity: 1;
    visibility: visible;

}

.hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to right,
            rgba(255, 255, 255, .95),
            rgba(255, 255, 255, .80));

}

.hero-content {

    width: 45%;
    position: relative;
    z-index: 5;

}

.hero-content h1 {

    font-size: 50px;
    line-height: 1;
    /* font-weight:800; */
    font-family: sans-serif;
    color: var(--primary);

}

.hero-content h2 {

    color: var(--green);
    font-size: 40px;
    font-weight: 400;
    margin: 20px 0;
    font-family: var(--script-font);

}

.hero-content p {

    font-size: 20px;
    line-height: 1.6;
    color: #333;

}

.hero-btns {

    margin-top: 35px;
    display: flex;
    gap: 20px;

}

.btn {

    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;

}

.btn-primary {

    background: var(--primary);
    color: #fff;

}

.btn-outline {

    border: 2px solid var(--primary);
    color: var(--primary);

}

.hero-image {

    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.blue-circle {

    position: absolute;

    width: 900px;
    height: 900px;

    background: #003b98;
    border-radius: 50%;

    right: -250px;
    top: -100px;

}

.hero-image img {

    width: 80%;
    position: relative;
    z-index: 5;

}

.badge {

    position: absolute;
    top: 60px;
    right: 40px;

    z-index: 10;

    color: #fff;
    text-align: center;

}

.badge h3 {

    font-size: 55px;

}

.badge span {

    display: block;
    font-size: 18px;

}

.badge small {

    font-size: 14px;

}

.slider-dots {

    position: absolute;
    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

}

.dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ccc;
    cursor: pointer;

}

.dot.active {

    background: var(--primary);

}

@media(max-width:991px) {

    .hero-slider {

        height: auto;
        min-height: 100vh;

    }

    .slide {

        flex-direction: column;
        padding: 80px 30px;
        text-align: center;

    }

    .hero-content {

        width: 100%;

    }

    .hero-content h1 {

        font-size: 55px;

    }

    .hero-content h2 {

        font-size: 48px;

    }

    .hero-content p {

        font-size: 20px;

    }

    .hero-btns {

        justify-content: center;

    }

    .hero-image {

        width: 100%;
        margin-top: 40px;

    }

    .blue-circle {

        width: 500px;
        height: 500px;
        right: auto;
        top: auto;

    }

}

@media(max-width:576px) {

    .hero-content h1 {

        font-size: 38px;

    }

    .hero-content h2 {

        font-size: 34px;

    }

    .hero-content p {

        font-size: 16px;

    }

    .hero-btns {

        flex-direction: column;

    }

    .btn {

        width: 100%;

    }

    .hero-image img {

        width: 100%;

    }

}

:root {
    --primary: #0c3b91;
    --green: #73b53b;
    --white: #ffffff;
    --text: #0a1e4f;
    --border: #e5e7eb;
}

.achievement-section {
    padding: 40px 20px;
    background: #f5f7fb;
}

.achievement-wrapper {

    max-width: 1340px;
    margin: auto;

    background: #fff;

    border-radius: 30px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .08);

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    overflow: hidden;
}

.achievement-item {

    text-align: center;
    padding: 28px 20px;

    border-right: 1px solid var(--border);

    transition: .3s;
}

.achievement-item:last-child {
    border-right: none;
}

.achievement-item:hover {
    background: #fafafa;
}

.icon {

    width: 70px;
    height: 70px;

    margin: auto auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {

    width: 55px;
    height: 55px;

    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.green svg {
    stroke: var(--green);
}

.blue svg {
    stroke: var(--primary);
}

.achievement-item h3 {

    font-size: 20px;
    font-weight: 700;
    color: var(--text);

    margin-bottom: 8px;
}

.achievement-item p {

    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

@media(max-width:991px) {

    .achievement-wrapper {

        grid-template-columns: repeat(3, 1fr);
    }

    .achievement-item:nth-child(3) {
        border-right: none;
    }

}

@media(max-width:576px) {

    .achievement-wrapper {

        grid-template-columns: 1fr;
    }

    .achievement-item {

        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .achievement-item:last-child {
        border-bottom: none;
    }

    .achievement-item h3 {
        font-size: 26px;
    }

    .icon {
        width: 60px;
        height: 60px;
    }

    .icon svg {
        width: 48px;
        height: 48px;
    }

}


/* product swiper home page  */
:root {
    --primary: #0c3b91;
    --green: #73b53b;
    --white: #ffffff;
    --text: #0a1e4f;
    --border: #e5e7eb;
}

.products-section {
    padding: 80px 0;
    background: #eef2f7;
    overflow: hidden;
}

.products-header {
    max-width: 1340px;
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.sub-title {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.heading-area h2 {
    font-size: 30px;
    line-height: 1;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 50px;
    margin-top: 18px;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.view-btn span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-slider {
    overflow: hidden;
    width: 95%;
    max-width: 1340px;
    margin: auto;
}

.products-track {
    display: flex;
    gap: 22px;
}

.product-card {
    flex: 0 0 calc((100% - 80px)/4);
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}



.product-card h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    /* margin-bottom: 30px; */
    height: 70px;
    font-family: Arial, Helvetica, sans-serif;
}

.product-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    height: 70px;
    width: 80%;
    margin: auto;

}

.product-card a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;

}

@media(max-width:991px) {

    .product-card {
        flex: 0 0 calc((100% - 40px)/2);
    }

    .heading-area h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .products-header {
        flex-direction: column;
        gap: 20px;
    }

    .product-card {
        flex: 0 0 calc((100% - 10px)/1);
    }

    .heading-area h2 {
        font-size: 30px;
    }

}

/* =========================
   SOLUTION BANNER
========================= */

.solution-banner {
    max-width: 1340px;
    margin: 30px auto;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;



    /* Gradient overlay */
    background: linear-gradient(90deg,
            #00296d 0%,
            #003f99 40%,
            #dfeaf7 100%),
        url('/public/frontend/assets/image/home-product-img/home-industry-img-11.png');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    position: relative;
}

.solution-banner::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -120px;
    width: 450px;
    height: 250px;
    background: #003f99;
    border-radius: 50%;
}

/* Left */

.solution-content {
    width: 35%;
    color: #fff;
    z-index: 2;
}

.sub-heading {
    display: block;
    color: #93c83d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-content h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-content p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #8dc63f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.solution-btn span {
    font-size: 20px;
}

/* Right */

.solution-image {
    width: 65%;
    position: relative;
    z-index: 2;

}

.solution-image img {
    width: 100%;
    display: block;
}

/* Process */

.process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #dfe7d3;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #7fb541;

    margin: auto auto 10px;
}

.step span {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.arrow {
    color: #b4d438;
    font-size: 26px;
    /*margin-top: 20px;*/
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .solution-banner {
        flex-direction: column;
        text-align: center;
    }

    .solution-content,
    .solution-image {
        width: 100%;
    }

    .solution-content h2 {
        font-size: 34px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .solution-banner {
        padding: 25px;
        border-radius: 20px;
    }

    .solution-content h2 {
        font-size: 28px;
    }

    .solution-content p {
        font-size: 15px;
    }

    .process-flow {
        gap: 15px;
    }

    .arrow {
        display: none;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .step span {
        font-size: 12px;
    }
}

.stats-section {
    max-width: 1330px;
    margin: 60px auto;
    padding: 35px 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: #fff;
    border-radius: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 10px 25px;

    border-right: 1px solid #e5e7eb;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 52px;
    color: #66a93f;
}

.stat-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b2f7a;
    line-height: 1;
}

.stat-content h2::after {
    content: "+";
}

.stat-content span {
    display: block;
    margin-top: 8px;
    color: #23355e;
    font-size: 15px;
    font-weight: 500;
}

@media(max-width:992px) {

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media(max-width:576px) {

    .stats-section {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-content h2 {
        font-size: 42px;
    }

    .stat-icon {
        font-size: 42px;
    }
}

/* ==========================
   BRANDS SECTION
========================== */

.brands-section {
    max-width: 1340px;
    margin: 60px auto;
    padding: 10px 25px 20px;

    background: #fff;

    border: 1px solid #dbe4ef;
    border-radius: 25px;

    overflow: hidden;
}

.brands-header {
    text-align: center;

    font-size: 30px;
    font-weight: 700;

    color: #143a8c;

    margin-bottom: 15px;

    /* text-transform:uppercase; */
}

.brandsSwiper {
    width: 100%;
}

.brandsSwiper .swiper-slide {

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #e5e7eb;
}

.brandsSwiper .swiper-slide img {

    max-width: 150px;
    width: 100%;
    height: 70px;

    object-fit: contain;

    /* filter:grayscale(100%); */
    transition: .3s;
}

.brandsSwiper .swiper-slide img:hover {


    transform: scale(1.05);
}

/* Tablet */

@media(max-width:768px) {

    .brands-header {
        font-size: 18px;
    }

    .brandsSwiper .swiper-slide img {
        max-width: 110px;
        height: 50px;
    }
}

/* Mobile */

@media(max-width:480px) {

    .brands-section {
        padding: 15px;
        border-radius: 15px;
    }

    .brandsHeader {
        font-size: 16px;
    }
}


.ampl-cta-section {
    position: relative;
    overflow: hidden;
    /* border-radius:10px; */
    /* margin:30px auto; */
    /* max-width:1340px; */

    background: #00296d;

    min-height: 220px;
}

.ampl-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg, var(--header-bg), var(--header-bg-soft));
}

.ampl-cta-container {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;


    min-height: 220px;
    max-width: 1340px;
    margin: auto;
}

.ampl-cta-content {
    max-width: 650px;
}

.ampl-cta-content h2 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    /* text-transform:uppercase; */
}

.ampl-cta-content p {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.ampl-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 320px;
}

.ampl-quote-btn,
.ampl-call-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    text-decoration: none;

    height: 68px;
    padding: 0 25px;

    font-size: 20px;
    font-weight: 700;

    border-radius: 4px;

    transition: .35s;
}

.ampl-quote-btn {
    background: white;
    color: black;
}


.ampl-call-btn {
    background: transparent;
    color: #fff;
    border: 1px solid white;
}

.ampl-call-btn:hover {
    border-color: var(--gold);
}

.ampl-quote-btn span,
.ampl-call-btn span {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-left: 1px solid rgba(255, 255, 255, .20);

    font-size: 24px;
}

/* Tablet */

@media(max-width:991px) {

    .ampl-cta-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .ampl-cta-buttons {
        width: 100%;
        max-width: 500px;
        align-items: center;
    }

    .ampl-cta-content h2 {
        font-size: 38px;
    }

}

@media(max-width:767px) {

    .ampl-cta-section {
        margin: 40px 15px;
    }

    .ampl-cta-container {
        padding: 30px 20px;
    }

    .ampl-cta-content h2 {
        font-size: 30px;
    }

    .ampl-cta-content p {
        font-size: 16px;
    }

    .ampl-quote-btn,
    .ampl-call-btn {
        height: 60px;
        font-size: 18px;
        width: 80%;
    }

}

/* section ten  */

.contact-strip-unique {
    width: 100%;
    padding: 26px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.contact-strip-container-unique {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    border: 1px solid #021526;
}

.contact-item-unique {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 30px;
    border-right: 1px solid #021526;
}

.contact-item-unique:last-child {
    border-right: none;
}

.contact-icon-unique {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #021526;
    color: #021526;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-unique svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.contact-text-unique {
    text-align: left;
}

.contact-text-unique h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-text-unique a {
    color: #222222;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.contact-text-unique a:hover {
    color: #021526;
}

@media (max-width: 1100px) {
    .contact-strip-container-unique {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-item-unique:nth-child(2) {
        border-right: none;
    }

    .contact-item-unique:nth-child(1),
    .contact-item-unique:nth-child(2) {
        border-bottom: 1px solid rgba(248, 0, 0, 0.18);
    }
}

@media (max-width: 600px) {
    .contact-strip-unique {
        padding: 22px 14px;
    }

    .contact-strip-container-unique {
        grid-template-columns: 1fr;
    }

    .contact-item-unique {
        padding: 22px 18px;
        border-right: none;
        border-bottom: 1px solid rgba(248, 0, 0, 0.18);
    }

    .contact-item-unique:last-child {
        border-bottom: none;
    }

    .contact-icon-unique {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .contact-icon-unique svg {
        width: 27px;
        height: 27px;
    }

    .contact-text-unique h3 {
        font-size: 16px;
    }

    .contact-text-unique a {
        font-size: 15px;
    }
}

/* about page */
/* about section one  */
.about-banner {
    /* max-width:1340px; */
    min-height: 500px;
    width: 100%;
    /* margin:80px auto; */
    padding: 60px;
    /* border-radius:30px; */
    overflow: hidden;
    position: relative;
    padding-left: 100px;

    background:
        linear-gradient(90deg,
            rgba(2, 21, 38, .95) 0%,
            rgba(2, 21, 38, .75) 40%,
            rgba(2, 21, 38, .25) 100%),
        url('/public/frontend/assets/bg-img/index-img-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
}

.about-content {
    max-width: 520px;
}

.about-content h2 {
    color: var(--white);
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.about-content h3 {
    color: var(--green);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;
    font-family: var(--script-font);
}

.about-line {
    width: 70px;
    height: 4px;
    background: var(--green);
    border-radius: 50px;
    margin: 20px 0;
}

.about-content p {
    color: #fff;
    font-size: 20px;
    line-height: 1.9;
    max-width: 500px;
}

/* Features */

.about-features {
    position: absolute;
    inset: 0;
}

.feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust {
    top: 100px;
    left: 58%;
}

.quality {
    top: 320px;
    left: 50%;
}

.innovation {
    top: 140px;
    right: 60px;
}

.customer {
    top: 400px;
    right: 60px;
}

.icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(8px);
}

.icon svg {
    width: 40px;
    height: 40px;
}

.blue-1 {
    background: rgba(12, 59, 145, .85);
    border: 2px solid rgba(255, 255, 255, .15);
}

.green-1 {
    background: rgba(115, 181, 59, .85);
    border: 2px solid rgba(255, 255, 255, .15);
}

.feature-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-content span {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

/* Tablet */

@media(max-width:991px) {

    .about-banner {
        min-height: auto;
        padding: 40px 30px;
    }

    .about-content h2 {
        font-size: 50px;
    }

    .about-content h3 {
        font-size: 40px;
    }

    .about-features {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
    }

    .feature {
        position: static;
    }

}

/* Mobile */

@media(max-width:767px) {

    .about-banner {
        padding: 30px 20px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content h3 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .icon {
        width: 70px;
        height: 70px;
    }

    .icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-content h4 {
        font-size: 18px;
    }

}

/* section two */
.who-we-are {
    padding: 90px 0;
    background: #fff;
    font-family: var(--heading-font);
}

.who-container {
    width: 95%;
    max-width: 1340px;
    margin: auto;

    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

/* Left */

.section-tag {
    display: inline-block;
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-tag::after {
    content: "";
    width: 55px;
    height: 3px;
    background: var(--green);
    display: block;
    margin-top: 8px;
}

.who-content h2 {
    color: var(--text);
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.who-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* Right Box */

.who-cards {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.who-card {
    padding: 45px 35px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.who-card:last-child {
    border-right: none;
}

.who-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-icon svg {
    width: 80px;
    height: 80px;
}

.mission-icon {
    color: var(--green);
}

.vision-icon {
    color: var(--primary);
}

.values-icon {
    color: var(--green);
}

.who-card h3 {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.who-card p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.who-card ul {
    padding-left: 18px;
    text-align: left;
}

.who-card ul li {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: -2px;
}

/* Tablet */

@media(max-width:991px) {

    .who-container {
        grid-template-columns: 1fr;
    }

    .who-content {
        text-align: center;
    }

    .section-tag::after {
        margin: 8px auto 0;
    }

    .who-cards {
        grid-template-columns: 1fr;
    }

    .who-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .who-card:last-child {
        border-bottom: none;
    }

}

/* Mobile */

@media(max-width:767px) {

    .who-we-are {
        padding: 60px 0;
    }

    .who-content h2 {
        font-size: 36px;
    }

    .who-content p {
        font-size: 16px;
    }

    .who-card {
        padding: 35px 25px;
    }

    .who-card h3 {
        font-size: 22px;
    }

    .who-icon {
        width: 70px;
        height: 70px;
    }

    .who-icon svg {
        width: 60px;
        height: 60px;
    }

}

/* section three */
.commitment-section {
    padding: 30px 0;
    background: #fff;
}

.commitment-container {
    width: 95%;
    max-width: 1340px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-tag {
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.commitment-tag::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin-top: 8px;
}

.commitment-content h2 {
    color: var(--text);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.commitment-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.commitment-content ul {
    list-style: none;
    padding: 0;
}

.commitment-content ul li {
    margin-bottom: 14px;
    color: #334155;
    font-size: 15px;
}

.commitment-content ul li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    margin-right: 10px;
}

.commitment-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

/* Tablet */
@media(max-width:991px) {

    .commitment-container {
        grid-template-columns: 1fr;
    }

}

/* Mobile */
@media(max-width:767px) {

    .commitment-content h2 {
        font-size: 34px;
    }

    .commitment-content p {
        font-size: 16px;
    }

}

/* section four */
.napco-values-strip {
    padding: 50px 0;
    background: #fff;
    font-family: var(--heading-font);
}

.napco-values-container {
    max-width: 1340px;
    width: 95%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.napco-value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-right: 20px;
}

.napco-value-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.napco-value-icon {
    flex-shrink: 0;
}

.napco-value-icon svg {
    width: 56px;
    height: 56px;
}

.napco-value-icon.quality {
    color: var(--green);
}

.napco-value-icon.trust {
    color: var(--primary);
}

.napco-value-icon.innovation {
    color: var(--green);
}

.napco-value-icon.customer {
    color: var(--primary);
}

.napco-value-icon.delivery {
    color: var(--green);
}

.napco-value-content h3 {
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.napco-value-content p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

/* Tablet */

@media(max-width:991px) {

    .napco-values-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .napco-value-item {
        border-right: none !important;
        padding-right: 0;
    }

}

/* Mobile */

@media(max-width:767px) {

    .napco-values-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .napco-value-item {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border);
    }

    .napco-value-item:last-child {
        border-bottom: none;
    }

    .napco-value-content h3 {
        font-size: 20px;
    }

    .napco-value-content p {
        font-size: 14px;
    }

    .napco-value-icon svg {
        width: 48px;
        height: 48px;
    }

}

/* contact page  */
/* section one  */
.napco-contact-banner {


    min-height: 620px;

    overflow: hidden;
    position: relative;

    background-image: url('/public/frontend/assets/bg-img/contact-bg-img.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.napco-contact-overlay {

    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, .92) 0%,
            rgba(255, 255, 255, .78) 35%,
            rgba(255, 255, 255, .10) 100%);

    padding: 70px;
}

.napco-contact-content {
    max-width: 520px;
    margin-left: 30px;
}

.napco-contact-content h2 {

    color: var(--primary);
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;

    font-family: var(--heading-font);
}

.napco-contact-content h3 {

    color: var(--green);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;

    font-family: var(--script-font);
}

.napco-contact-line {

    width: 70px;
    height: 4px;

    background: var(--green);

    border-radius: 50px;
    margin: 25px 0;
}

.napco-contact-content p {

    color: #334155;

    font-size: 20px;
    line-height: 1.9;

    margin-bottom: 60px;
}

/* Bottom Features */

.napco-contact-features {

    display: flex;
    align-items: center;
    gap: 50px;
}

.napco-contact-feature {

    display: flex;
    align-items: center;
    gap: 12px;
}

.napco-feature-icon {

    width: 60px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.napco-feature-icon svg {

    width: 20px;
    height: 20px;
}

.napco-feature-icon.green {

    border: 2px solid var(--green);
    color: var(--green);
}

.napco-feature-icon.blue {

    border: 2px solid var(--primary);
    color: var(--primary);
}

.napco-contact-feature span {

    color: #111827;

    font-size: 16px;
    font-weight: 600;
}

/* ===========================
   TABLET RESPONSIVE
=========================== */

@media (max-width: 991px) {

    .napco-contact-banner {
        min-height: 700px;
        background-position: 70% center;
    }

    .napco-contact-overlay {
        padding: 50px 35px;
    }

    .napco-contact-content {
        max-width: 600px;
    }

    .napco-contact-content h2 {
        font-size: 48px;
    }

    .napco-contact-content h3 {
        font-size: 38px;
    }

    .napco-contact-content p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .napco-contact-features {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    .napco-contact-feature {
        width: calc(50% - 15px);
    }

}


/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 767px) {

    .napco-contact-banner {
        min-height: 700px;
        background-position: 75% center;
        background-size: cover;
    }

    .napco-contact-overlay {
        padding: 35px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .napco-contact-content {
        max-width: 100%;
    }

    .napco-contact-content h2 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .napco-contact-content h3 {
        font-size: 30px;
        line-height: 1.2;
    }

    .napco-contact-line {
        width: 55px;
        margin: 18px 0;
    }

    .napco-contact-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .napco-contact-features {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .napco-contact-feature {
        width: 100%;
    }

    .napco-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .napco-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .napco-contact-feature span {
        font-size: 15px;
    }

}


/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 480px) {

    .napco-contact-banner {
        min-height: 650px;
        background-position: 80% center;
    }

    .napco-contact-overlay {
        padding: 25px 15px;
    }

    .napco-contact-content h2 {
        font-size: 32px;
    }

    .napco-contact-content h3 {
        font-size: 26px;
    }

    .napco-contact-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .napco-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .napco-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .napco-contact-feature span {
        font-size: 14px;
    }

}

/* section two */
.np-contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.np-contact-info-grid {
    width: 95%;
    max-width: 1340px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.np-contact-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

    border: 1px solid var(--border);

    transition: .3s;
}

.np-contact-card:hover {
    transform: translateY(-6px);
}

.np-contact-icon {

    width: 85px;
    height: 85px;

    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.np-contact-icon svg {
    width: 40px;
    height: 40px;
}

.np-contact-icon.green {
    background: rgba(115, 181, 59, .12);
    color: var(--green);
}

.np-contact-icon.blue {
    background: rgba(12, 59, 145, .12);
    color: var(--primary);
}

.np-contact-card h3 {

    color: var(--text);

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 18px;
}

.np-contact-card p {

    color: #475569;

    font-size: 14px;
    line-height: 1.9;
}

/* Tablet */

@media(max-width:1200px) {

    .np-contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .np-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:767px) {

    .np-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .np-contact-card {
        padding: 30px 20px;
    }

    .np-contact-card h3 {
        font-size: 20px;
    }

    .np-contact-card p {
        font-size: 15px;
    }

    .np-contact-icon {
        width: 70px;
        height: 70px;
    }

    .np-contact-icon svg {
        width: 32px;
        height: 32px;
    }

}

/* section three */
/* ==========================================
   CONTACT SECTION
========================================== */

.np-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.np-contact-container {
    width: 95%;
    max-width: 1340px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
}

/* ==========================================
   LEFT FORM CARD
========================================== */

.np-form-card {

    background: linear-gradient(135deg,
            #021526 0%,
            #0c3b91 100%);

    border-radius: 24px;

    padding: 35px;

    position: relative;

    overflow: hidden;
}

.np-form-card::before {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -80px;

    width: 220px;
    height: 220px;

    background: radial-gradient(rgba(255, 255, 255, .15),
            transparent 70%);

    border-radius: 50%;
}

.np-form-heading h2 {

    font-size: 30px;
    font-weight: 700;

    color: var(--white);

    margin-bottom: 10px;

    font-family: var(--heading-font);
}

.np-form-heading h2 span {
    color: var(--green);
}

.np-heading-line {

    width: 50px;
    height: 4px;

    background: var(--green);

    border-radius: 50px;

    margin: 15px 0 25px;
}

.np-form-heading p {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 30px;
}

/* ==========================================
   FORM
========================================== */

.np-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.np-form-group {
    margin-bottom: 15px;
}

.np-form-group input,
.np-form-group select,
.np-form-group textarea {

    width: 100%;

    border: none;

    outline: none;

    background: #ffffff;

    border-radius: 8px;

    padding: 16px 18px;

    font-size: 15px;

    font-family: var(--heading-font);

    color: #111827;

    box-sizing: border-box;
}

.np-form-group textarea {
    resize: none;
    min-height: 140px;
}

.np-form-group input:focus,
.np-form-group select:focus,
.np-form-group textarea:focus {

    box-shadow: 0 0 0 3px rgba(115, 181, 59, .25);
}

/* ==========================================
   BUTTON
========================================== */

.np-submit-btn {

    border: none;

    cursor: pointer;

    background: var(--green);

    color: #fff;

    border-radius: 8px;

    height: 60px;

    padding: 0 30px;

    font-size: 16px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-width: 280px;

    transition: .3s;
}

.np-submit-btn:hover {
    transform: translateY(-3px);
}

.np-submit-btn svg {
    width: 22px;
    height: 22px;
}

/* ==========================================
   MAP CARD
========================================== */

.np-map-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid var(--border);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    display: flex;
    flex-direction: column;
}

.np-map-wrapper {
    height: 430px;
}

.np-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   MAP FOOTER
========================================== */

.np-map-footer {

    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.np-visit-info {

    display: flex;
    align-items: center;

    gap: 18px;

    flex: 1;
}

.np-location-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 50%;

    background: rgba(12, 59, 145, .08);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;
}

.np-location-icon svg {
    width: 34px;
    height: 34px;
}

.np-visit-info h4 {

    color: var(--text);

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 6px;
}

.np-visit-info p {

    color: #475569;

    font-size: 15px;

    line-height: 1.7;
}

/* ==========================================
   DIRECTIONS BUTTON
========================================== */

.np-direction-btn {

    background: var(--primary);

    color: #fff;

    text-decoration: none;

    height: 56px;

    padding: 0 25px;

    border-radius: 8px;

    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;

    transition: .3s;
}

.np-direction-btn:hover {
    background: #082c70;
}

.np-direction-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px) {

    .np-contact-container {
        grid-template-columns: 1fr;
    }

    .np-form-card {
        padding: 30px;
    }

    .np-form-heading h2 {
        font-size: 34px;
    }

    .np-map-wrapper {
        height: 350px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px) {

    .np-contact-section {
        padding: 60px 0;
    }

    .np-form-card {
        padding: 25px 20px;
    }

    .np-form-row {
        grid-template-columns: 1fr;
    }

    .np-form-heading h2 {
        font-size: 28px;
    }

    .np-form-heading p {
        font-size: 15px;
    }

    .np-submit-btn {
        width: 100%;
        min-width: 100%;
    }

    .np-map-wrapper {
        height: 300px;
    }

    .np-map-footer {

        flex-direction: column;

        align-items: flex-start;
    }

    .np-direction-btn {
        width: 100%;
        justify-content: center;
    }

    .np-location-icon {

        width: 60px;
        height: 60px;

        min-width: 60px;
    }

    .np-location-icon svg {
        width: 28px;
        height: 28px;
    }

    .np-visit-info h4 {
        font-size: 18px;
    }

    .np-visit-info p {
        font-size: 14px;
    }

}

/* section Four */
.np-connect-section {
    padding: 30px 0 80px;
    background: #fff;
}

.np-connect-container {
    width: 95%;
    max-width: 1340px;
    margin: auto;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 24px;

    padding: 35px 40px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
}

.np-connect-heading {
    margin-bottom: 30px;
}

.np-connect-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    font-family: var(--heading-font);
}

.np-connect-heading h2 span {
    color: var(--green);
}

.np-connect-line {
    width: 55px;
    height: 4px;
    border-radius: 50px;
    background: var(--green);
}

.np-connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.np-connect-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 25px;
    border-right: 1px solid var(--border);
}

.np-connect-item:last-child {
    border-right: none;
}

.np-connect-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.np-connect-icon svg {
    width: 52px;
    height: 52px;
}

.np-connect-icon.green {
    color: var(--green);
}

.np-connect-icon.blue {
    color: var(--primary);
}

.np-connect-content h3 {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.np-connect-content p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

/* =====================
   Tablet
===================== */

@media(max-width:991px) {

    .np-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .np-connect-item {
        border-right: none;
        padding: 0;
    }

    .np-connect-heading h2 {
        font-size: 34px;
    }
}

/* =====================
   Mobile
===================== */

@media(max-width:767px) {

    .np-connect-section {
        padding: 20px 0 60px;
    }

    .np-connect-container {
        padding: 25px 20px;
    }

    .np-connect-heading {
        text-align: center;
    }

    .np-connect-line {
        margin: auto;
    }

    .np-connect-heading h2 {
        font-size: 28px;
    }

    .np-connect-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .np-connect-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .np-connect-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .np-connect-icon svg {
        width: 42px;
        height: 42px;
    }

    .np-connect-content h3 {
        font-size: 20px;
    }

    .np-connect-content p {
        font-size: 15px;
    }

}

/* section five */
/* ==========================================
   SOLUTION BANNER
========================================== */
.np-solution-banner{
    background:linear-gradient(
        135deg,
        #021526 0%,
        #0c3b91 100%
    );

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;

    padding:60px;
    min-height:500px;
    overflow:hidden;
}

.np-solution-content{
    flex:1;
    max-width:550px;
}

.np-solution-tag{
    color:var(--green);
    font-size:18px;
    font-weight:700;
    display:block;
    margin-bottom:15px;
}

.np-solution-content h2{
    color:#fff;
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.np-solution-content p{
    color:#fff;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

.np-solution-btn{
    display:inline-block;
    background:var(--green);
    color:#fff;
    padding:18px 28px;
    border-radius:8px;
    font-weight:700;
}

/* Video Section */

.np-solution-video{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.np-solution-video iframe{
    width:100%;
    max-width:600px;
    height:350px;

    border:none;
    border-radius:20px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

/* Tablet */

@media(max-width:991px){

    .np-solution-banner{
        flex-direction:column;
        text-align:center;
        padding:40px;
    }

    .np-solution-content{
        max-width:100%;
    }

    .np-solution-content h2{
        font-size:34px;
    }

    .np-solution-video{
        width:100%;
    }

    .np-solution-video iframe{
        max-width:100%;
        height:350px;
    }

}

/* Mobile */

@media(max-width:767px){

    .np-solution-banner{
        padding:25px 15px;
        gap:25px;
    }

    .np-solution-content h2{
        font-size:28px;
    }

    .np-solution-content p{
        font-size:15px;
    }

    .np-solution-btn{
        width:100%;
        text-align:center;
    }

    .np-solution-video iframe{
        height:220px;
        border-radius:12px;
    }

}
/* pop css */
/* ==========================
   HOME PAGE POPUP
========================== */

.home-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.8);
    z-index:999999;

    display:none; /* hide by default */

    justify-content:center;
    align-items:center;
}

.home-popup-overlay.active{
    display:flex;
}

.home-popup-box{
    width:90%;
    max-width:520px;
    background:#fff;
    border-radius:18px;
    padding:35px;
    position:relative;

    transform:translateY(40px);
    transition:.4s ease;
}

.home-popup-overlay.active .home-popup-box{
    transform:translateY(0);
}

.home-popup-close{
    position:absolute;
    top:10px;
    right:15px;

    border:none;
    background:none;

    font-size:32px;
    line-height:1;
    cursor:pointer;
    color:#021526;
}

.home-popup-content h2{
    font-size:32px;
    font-weight:700;
    color:#021526;
    margin-bottom:10px;
}

.home-popup-content p{
    font-size:15px;
    color:#666;
    margin-bottom:25px;
    line-height:1.6;
}

.home-popup-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.home-popup-form input,
.home-popup-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.home-popup-form textarea{
    height:120px;
    resize:none;
}

.home-popup-form button{
    border:none;
    background:#021526;
    color:#fff;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.home-popup-form button:hover{
    background:#f5b548;
    color:#021526;
}

/* Tablet */

@media(max-width:768px){

    .home-popup-box{
        max-width:95%;
        padding:25px;
    }

    .home-popup-content h2{
        font-size:26px;
    }

}

/* Mobile */

@media(max-width:480px){

    .home-popup-box{
        width:92%;
        padding:20px;
        border-radius:14px;
    }

    .home-popup-content h2{
        font-size:22px;
    }

    .home-popup-content p{
        font-size:14px;
    }

    .home-popup-form input,
    .home-popup-form textarea{
        padding:12px;
        font-size:14px;
    }

    .home-popup-form button{
        padding:13px;
        font-size:15px;
    }

}
/* product page first  */

/* ==========================
   REEL STAND BANNER
========================== */

.napco-reel-banner {
    position: relative;
    overflow: hidden;
    /* min-height: 750px; */
    display: flex;
    align-items: center;

    /* Background Image Here */
    background-image:
    linear-gradient(
    rgba(84, 113, 216, 0.22),
    rgba(23, 46, 177, 0.22)),
    url('/public/frontend/assets/bg-img/Hydraulic-Shaftless-bg-img.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.napco-banner-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:80px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    position:relative;
    z-index:2;
}

.napco-banner-content{
    flex:1;
    max-width:600px;
}

.napco-subtitle{
    font-size:26px;
    font-weight:600;
    color:#ffffff;
    display:block;
    margin-bottom:10px;
}

.napco-banner-content h1{
    font-family:var(--heading-font);
    font-size:40px;
    line-height:1.1;
    color:var(--white);
    font-weight:700;
    margin-bottom:20px;
}

.napco-line{
    width:90px;
    height:4px;
    background:var(--white);
    margin-bottom:25px;
}

.napco-banner-content h4{
    color:white;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.napco-banner-content p{
    font-size:16px;
    line-height:1.9;
    color:#e7e1e1;
    margin-bottom:40px;
}

.napco-feature-list{
    display:flex;
    /* flex-wrap:wrap; */
    gap:25px;
}

.napco-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:140px;
}

.napco-feature-item i{
    width:50px;
    height:36px;
    border:2px solid var(--white);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    font-size:18px;
}

.napco-feature-item span{
    color:white;
    font-weight:600;
    font-size:14px;
}

.napco-banner-image{
    flex:1;
    text-align:right;
}

.napco-banner-image img{
    width:100%;
    max-width:650px;
    display:block;
    margin-left:auto;
    animation:napcoFloat 4s ease-in-out infinite;
}

@keyframes napcoFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
    100%{
        transform:translateY(0);
    }
}

.napco-exp-badge{
    position:absolute;
    top:40px;
    right:20px;

    width:170px;
    height:170px;

    background:var(--primary);
    color:var(--white);

    border-radius:50%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.napco-exp-badge h2{
    font-size:48px;
    margin:0;
    font-weight:700;
}

.napco-exp-badge span{
    font-size:14px;
    text-transform:uppercase;
    line-height:1.5;
}
.btn-pdf,
.btn-info {
  color: var(--primary);
  border: 2px solid white;
  padding: 15px 20px;
  background-color: white;
  font-weight: 700;
  transition: all 0.2s ease-in-out; /* smooth hover animation */
}

.btn-pdf:hover,
.btn-info:hover {
  color: white;
  background-color: var(--primary);
  border: 2px solid var(--white);
  transform: scale(1.05); /* halka zoom effect */
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .napco-banner-container{
        flex-direction:column;
        text-align:center;
        padding:60px 30px;
    }

    .napco-line{
        margin:auto auto 25px;
    }

    .napco-feature-list{
        justify-content:center;
        display: flex;
        flex-wrap: wrap;
    }

    .napco-banner-content h1{
        font-size:48px;
    }

    .napco-banner-content h4{
        font-size:24px;
    }

    .napco-banner-image{
        text-align:center;
    }

    .napco-banner-image img{
        max-width:600px;
        margin:auto;
    }

    .napco-exp-badge{
        width:130px;
        height:130px;
    }

    .napco-exp-badge h2{
        font-size:34px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .napco-reel-banner{
        min-height:auto;
    }

    .napco-banner-container{
        padding:50px 20px;
    }

    .napco-subtitle{
        font-size:18px;
    }

    .napco-banner-content h1{
        font-size:30px;
    }

    .napco-banner-content h4{
        font-size:18px;
    }

    .napco-banner-content p{
        font-size:14px;
    }

    .napco-feature-item{
        width:100%;
        justify-content:flex-start;
    }

    .napco-exp-badge{
        position:relative;
        top:auto;
        right:auto;
        margin:20px auto 0;
    }
}

/* ==========================
   OVERVIEW SECTION
========================== */

.napco-overview-section{
    padding:50px 0;
    background:var(--white);
}

.napco-overview-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1.3fr .9fr;
    gap:50px;
    align-items:start;
}

.napco-section-tag{
    display:block;
    color:var(--green);
    font-size:30px;
    font-weight:700;
    font-family:var(--heading-font);
    margin-bottom:25px;
}

.napco-overview-text{
    color:#444;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

/* ==========================
   SPECIFICATIONS
========================== */

.napco-spec-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--border);
}

.napco-spec-card{
    padding:30px 20px;
    text-align:center;
    border-right:1px solid var(--border);
}

.napco-spec-card:last-child{
    border-right:none;
}

.napco-spec-card i{
    width:70px;
    height:70px;
    border:2px solid var(--primary);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--primary);
    font-size:28px;
    margin:0 auto 20px;
}

.napco-spec-card h4{
    color:var(--text);
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

.napco-spec-card span{
    color:#333;
    font-size:16px;
    font-weight:600;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .napco-overview-container{
        grid-template-columns:1fr;
    }

    .napco-spec-grid{
        grid-template-columns:repeat(2,1fr);
    }

    
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .napco-overview-section{
        padding:60px 0;
    }

    .napco-section-tag{
        font-size:24px;
    }

    .napco-overview-text{
        font-size:16px;
    }

    .napco-spec-grid{
        grid-template-columns:1fr;
    }

    .napco-spec-card{
        border-right:none;
        border-bottom:1px solid var(--border);
    }

    .napco-spec-card:last-child{
        border-bottom:none;
    }

}
/* section three product one page  */
/* ==========================
   TECHNICAL SPECIFICATIONS
========================== */

.napco-tech-specs{
    padding:30px 0;
    background:var(--white);
}

.napco-tech-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1.2fr .9fr;
    gap:60px;
}

.napco-title{
    color:var(--green);
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    font-family:var(--heading-font);
}

/* ==========================
   TABLE
========================== */

.napco-table-wrapper{
    overflow-x:auto;
    border:1px solid var(--border);
    border-radius:12px;
}

.napco-spec-table{
    width:100%;
    border-collapse:collapse;
}

.napco-spec-table thead{
    background:var(--primary);
}

.napco-spec-table th{
    color:#fff;
    text-align:left;
    padding:16px 24px;
    font-size:16px;
    font-weight:600;
}

.napco-spec-table td{
    padding:14px 24px;
    border-top:1px solid var(--border);
    color:#333;
    font-size:14px;
}

.napco-spec-table tbody tr:nth-child(even){
    background:#f8f9fb;
}

.napco-spec-table td:first-child{
    font-weight:600;
    color:var(--text);
    width:42%;
}

/* ==========================
   APPLICATION
========================== */

.napco-app-desc{
    font-size:16px;
    line-height:1.8;
    color:#444;
    margin-bottom:30px;
}

.napco-app-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.napco-app-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:28px 15px;
    text-align:center;
    transition:.4s ease;
}

.napco-app-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.napco-app-card i{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
}

.napco-app-card h4{
    font-size:14px;
    color:var(--text);
    line-height:1.5;
    font-weight:600;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .napco-tech-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .napco-app-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .napco-tech-specs{
        padding:60px 0;
    }

    .napco-title{
        font-size:24px;
    }

    .napco-app-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .napco-spec-table th,
    .napco-spec-table td{
        padding:12px 15px;
        font-size:14px;
    }

    .napco-app-card{
        padding:22px 10px;
    }

    .napco-app-card i{
        font-size:34px;
    }

    .napco-app-card h4{
        font-size:13px;
    }

}

@media(max-width:480px){

    .napco-app-grid{
        grid-template-columns:1fr;
    }

}
/* section four product page  */
/* ==========================
   PRODUCT GALLERY
========================== */

.napco-gallery-section{
    padding:30px 0;
    background:var(--white);
    overflow:hidden;
}

.napco-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.napco-gallery-title{
    font-size:30px;
    color:var(--green);
    font-weight:700;
    margin-bottom:30px;
    font-family:var(--heading-font);
}

/* ==========================
   AUTO SLIDER
========================== */

.napco-gallery-slider{
    overflow:hidden;
    width:100%;
}

.napco-gallery-track{
    display:flex;
    gap:20px;
    width:max-content;
    height: 270px;
    animation:galleryScroll 25s linear infinite;
}

.napco-gallery-slider:hover .napco-gallery-track{
    animation-play-state:paused;
}

@keyframes galleryScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.napco-gallery-item{
    width:320px;
    flex-shrink:0;
}

.napco-gallery-item img{
   width: 88%;
    height: 207px;
    border: 2px solid #e2e2e2;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: .4s;
    padding: 20px;
   
  box-shadow: 5px 5px 10px gray;

}

.napco-gallery-item:hover img{
    transform:scale(1.05);
}

/* ==========================
   CTA BANNER
========================== */

.napco-solution-banner{
    margin-top:40px;

    display:grid;
    grid-template-columns:320px 1fr auto;

    align-items:center;

    background:linear-gradient(
    90deg,
    #0c3b91,
    #082d73);

    border-radius:20px;
    overflow:hidden;
}

.napco-solution-image img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}
.napco-solution-image{
    position:relative;
    overflow:hidden;
}

.napco-solution-image img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

/* Blue Gradient Overlay */

.napco-solution-image::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    pointer-events:none;

    background:linear-gradient(
        90deg,
        rgba(12,59,145,0.85) 0%,
        rgba(12,59,145,0.65) 35%,
        rgba(12,59,145,0.35) 65%,
        rgba(12,59,145,0) 100%
    );
}

.napco-solution-content{
    padding:35px;
}

.napco-solution-content h3{
    color:#b7ff3b;
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.napco-solution-content p{
    color:#fff;
    line-height:1.8;
    font-size:16px;
}

.napco-solution-buttons{
    padding:35px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.napco-btn-primary{
    background:var(--green);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-align:center;
}

.napco-btn-outline{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-align:center;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .napco-solution-banner{
        grid-template-columns:1fr;
    }

    .napco-solution-buttons{
        flex-direction:row;
        justify-content:center;
        padding-top:0;
        padding-bottom:30px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .napco-gallery-title{
        font-size:24px;
    }
    .napco-gallery-track{
        height: 200px;
    }

    .napco-gallery-item{
        width:260px;
    }

    .napco-gallery-item img{
        height:180px;
    }

    .napco-solution-content{
        text-align:center;
        padding:25px;
    }

    .napco-solution-content h3{
        font-size:22px;
    }

    .napco-solution-buttons{
        flex-direction:column;
        width:100%;
        padding:20px;
    }

    .napco-btn-primary,
    .napco-btn-outline{
        width:100%;
    }

}

/*==================================
GLOBAL PRESENCE
==================================*/
.napco-global-box{

    background:
        radial-gradient(circle at center,
        rgba(255,255,255,1.95) 0%,
        rgba(255,255,255,.45) 35%,
        rgba(255,255,255,.55) 60%,
        rgba(255,255,255,0) 100%),

        url('/public/frontend/assets/image/flag/map-img-1.png');

    background-repeat:no-repeat;

    background-position:center 90px;

    background-size:90% auto;

    background-color:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    overflow:hidden;

}

.napco-global-header{

    display:flex;

    align-items:center;

    gap:18px;

    padding:30px;

}

.napco-global-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.napco-global-icon i{

    font-size:34px;

    color:var(--primary);

}

.napco-global-header h3{

    margin:0;

    color:var(--primary);

    font-size:30px;

    font-weight:700;

    font-family:var(--heading-font);
    

}

.napco-global-header p{

    margin:6px 0 0;

    color:#666;

    font-size:15px;
    

}

.napco-global-map{

    padding:0 25px 20px;

    text-align:center;

}

.napco-global-map img{

    width:100%;

    max-width:520px;

}

.napco-country-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;

    padding:28px;

    border-top:1px solid var(--border);
    padding-top: 110px;

}

.napco-country-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    transition:.35s;

}

.napco-country-card:hover{

    transform:translateY(-5px);

}

.napco-country-card img{

    width:42px;

    height:42px;

    object-fit:cover;

    border-radius:50%;

    box-shadow:0 4px 10px rgba(0,0,0,.15);

}

.napco-country-card span{

    margin-top:10px;

    font-size:14px;

    color:var(--text);

    font-weight:600;

}
@media(max-width:991px){

.napco-global-header{

    padding:25px;

}
.napco-global-box{
    background-image: none;
}

.napco-global-header h3{

    font-size:26px;

}

.napco-country-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:767px){

.napco-global-header{

    flex-direction:column;

    text-align:center;

}
.napco-global-box{
    background-image: none;
}

.napco-global-icon{

    width:60px;

    height:60px;

}

.napco-global-icon i{

    font-size:28px;

}

.napco-global-header h3{

    font-size:24px;

}

.napco-global-map{

    padding:15px;

}

.napco-country-grid{

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    padding:20px;

}

.napco-country-card img{

    width:38px;

    height:38px;

}

}
/*=========================================
KEY FEATURES SECTION
==========================================*/

.napco-keyfeature-section{
    padding:80px 0;
    background:#fff;
}

.napco-keyfeature-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1.2fr .95fr;
    gap:50px;
    align-items:center;
}


/*=========================================
LEFT SIDE
==========================================*/

.napco-keyfeature-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.napco-keyfeature-heading h2{
    font-size:30px;
    font-weight:700;
    color:var(--green);
    font-family:var(--heading-font);
    margin:0;
}

.napco-keyfeature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/*=========================================
FEATURE CARD
==========================================*/

.napco-keyfeature-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    min-height:155px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:30px 20px;

    transition:.35s ease;

    box-shadow:0 6px 18px rgba(0,0,0,.04);

}

.napco-keyfeature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.napco-keyfeature-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#edf4ff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.napco-keyfeature-icon i{

    font-size:24px;

    color:var(--primary);

}

.napco-keyfeature-card h4{

    font-size:16px;

    font-weight:600;

    line-height:1.5;

    color:var(--text);

    margin:0;

}


/*=========================================
RIGHT SIDE
==========================================*/

.napco-export-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    background:#fff;

}

.napco-export-image img{

    width:100%;

    display:block;

    border-radius:24px;

}


/*=========================================
BOTTOM BLUE BOX
==========================================*/

.napco-export-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    margin:0 18px 18px;

    background:#082d7a;

    color:#fff;

    border-radius:22px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.napco-export-overlay-icon{

    width:75px;

    height:75px;

    border:2px solid #f4b400;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.napco-export-overlay-icon i{

    font-size:38px;

    color:#f4b400;

}

.napco-export-overlay-content{

    flex:1;

}

.napco-export-overlay-content h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    font-family:var(--heading-font);

}

.napco-export-overlay-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.napco-export-overlay-content li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:12px;

    font-size:17px;

    color:#fff;

}

.napco-export-overlay-content li:last-child{

    margin-bottom:0;

}

.napco-export-overlay-content li i{

    color:#f4b400;

    font-size:18px;

}
/*=========================================
TABLET
==========================================*/

@media (max-width: 991px){

    .napco-keyfeature-section{
        padding:70px 0;
    }

    .napco-keyfeature-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .napco-keyfeature-heading{
        justify-content:center;
    }

    .napco-keyfeature-grid{
        grid-template-columns:repeat(3,1fr);
        gap:18px;
    }

    .napco-keyfeature-card{
        min-height:145px;
        padding:25px 18px;
    }

    .napco-keyfeature-card h4{
        font-size:16px;
    }

    .napco-keyfeature-icon{
        width:62px;
        height:62px;
        margin-bottom:16px;
    }

    .napco-keyfeature-icon i{
        font-size:30px;
    }

    .napco-export-card{
        max-width:650px;
        width:100%;
        margin:auto;
    }

    .napco-export-overlay{
        padding:24px;
    }

    .napco-export-overlay h3{
        font-size:24px;
    }

    .napco-export-overlay li{
        font-size:15px;
    }

}


/*=========================================
MOBILE
==========================================*/

@media (max-width:767px){

    .napco-keyfeature-section{
        padding:60px 0;
    }

    .napco-keyfeature-heading{
        justify-content:center;
        margin-bottom:28px;
    }

    .napco-keyfeature-heading h2{
        font-size:30px;
    }

    .napco-keyfeature-heading span{
        width:55px;
    }

    .napco-keyfeature-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .napco-keyfeature-card{
        min-height:135px;
        padding:20px 15px;
    }

    .napco-keyfeature-icon{
        width:55px;
        height:55px;
        margin-bottom:15px;
    }

    .napco-keyfeature-icon i{
        font-size:26px;
    }

    .napco-keyfeature-card h4{
        font-size:15px;
        line-height:1.4;
    }

    .napco-export-overlay{

        position:relative;

        margin:0;

        border-radius:0 0 20px 20px;

        padding:22px;

        flex-direction:column;

        text-align:center;

        align-items:center;

    }

    .napco-export-overlay-icon{

        width:65px;
        height:65px;

    }

    .napco-export-overlay-icon i{

        font-size:30px;

    }

    .napco-export-overlay-content h3{

        font-size:22px;

    }

    .napco-export-overlay-content ul{

        margin-top:18px;

    }

    .napco-export-overlay-content li{

        justify-content:center;

        font-size:15px;

    }

}


/*=========================================
SMALL MOBILE
==========================================*/

@media (max-width:480px){

    .napco-keyfeature-grid{
        grid-template-columns:1fr;
    }

    .napco-keyfeature-heading h2{
        font-size:26px;
    }

    .napco-keyfeature-card{
        min-height:120px;
    }

    .napco-keyfeature-card h4{
        font-size:15px;
    }

    .napco-export-overlay{
        padding:18px;
    }

    .napco-export-overlay-content h3{
        font-size:20px;
    }

    .napco-export-overlay-content li{
        font-size:14px;
    }

}

/*==================================
KEY HIGHLIGHTS BOX
==================================*/

.napco-product-image-box{

    margin-top:40px;

}

.napco-product-image-box .napco-feature-box{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s ease;

}

.napco-product-image-box .napco-feature-box:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.napco-product-image-box .napco-feature-box h3{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin-bottom:28px;

    font-family:var(--heading-font);

    padding-bottom:15px;

    border-bottom:2px solid #eef2f7;

}

.napco-product-image-box .napco-feature-box h3::before{

    content:"";

    width:6px;

    height:30px;

    background:var(--green);

    border-radius:10px;

}

.napco-product-image-box .napco-feature-box ul{

    margin:0;

    padding:0;

    list-style:none;

}

.napco-product-image-box .napco-feature-box li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

    color:#4b5563;

    font-size:16px;

    line-height:1.8;

}

.napco-product-image-box .napco-feature-box li:last-child{

    margin-bottom:0;

}

.napco-product-image-box .napco-feature-box li i{

    width:30px;

    height:30px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf7df;

    color:var(--green);

    border-radius:50%;

    font-size:14px;

    margin-top:2px;

}
]@media(max-width:991px){

    .napco-product-image-box{

        margin-top:30px;

    }

    .napco-product-image-box .napco-feature-box{

        padding:30px;

    }

}

@media(max-width:767px){

    .napco-product-image-box .napco-feature-box{

        padding:22px;

    }

    .napco-product-image-box .napco-feature-box h3{

        font-size:24px;

    }

    .napco-product-image-box .napco-feature-box li{

        font-size:15px;

        line-height:1.7;

    }

}
/*==================================
KEY HIGHLIGHT
==================================*/

.key-highlight{

   

    padding-left:30px;
    padding-right:30px;

   

   

}

.key-highlight h3{

    font-size:22px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

    font-family:var(--heading-font);

}

.key-highlight ul{

    margin:0;

    padding:0;

    list-style:none;

}

.key-highlight li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:8px;

    font-size:15px;

    line-height:1.7;

    color:#444;

}

.key-highlight li:last-child{

    margin-bottom:0;

}

.key-highlight li i{

    color:var(--green);

    font-size:18px;

    margin-top:3px;

    flex-shrink:0;

}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .key-highlight{

        padding:25px;

    }

    .key-highlight h3{

        font-size:24px;

    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:767px){

    .key-highlight{

        margin-top:25px;

        padding:20px;

    }

    .key-highlight h3{

        font-size:22px;

        margin-bottom:20px;

    }

    .key-highlight li{

        font-size:15px;

        line-height:1.6;

        gap:10px;

    }

    .key-highlight li i{

        font-size:16px;

    }

}











/*==============================
   WORKING PROCESS
==============================*/

.working-process{
    padding:80px 0;
    background:#fff;
    overflow:hidden;
}

.working-process-heading{
    text-align:center;
    margin-bottom:60px;
}

.working-process-heading h2{
    display:inline-block;
    background:#0f3b84;
    color:#fff;
    padding:12px 55px;
    border-radius:50px;
    font-size:36px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    letter-spacing:1px;
}



.working-process-heading h2::after{
    right:-60px;
}

.working-process-heading p{
    margin-top:-10px;
    font-size:25px;
    color:#0a1a7b;
    line-height:1.7;
}

/*==============================
    PROCESS WRAPPER
==============================*/

.process-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap;
    gap:10px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:25px 5px;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.process-wrapper::-webkit-scrollbar{
    display:none;
}

/*==============================
      PROCESS CARD
==============================*/

.process-card{

    flex:0 0 160px;
    width:160px;
    min-width:160px;

    background:#fff;
    border-radius:15px;
    padding:18px;

    text-align:center;
    position:relative;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s ease;
}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

/*==============================
      STEP NUMBER
==============================*/

.step-circle{

    width:40px;
    height:40px;

    background:#0f3b84;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:16px;

    position:absolute;
    top:-20px;
    left:50%;
    transform:translateX(-50%);
}

/*==============================
      TITLE
==============================*/

.process-card h4{

    margin-top:18px;
    margin-bottom:15px;

    font-size:15px;
    font-weight:700;
    color:#0f3b84;

    text-transform:uppercase;

    line-height:22px;
}

/*==============================
      IMAGE
==============================*/

.process-card img{

    width:100%;
    height:95px;

    object-fit:contain;

    margin-bottom:15px;
}

/*==============================
      DESCRIPTION
==============================*/

.process-card p{

    font-size:14px;
    line-height:24px;
    color:#555;
    margin:0;
}

/*==============================
      ARROW
==============================*/

.process-arrow{

    flex:0 0 30px;
    width:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    color:#23e025;
}

/*==============================
     LARGE DESKTOP
==============================*/

@media(min-width:1200px){

.process-wrapper{

justify-content:space-between;

overflow:hidden;

}

.process-card{

flex:1;

min-width:150px;

max-width:165px;

}

}

/*==============================
      TABLET
==============================*/

@media(max-width:1199px){

.process-wrapper{

justify-content:flex-start;

overflow-x:auto;

}

}

/*==============================
      MOBILE
==============================*/

@media(max-width:991px){

.process-wrapper{

justify-content:flex-start;

overflow-x:auto;

gap:15px;

}

.process-card{

flex:0 0 250px;

min-width:250px;

max-width:250px;

}

.process-arrow{

flex:0 0 30px;

transform:none;

}

.working-process-heading h2{

font-size:28px;

padding:10px 35px;

}

.working-process-heading h2::before,
.working-process-heading h2::after{

display:none;

}

.working-process-heading p{

font-size:16px;

}

}




/*SF-929 Quick specification*/


/* Quick Specs Custom Grid Layout */
.qs-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.qs-grid-col {
  flex: 1 1 calc(14.285% - 12px);
  min-width: 140px;
  max-width: 100%;
}

.qs-card-box {
  background-color: #fbfbfb;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.qs-card-box i {
  font-size: 2rem;
  color: #0b3c88;
  margin-bottom: 8px;
}

.qs-card-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0b3c88;
  text-transform: uppercase;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 1.2;
}

.qs-card-title small {
  font-size: 0.6rem;
}

.qs-card-divider {
  width: 80%;
  height: 1px;
  background-color: #68a812;
  margin: 10px 0;
  position: relative;
}

.qs-card-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #68a812;
  border-radius: 50%;
}

.qs-card-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0b3c88;
}

.qs-card-txt {
  font-size: 0.68rem;
  color: #444;
  margin: 0;
  line-height: 1.25;
}

.qs-top-banner {
  background-color: #0b3c88;
  color: #fff;
  font-weight: 800;
  padding: 8px 25px;
  font-size: 1.1rem;
  display: inline-block;
  border-radius: 4px;
}

.qs-slash {
  color: #68a812;
}

.qs-bottom-box {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px;
  height: 100%;
}

.qs-bottom-icon {
  font-size: 2.5rem;
  color: #0b3c88;
}

.qs-bottom-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0b3c88;
  margin-bottom: 4px;
}

.qs-bottom-desc {
  font-size: 0.75rem;
  color: #444;
  margin: 0;
}

.qs-feature-list {
  font-size: 0.75rem;
  color: #333;
}

.qs-feature-list li {
  margin-bottom: 4px;
}

.qs-feature-list i {
  color: #68a812;
}

.qs-blue-box {
  background-color: #0b3c88;
  color: #fff;
}

.qs-blue-subtitle {
  font-size: 0.65rem;
  color: #a5c2f0;
  display: block;
  text-transform: uppercase;
}

.qs-blue-title {
  font-size: 0.85rem;
  line-height: 1.2;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .qs-grid-col {
    flex: 1 1 calc(33.33% - 12px);
  }
}

@media (max-width: 576px) {
  .qs-grid-col {
    flex: 1 1 calc(50% - 12px);
  }
}


/* working process SF-929 */
.working-process-section{

    background:#fff;
    position:relative;

}

.section-heading h2{

    display:inline-block;
    background:#0c3b91;
    color:#fff;
    padding:14px 40px;
    border-radius:6px;
    font-size:34px;
    font-weight:700;
    position:relative;

}

.section-heading h2:before{

    content:"";
    position:absolute;
    left:-16px;
    top:0;
    width:12px;
    height:100%;
    background:#73b53b;
    transform:skew(-25deg);

}

.section-heading h2:after{

    content:"";
    position:absolute;
    right:-16px;
    top:0;
    width:12px;
    height:100%;
    background:#73b53b;
    transform:skew(-25deg);

}

.section-heading p{

    max-width:850px;
    margin:20px auto 0;
    color:#666;
    font-size:17px;
    line-height:30px;

}

.process-box{

    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.process-box:hover{

    transform:translateY(-8px);

    border-color:#73b53b;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.step{

    width:60px;
    height:60px;
    background:#0c3b91;
    color:#fff;
    border-radius:50%;
    font-size:24px;
    font-weight:700;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:-65px auto 25px;
    border:6px solid #fff;

}

.icon{

    width:90px;
    height:90px;
    border:2px solid #73b53b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;

}

.icon i{

    font-size:42px;
    color:#0c3b91;

}

.process-box h4{

    color:#0c3b91;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;

}

.process-box p{

    color:#666;
    font-size:16px;
    line-height:30px;

}

.process-row{

    position:relative;

}

.process-row .col-lg-3{

    position:relative;

}

.process-row .col-lg-3:not(:last-child)::after{

    content:"➜";
    position:absolute;
    right:-12px;
    top:40%;
    color:#73b53b;
    font-size:42px;
    font-weight:bold;
    z-index:10;

}

@media(max-width:991px){

.process-row .col-lg-3::after{

display:none;

}

.process-box{

margin-top:40px;

}

.section-heading h2{

font-size:26px;

}

}

/* director desk  */
.director-banner{
    background: url('/public/frontend/assets/bg-img/director-banner-hero.jpg') center center no-repeat;
    background-size: cover;
}

/*==============================
 Leadership Heading
==============================*/

.leadership-title-area{

    position:relative;

    background:#fff;

    padding:65px 0 45px;

    overflow:hidden;

}

/* Left Dot Pattern */

.leadership-title-area::before{

    content:"";

    position:absolute;

    left:25px;

    top:18px;

    width:95px;

    height:72px;

    background-image:radial-gradient(#d9d9d9 1px,transparent 1px);

    background-size:10px 10px;

    opacity:.7;

}

/* Right Dot Pattern */

.leadership-title-area::after{

    content:"";

    position:absolute;

    right:25px;

    top:10px;

    width:95px;

    height:72px;

    background-image:radial-gradient(#d9d9d9 1px,transparent 1px);

    background-size:10px 10px;

    opacity:.7;

}

.leadership-title-wrap{

    width:100%;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.leadership-tag{

    display:inline-block;

    color:#5cab2d;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    position:relative;

    margin-bottom:20px;

}

.leadership-tag::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-10px;

    width:42px;

    height:3px;

    background:#5cab2d;

    border-radius:50px;

}

.leadership-title-wrap h2{

    margin:0;

    color:#0b2d67;

    font-size:30px;

    font-weight:700;

    line-height:1.2;

    letter-spacing:-0.5px;

    margin-bottom:18px;

}

.leadership-title-wrap h2 span{

    color:#0b2d67;

}

.leadership-title-wrap p{

    width:100%;

    max-width:640px;

    margin:auto;

    color:#475569;

    font-size:16px;

    line-height:30px;

}

.commitment-full-content{

    width:100%;

    max-width:1340px;

    margin:5px auto 0;

    padding-top:0 px;

    

}

.commitment-full-content p{

    font-size:16px;

    line-height:30px;

    color:#475569;

    margin:0 0 22px;

    text-align:justify;

}

/* ==========================
   Responsive CSS
========================== */

/* Large Laptop */

@media (max-width:1199px){

    .commitment-full-content{

        margin-top:30px;
        padding-top:25px;

    }

    .commitment-full-content p{

        font-size:16px;
        line-height:30px;

    }

}

/* Tablet */

@media (max-width:991px){

    .commitment-full-content{

        margin-top:25px;
        padding-top:22px;

    }

.commitment-full-content p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 23px;
        padding: 10px;
    }

}

/* Mobile */

@media (max-width:767px){

    .commitment-full-content{

        margin-top:20px;
        padding-top:20px;

    }

    .commitment-full-content p{

        font-size:15px;
        line-height:26px;
        margin-bottom:18px;
        text-align:left;

    }

}

/* Small Mobile */

@media (max-width:575px){

    .commitment-full-content{

        margin-top:18px;
        padding-top:18px;

    }

    .commitment-full-content p{

        font-size:14px;
        line-height:24px;
        margin-bottom:16px;

    }

}

/* Extra Small Devices */

@media (max-width:480px){

    .commitment-full-content{

        margin-top:15px;
        padding-top:15px;

    }

    .commitment-full-content p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 23px;
        padding: 10px;
    }

}


/* ===========================
   Privacy Policy CSS
=========================== */
/*=========================================
        PRIVACY POLICY - PART 1
=========================================*/

.privacy-policy{
    background:#f7f9fc;
    padding:80px 0;
}

/*========================
        HERO SECTION
========================*/

.privacy-hero{
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
    padding:70px 0 60px;
    text-align:center;
    border-bottom:1px solid #edf2f7;
}

.privacy-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(12,59,145,.08);
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.privacy-badge i{
    font-size:15px;
}

.privacy-hero h1{
    color:var(--text);
    font-size:48px;
    font-weight:700;
    margin-bottom:18px;
    font-family:var(--heading-font);
}

.privacy-hero p{
    max-width:820px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/*========================
        MAIN SECTION
========================*/

.privacy-content{
    padding:70px 0;
}

/*========================
        CARD
========================*/

.privacy-card{

    background:var(--white);

    border-radius:18px;

    padding:40px;

    margin-bottom:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border:1px solid var(--border);

    transition:.35s;

    

}

.privacy-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

/*========================
        HEADING
========================*/


/* privacy policy policy - 2 */
/*=====================================
Privacy Policy
======================================*/

.privacy-policy-section{
    padding:90px 0;
    background:#fff;
}

.privacy-container{
    width:100%;
    max-width:1340px;
    margin:auto;
    padding:0 45px;
    box-sizing:border-box;
}

/*=========================
Page Header
=========================*/

.page-header{
    text-align:left !important;
    margin-bottom:60px;
}

.page-header h1{
    color:#002c6d;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.page-header h1::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#d4a03a;
    margin-top:18px;
}

.page-header p{
    max-width:100%;
    margin:25px 0 0;
    color:#555;
    font-size:17px;
    line-height:1.9;
}

/*=========================
Policy Block
=========================*/

.policy-block{

    margin-bottom:60px;

}

.policy-block:last-child{

    margin-bottom:0;

}

/*=========================
Heading
=========================*/

.policy-block h2{

    color:#002c6d;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;

}

.policy-block h4{

    color:#d4a03a;
    font-size:24px;
    font-weight:600;
    margin:30px 0 18px;

}

/*=========================
Paragraph
=========================*/

.policy-block p{

    color:#555;
    font-size:17px;
    line-height:2;
    margin-bottom:18px;

}

/*=========================
List
=========================*/

.policy-block ul{

    margin:20px 0;
    padding:0;
    list-style:none;

}

.policy-block ul li{

    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#555;
    font-size:17px;
    line-height:1.9;

}

.policy-block ul li::before{

    content:"";
    position:absolute;
    left:0;
    top:12px;
    width:8px;
    height:8px;
    background:#d4a03a;
    border-radius:50%;

}

/*=========================
Links
=========================*/

.policy-block a{

    color:#002c6d;
    text-decoration:none;
    font-weight:600;

}

.policy-block a:hover{

    color:#d4a03a;

}

/*=========================
Strong
=========================*/

.policy-block strong{

    color:#002c6d;

}

/*=========================
Responsive
=========================*/

@media(max-width:1200px){

    .privacy-container{

        padding:0 30px;

    }

}

@media(max-width:991px){

    .page-header h1{

        font-size:42px;

    }

    .policy-block h2{

        font-size:28px;

    }

}

@media(max-width:767px){

    .privacy-policy-section{

        padding:60px 0;

    }

    .privacy-container{

        padding:0 18px;

    }

    .page-header h1{

        font-size:34px;

    }

    .policy-block h2{

        font-size:24px;

    }

    .policy-block h4{

        font-size:20px;

    }

    .policy-block p,
    .policy-block li{

        font-size:15px;

    }

}



