/*==================================================
ROOT
==================================================*/

:root{

    /* Colors */

    --primary:#0d2f52;
    --primary-dark:#082541;
    --accent:#ffd400;
    --white:#ffffff;
    --text:#1d2d44;
    --text-light:#5f6b7a;
    --border:#e5e7eb;
    --footer-border:rgba(255,255,255,.15);

    /* Fonts */

    --heading-font:"Poppins",sans-serif;
    --body-font:"Poppins",sans-serif;

    /* Layout */

    --container-width:1320px;

    /* Animation */

    --transition:.35s ease;

}

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:var(--body-font);
    color:var(--text);
    background:#fff;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

img{

    display:block;
    max-width:100%;

}

.f27-container{

    width:min(100% - 40px,var(--container-width));
    margin:auto;

}


/*==================================================
HEADER
==================================================*/

.f27-header{

    position:sticky;
    top:0;
    left:0;

    width:100%;

    background:#fff;

    border-bottom:1px solid var(--border);

    z-index:999;

}

.f27-header .f27-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:95px;

}


/*==================================================
LOGO
==================================================*/

.f27-logo{

    display:flex;

    align-items:center;

    gap:15px;

    color:var(--primary);

}

.f27-logo img{

    width:65px;

}

.f27-logo-text{

    font-size:15px;

    font-weight:700;

    color:var(--primary);

    line-height:1.4;

}


/*==================================================
NAVBAR
==================================================*/

.f27-navbar ul{

    display:flex;

    align-items:center;

    gap:10px;

}
.f27-dropdown-menu{

    display:block !important;

}

.f27-dropdown-menu li{

    display:block !important;

}

.f27-navbar li{

    position:relative;

}

.f27-navbar>a{

    display:flex;

}

.f27-navbar a{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:11px 22px;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    border-radius:12px;

    transition:var(--transition);

}

.f27-navbar a:hover,
.f27-navbar a.active{

    background:var(--primary);

    color:#fff;

}


/*==================================================
PREMIUM DROPDOWN
==================================================*/

.f27-dropdown{

    position:relative;

}

.f27-dropdown>a i{

    font-size:11px;

    transition:.35s;

}

.f27-dropdown:hover>a{

    background:var(--primary);

    color:#fff;

}

.f27-dropdown:hover>a i{

    transform:rotate(180deg);

}


/* Dropdown Box */
.f27-dropdown-menu{

    position:absolute;

    top:115%;

    left:0;

    width:300px;

    background:#fff;

    border-radius:14px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    border:1px solid #eee;

    padding:12px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    z-index:999;

}

/* Show */

.f27-dropdown:hover .f27-dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}


/* Items */
.f27-dropdown-menu li{

    display:block;

    width:100%;

}
.f27-dropdown-menu a{

    display:block;

    width:100%;

    padding:14px 22px;

    font-size:15px;

    font-weight:500;

    color:var(--primary);

    border-radius:0;

}

/* Hover */
.f27-dropdown-menu a:hover{

    background:#f5f8fc;

    color:var(--primary);

    padding-left:28px;

}

/* Left Border Animation */

.f27-dropdown-menu a::before{

    content:"";

    width:4px;

    height:0;

    background:var(--accent);

    border-radius:10px;

    margin-right:12px;

    transition:.3s;

}

.f27-dropdown-menu a:hover::before{

    height:18px;

}


/*==================================================
MENU BUTTON
==================================================*/

.f27-menu-btn{

    display:none;

    border:none;

    background:none;

    font-size:28px;

    color:var(--primary);

    cursor:pointer;

}
/*==================================================
RESPONSIVE NAVIGATION
==================================================*/

@media (max-width:991px){

    /* Header */

    .f27-header .f27-container{

        min-height:85px;

    }
.f27-dropdown-menu{

    opacity:1 !important;

    visibility:visible !important;

    transform:none !important;

}
    /* Menu Button */

    .f27-menu-btn{

        display:flex;

        align-items:center;

        justify-content:center;

        width:46px;

        height:46px;

        border-radius:10px;

        background:var(--primary);

        color:#fff;

        font-size:20px;

    }

    /* Mobile Navbar */

    .f27-navbar{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#fff;

        border-top:1px solid var(--border);

        box-shadow:0 15px 30px rgba(0,0,0,.08);

        max-height:0;

        overflow:hidden;

        transition:.4s ease;

    }

    .f27-navbar.active{

        max-height:700px;

    }

    .f27-navbar ul{

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        /* padding:20px; */

    }

    .f27-navbar li{

        width:100%;

        border-bottom:1px solid #f1f1f1;

    }

    .f27-navbar li:last-child{

        border-bottom:none;

    }

    .f27-navbar a{

        width:100%;

        justify-content:space-between;

        /* padding:18px 5px; */

        border-radius:0;

        font-size:15px;

    }

    .f27-navbar a:hover,
    .f27-navbar a.active{

        background:transparent;

        color:var(--primary);

    }

    /*=====================================
    MOBILE DROPDOWN
    =====================================*/

    .f27-dropdown-menu{

        position:static;

        width:100%;

        opacity:1;

        visibility:visible;

        transform:none;

        display:none;

        box-shadow:none;

        border:none;

        border-left:3px solid var(--accent);

        border-radius:0;

        margin-bottom:10px;

        padding:0 0 0 15px;

    }
    .f27-dropdown-menu{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}
.f27-dropdown.active .f27-dropdown-menu{

    display:block !important;

    opacity:1 !important;

    visibility:visible !important;

    max-height:500px;

}
    .f27-dropdown-menu li{

        border:none;

    }

    .f27-dropdown-menu a{

        /* padding:14px 10px; */

        font-size:14px;

        font-weight:500;

    }

    .f27-dropdown-menu a::before{

        display:none;

    }

    .f27-dropdown-menu a:hover{

        padding-left:10px;

        background:#f8f8f8;

    }

    .f27-dropdown.active > a i{

        transform:rotate(180deg);

    }

}


/*==================================================
TABLET
==================================================*/

@media (max-width:768px){

    .f27-header .f27-container{

        min-height:80px;

    }

    .f27-logo{

        gap:10px;

    }

    .f27-logo img{

        width:50px;

    }

    .f27-logo-text{

        font-size:13px;

        line-height:1.4;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .f27-container{

        width:min(100% - 24px,var(--container-width));

    }

    .f27-header .f27-container{

        min-height:75px;

    }
.f27-logo img{

    width:36px;

}

.f27-logo{

    gap:15px;

}

.f27-logo-text{

    font-size:14px;

    line-height:1.2;

    max-width:170px;

}

    .f27-menu-btn{

        width:42px;

        height:42px;

        font-size:18px;

    }

}
/*==================================================
FOOTER
==================================================*/

.f27-footer{

    background:var(--primary);

    color:#fff;

    padding:70px 0 25px;

}

.f27-footer-grid{

    display:grid;

    grid-template-columns:1.5fr 1fr 1fr 1fr;

    gap:45px;

}

/*==================================
Heading
==================================*/

.f27-footer h3{

    color:var(--accent);

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

}

/*==================================
About
==================================*/

.f27-footer-about img{

    width:95px;

    margin-bottom:20px;

    border-radius:8px;

}

.f27-footer-about h4{

    font-size:18px;

    line-height:1.5;

    margin-bottom:25px;

    color:#fff;

}

.f27-footer-about ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.f27-footer-about li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    font-size:15px;

    line-height:1.7;

}

.f27-footer-about i{

    color:var(--accent);

    margin-top:4px;

    font-size:15px;

}

/*==================================
Links
==================================*/

.f27-footer-links ul{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.f27-footer-links a{

    color:#fff;

    font-size:15px;

    transition:var(--transition);

    display:inline-flex;

    align-items:center;

}





.f27-footer-links a:hover{

    color:var(--accent);

    transform:translateX(6px);

}

/*==================================
Bottom
==================================*/

.f27-footer-bottom{

    margin-top:55px;

    padding-top:25px;

    border-top:1px solid var(--footer-border);

    text-align:center;

}

.f27-footer-bottom p{

    font-size:15px;

    line-height:1.8;

    color:#fff;

}

/*==================================================
FOOTER RESPONSIVE
==================================================*/

@media(max-width:991px){

    .f27-footer{

        padding:60px 0 25px;

    }

    .f27-footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

}

@media(max-width:768px){

    .f27-footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .f27-footer h3{

        font-size:19px;

    }

    .f27-footer-about h4{

        font-size:17px;

    }

    .f27-footer-about li{

        font-size:15px;

    }

    .f27-footer-links a{

        font-size:15px;

    }

}

@media(max-width:576px){

    .f27-footer{

        padding:50px 0 20px;

    }

    .f27-footer-grid{

        gap:30px;

    }

    .f27-footer-about img{

        width:80px;

    }

    .f27-footer h3{

        font-size:18px;

    }

    .f27-footer-about h4{

        font-size:16px;

    }

    .f27-footer-bottom{

        margin-top:40px;

    }

    .f27-footer-bottom p{

        font-size:14px;

    }

}
/*====================================
REMOVE UNDERLINE FROM ALL LINKS
====================================*/

a,
a:hover,
a:focus,
a:active,
a:visited{

    text-decoration:none !important;

}

/* Navbar */

.f27-navbar a,
.f27-navbar a:hover,
.f27-navbar a:focus,
.f27-navbar a:visited{

    text-decoration:none !important;

}

/* Footer */

.f27-footer a,
.f27-footer a:hover,
.f27-footer a:focus,
.f27-footer a:visited{

    text-decoration:none !important;
    margin-bottom:10px;

}

.f27-footer-links li{
    margin-bottom:10px;
}











/* home page  */

/* section one  */

/*==============================
        HERO SECTION
==============================*/

.f27-hero-section{
    position: relative;
    background: url("image/home-ng-img.jpg") center center/cover no-repeat;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 180px;
}

.f27-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(9,40,76,.96) 0%,
        rgba(9,40,76,.90) 35%,
        rgba(9,40,76,.55) 65%,
        rgba(9,40,76,.20) 100%
    );
}

.f27-hero-section .container{
    position: relative;
    z-index: 2;
}

.f27-hero-content{
    max-width: 620px;
}

.f27-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 25px;
}

.f27-subtitle i{
    font-size:18px;
}

.f27-hero-content h1{
    font-size: 40px;
    line-height: 1.1;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.f27-hero-content h1 span{
    display:block;
    color: var(--accent);
}

.f27-hero-content p{
    color: rgba(255,255,255,.90);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 560px;
}

/*==============================
          BUTTONS
==============================*/

.f27-btn-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.f27-btn-primary,
.f27-btn-outline-1{

    text-decoration:none;
    padding:16px 34px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    transition:.35s;

}

.f27-btn-primary{

    background:var(--accent);
    color:#111;

}

.f27-btn-primary:hover{

    background:#ffbf00;
    color:#111;
    transform:translateY(-3px);

}

.f27-btn-primary i{

    margin-left:10px;

}

.f27-btn-outline-1{

    border:2px solid rgba(255,255,255,.5);
    color:#fff;

}

.f27-btn-outline-1:hover{

    background:#fff;
    color:var(--primary);

}

/*==============================
          HERO IMAGE
==============================*/

.f27-hero-image{

    text-align:right;

}

.f27-hero-image img{

    max-width:100%;
    width:620px;

}

/*==============================
      COUNTER SECTION
==============================*/

.f27-counter-section{

    margin-top:-90px;
    position:relative;
    z-index:20;

}

.f27-counter-section .row{

    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    overflow:hidden;

}

.f27-counter-box{

    display:flex;
    align-items:center;
    gap:20px;
    padding:38px 30px;
    border-right:1px solid #ececec;
    height:100%;

}

.f27-counter-icon{

    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--accent);
    font-size:42px;

}

.f27-counter-box h2{

    font-size:30px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:4px;

}

.f27-counter-box p{

    margin:0;
    color:#666;
    font-size:16px;
    font-weight:500;

}

/*==============================
        HOVER EFFECT
==============================*/

.f27-counter-box:hover{

    background:#fafafa;

}

.f27-counter-box:hover .f27-counter-icon{

    transform:scale(1.08);
    transition:.3s;

}

/*=====================================
        LARGE SCREEN
=====================================*/

@media (max-width:1400px){

    .f27-hero-content h1{
        font-size:62px;
    }

    .f27-hero-image img{
        width:560px;
    }

}


/*=====================================
          LAPTOP
=====================================*/

@media (max-width:1199px){

    .f27-hero-section{

        min-height:650px;
        padding:90px 0 150px;

    }

    .f27-hero-content h1{

        font-size:54px;

    }

    .f27-hero-content p{

        font-size:17px;

    }

    .f27-hero-image img{

        width:500px;

    }

    .f27-counter-box{

        padding:30px 20px;

    }

    .f27-counter-box h2{

        font-size:38px;

    }

}


/*=====================================
          TABLET
=====================================*/

@media (max-width:991px){

    .f27-hero-section{

        padding:80px 0 140px;
        text-align:center;
        min-height:auto;

    }

    .f27-hero-content{

        max-width:100%;
        margin-bottom:50px;

    }

    .f27-hero-content h1{

        font-size:48px;

    }

    .f27-hero-content p{

        max-width:100%;
        margin:auto;
        margin-bottom:35px;

    }

    .f27-btn-group{

        justify-content:center;

    }

    .f27-hero-image{

        text-align:center;

    }

    .f27-hero-image img{

        width:430px;
        max-width:100%;

    }

    .f27-counter-section{

        margin-top:-70px;

    }

    .f27-counter-box{

        border-right:none;
        border-bottom:1px solid #ececec;

    }

}


/*=====================================
          MOBILE
=====================================*/

@media (max-width:767px){

    .f27-hero-section{

        padding:70px 0 120px;
        background-position:center;

    }

    .f27-subtitle{

        font-size:14px;

    }

    .f27-hero-content h1{

        font-size:40px;
        line-height:1.2;

    }

    .f27-hero-content p{

        font-size:16px;
        line-height:1.8;

    }

    .f27-btn-group{

        flex-direction:column;
        align-items:center;
        gap:15px;

    }

    .f27-btn-primary,
    .f27-btn-outline{

        width:100%;
        max-width:320px;
        text-align:center;

    }

    .f27-hero-image img{

        width:350px;

    }

    .f27-counter-section{

        margin-top:-50px;

    }

    .f27-counter-box{

        justify-content:center;
        text-align:center;
        flex-direction:column;
        padding:30px 20px;

    }

    .f27-counter-icon{

        margin-bottom:10px;

    }

    .f27-counter-box h2{

        font-size:34px;

    }

}


/*=====================================
        SMALL MOBILE
=====================================*/

@media (max-width:575px){

    .f27-hero-section{

        padding:60px 0 100px;

    }

    .f27-subtitle{

        font-size:13px;

    }

    .f27-hero-content h1{

        font-size:32px;

    }

    .f27-hero-content p{

        font-size:15px;

    }

    .f27-hero-image img{

        width:280px;

    }

    .f27-counter-section{

        margin-top:-35px;

    }

    .f27-counter-box{

        padding:25px 15px;

    }

    .f27-counter-icon{

        width:55px;
        height:55px;
        font-size:32px;

    }

    .f27-counter-box h2{

        font-size:28px;

    }

    .f27-counter-box p{

        font-size:15px;

    }

}


/*=====================================
      EXTRA SMALL DEVICES
=====================================*/

@media (max-width:380px){

    .f27-hero-content h1{

        font-size:28px;

    }

    .f27-btn-primary,
    .f27-btn-outline{

        font-size:15px;
        padding:14px 18px;

    }

    .f27-hero-image img{

        width:240px;

    }

}
/* section two  */
/*=========================================
      BUSINESS DIVISION SECTION
=========================================*/

.f27-division-section{
    padding:100px 0;
    background:#f8fafc;
}

.f27-section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 10px;
}

.f27-section-heading span{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.f27-section-heading h2{
    font-family:var(--heading-font);
    font-size:40px;
    color:var(--primary);
    font-weight:700;
    line-height:1.25;
    margin:0;
}


/*=========================================
              CARD
=========================================*/

.f27-division-card{

    background:#fff;
    border-radius:18px;
    padding:45px 30px;
    text-align:center;
    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #eef2f7;

}

.f27-division-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}


/*=========================================
            ICON
=========================================*/

.f27-division-icon{

    width:90px;
    height:90px;

    margin:0 auto 30px;

    background:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.f27-division-icon i{

    color:var(--accent);

    font-size:38px;

}

.f27-division-card:hover .f27-division-icon{

    transform:rotateY(180deg);

    background:var(--accent);

}

.f27-division-card:hover .f27-division-icon i{

    color:var(--primary);

}


/*=========================================
            CONTENT
=========================================*/

.f27-division-card h3{

    font-size:24px;

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.f27-division-card p{

    color:#6b7280;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}

.f27-division-card a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.f27-division-card a i{

    margin-left:8px;

    transition:.3s;

}

.f27-division-card:hover a{

    color:var(--accent);

}

.f27-division-card:hover a i{

    transform:translateX(6px);

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:1199px){

    .f27-section-heading h2{

        font-size:36px;

    }

}

@media(max-width:991px){

    .f27-division-section{

        padding:80px 0;

    }

    .f27-section-heading{

        margin-bottom:45px;

    }

    .f27-section-heading h2{

        font-size:32px;

    }

    .f27-division-card{

        padding:35px 25px;

    }

}

@media(max-width:767px){

    .f27-division-section{

        padding:70px 0;

    }

    .f27-section-heading h2{

        font-size:28px;

    }

    .f27-section-heading span{

        font-size:13px;

    }

    .f27-division-card{

        padding:30px 22px;

    }

    .f27-division-icon{

        width:75px;
        height:75px;

    }

    .f27-division-icon i{

        font-size:30px;

    }

    .f27-division-card h3{

        font-size:22px;

    }

    .f27-division-card p{

        font-size:15px;

    }

}

@media(max-width:575px){

    .f27-section-heading{

        margin-bottom:35px;

    }

    .f27-section-heading h2{

        font-size:24px;

    }

    .f27-division-card{

        border-radius:15px;
        padding:25px 18px;

    }

    .f27-division-icon{

        width:65px;
        height:65px;

        margin-bottom:20px;

    }

    .f27-division-icon i{

        font-size:26px;

    }

    .f27-division-card h3{

        font-size:20px;

    }

    .f27-division-card p{

        font-size:14px;
        line-height:1.7;

    }

    .f27-division-card a{

        font-size:15px;

    }

}
/*=========================================
        WHY CHOOSE SECTION
=========================================*/

.f27-why-section{
    background: var(--primary);
    padding:80px 0;
}

.f27-title{
    text-align:center;
    margin-bottom:60px;
}

.f27-title span{
    color:#fff;
    font-size:40px;
    font-weight:700;
    /* text-transform:uppercase; */
    letter-spacing:1px;
}

.f27-line{
    width:60px;
    height:3px;
    background:var(--accent);
    margin:12px auto 0;
    border-radius:10px;
}

.f27-why-box{
    text-align:center;
    padding:10px 25px;
    border-right:1px solid rgba(255,255,255,.12);
    transition:.35s;
}

.f27-why-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:.35s;
}

.f27-why-icon i{
    font-size:40px;
    color:var(--accent);
}

.f27-why-box h3{
    color:var(--accent);
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.f27-why-box p{
    color:rgba(255,255,255,.85);
    font-size:16px;
    line-height:1.8;
    margin:0;
}

.f27-why-box:hover{
    transform:translateY(-8px);
}

.f27-why-box:hover .f27-why-icon{
    background:var(--accent);
    transform:rotateY(180deg);
}

.f27-why-box:hover .f27-why-icon i{
    color:var(--primary);
}


/*=========================================
        INDUSTRIES SECTION
=========================================*/

.f27-industries-section{
    background:#fff;
    padding:80px 0;
}

.f27-title.dark span{
    color:var(--primary);
}

.f27-industry-box{
    text-align:center;
    padding:25px 10px;
    transition:.35s;
}

.f27-industry-box i{
    font-size:55px;
   color:var(--accent);
    margin-bottom:18px;
    transition:.35s;
}

.f27-industry-box h4{
    font-size:19px;
    color:var(--primary);
    font-weight:600;
    margin:0;
}

.f27-industry-box:hover{
    transform:translateY(-8px);
}

.f27-industry-box:hover i{
    color:var(--accent);
    transform:scale(1.15);
}

.f27-industry-box:hover h4{
    color:var(--accent);
}


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px){

    .f27-why-box h3{
        font-size:22px;
    }

    .f27-industry-box i{
        font-size:48px;
    }

}


@media(max-width:991px){

    .f27-why-section,
    .f27-industries-section{
        padding:70px 0;
    }

    .f27-why-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.12);
        padding:35px 20px;
    }

    .f27-why-box.border-0{
        border-bottom:none;
    }

}


@media(max-width:767px){

    .f27-title{
        margin-bottom:45px;
    }

    .f27-title span{
        font-size:15px;
    }

    .f27-why-icon{
        width:75px;
        height:75px;
    }

    .f27-why-icon i{
        font-size:32px;
    }

    .f27-why-box h3{
        font-size:20px;
    }

    .f27-why-box p{
        font-size:15px;
    }

    .f27-industry-box{
        margin-bottom:25px;
    }

    .f27-industry-box i{
        font-size:42px;
    }

    .f27-industry-box h4{
        font-size:17px;
    }

}


@media(max-width:575px){

    .f27-why-section,
    .f27-industries-section{
        padding:60px 0;
    }

    .f27-title{
        margin-bottom:35px;
    }

    .f27-title span{
        font-size:14px;
    }

    .f27-line{
        width:45px;
    }

    .f27-why-box{
        padding:25px 15px;
    }

    .f27-why-icon{
        width:65px;
        height:65px;
        margin-bottom:18px;
    }

    .f27-why-icon i{
        font-size:28px;
    }

    .f27-why-box h3{
        font-size:18px;
    }

    .f27-why-box p{
        font-size:14px;
        line-height:1.7;
    }

    .f27-industry-box{
        padding:18px 10px;
    }

    .f27-industry-box i{
        font-size:36px;
    }

    .f27-industry-box h4{
        font-size:15px;
    }

}
/*====================================
        FEATURED PROJECTS
====================================*/

.f27-project-section{
    padding:50px 0;
    background:#fff;
}

.f27-project-heading{
    text-align:center;
    margin-bottom:55px;
}

.f27-project-heading span{
    color:var(--primary);
    font-size:40px;
    font-weight:700;
    
}

.f27-project-line{
    width:55px;
    height:3px;
    background:var(--accent);
    margin:12px auto 0;
    border-radius:20px;
}

.f27-project-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.f27-project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.f27-project-img{

    overflow:hidden;

}

.f27-project-img img{

    width:100%;

    height:230px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.f27-project-card:hover img{

    transform:scale(1.08);

}

.f27-project-content{

    padding:28px;

    text-align:center;

}

.f27-project-content h3{

    font-size:24px;

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.f27-project-content p{

    color:#6b7280;

    font-size:16px;

    line-height:1.8;

    margin-bottom:22px;

}

.f27-project-content a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.f27-project-content a i{

    margin-left:8px;

    transition:.3s;

}

.f27-project-card:hover a{

    color:var(--accent);

}

.f27-project-card:hover a i{

    transform:translateX(5px);

}
/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1199px){

    .f27-project-content h3{

        font-size:22px;

    }

}

@media(max-width:991px){

    .f27-project-section{

        padding:80px 0;

    }

}

@media(max-width:767px){

    .f27-project-section{

        padding:70px 0;

    }

    .f27-project-heading{

        margin-bottom:40px;

    }

    .f27-project-img img{

        height:220px;

    }

    .f27-project-content{

        padding:24px;

    }

    .f27-project-content h3{

        font-size:21px;

    }

    .f27-project-content p{

        font-size:15px;

    }

}

@media(max-width:575px){

    .f27-project-section{

        padding:60px 0;

    }

    .f27-project-img img{

        height:200px;

    }

    .f27-project-content{

        padding:20px;

    }

    .f27-project-content h3{

        font-size:19px;

    }

    .f27-project-content p{

        font-size:14px;

        line-height:1.7;

    }

    .f27-project-content a{

        font-size:15px;

    }

}
/*=====================================
            CTA SECTION
======================================*/

.f27-cta-section{

    position:relative;

    padding:70px 0;



}

.f27-cta-overlay{

    position:absolute;

    inset:0;

    background:#051627;

}

.f27-cta-section .container{

    position:relative;

    z-index:2;

}

.f27-cta-content span{

    display:block;

    color:var(--accent);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:12px;

}

.f27-cta-content h2{

    color:#fff;

    font-size:30px;

    font-weight:700;

    line-height:1.35;

    margin:0;
    

}

/*=========================
        BUTTONS
=========================*/

.f27-cta-btn-group{

    display:flex;

    justify-content:flex-end;

    gap:18px;

    flex-wrap:wrap;

}

.f27-cta-btn-primary,
.f27-cta-btn-outline{

    text-decoration:none;

    padding:18px 34px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.f27-cta-btn-primary{

    background:var(--accent);

    color:#111;

}

.f27-cta-btn-primary:hover{

    background:#ffbf00;

    color:#111;

    transform:translateY(-3px);

}

.f27-cta-btn-primary i{

    margin-left:10px;

}

.f27-cta-btn-outline{

    border:2px solid rgba(255,255,255,.45);

    color:#fff;

}

.f27-cta-btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

.f27-cta-btn-outline i{

    margin-right:10px;

}
/*======================================
        Large Devices
======================================*/

@media (max-width:1199px){

    .f27-cta-content h2{
        font-size:28px;
    }

    .f27-cta-btn-primary,
    .f27-cta-btn-outline{
        padding:16px 28px;
        font-size:15px;
    }

}


/*======================================
            Tablet
======================================*/

@media (max-width:991px){

    .f27-cta-section{
        padding:60px 0;
        text-align:center;
    }

    .f27-cta-content{
        margin-bottom:35px;
    }

    .f27-cta-content h2{
        font-size:26px;
    }

    .f27-cta-btn-group{
        justify-content:center;
    }

}


/*======================================
            Mobile
======================================*/

@media (max-width:767px){

    .f27-cta-section{
        padding:50px 0;
    }

    .f27-cta-content span{
        font-size:13px;
    }

    .f27-cta-content h2{
        font-size:22px;
        line-height:1.5;
    }

    .f27-cta-btn-group{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .f27-cta-btn-primary,
    .f27-cta-btn-outline{
        width:100%;
        max-width:320px;
        text-align:center;
        padding:15px 20px;
    }

}


/*======================================
        Small Mobile
======================================*/

@media (max-width:575px){

    .f27-cta-section{
        padding:40px 0;
    }

    .f27-cta-content h2{
        font-size:20px;
    }

    .f27-cta-btn-primary,
    .f27-cta-btn-outline{
        font-size:14px;
        padding:14px 18px;
        border-radius:8px;
    }

}


/* construction work in progress */
.f27-work-progress{

    padding:100px 0;

    background:#f8fafc;

}

.f27-work-content span{

    color:var(--accent);

    font-weight:700;

    display:block;

    margin-bottom:15px;

}

.f27-work-content h1{

    font-size:52px;

    color:var(--primary);

    margin-bottom:20px;

}

.f27-work-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.f27-progress-list div{

    margin-bottom:15px;

    font-weight:600;

}

.f27-progress-list i{

    color:var(--accent);

    margin-right:10px;

}

.f27-work-image img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}
/* about section  */
/* one section  */
/*====================================
        ABOUT HERO SECTION
====================================*/

.f27-about-hero{
    position:relative;
    padding:100px 0;
    min-height:650px;
    display:flex;
    align-items:center;
    background:url("/image/about-bg-img.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.f27-about-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,37,65,.96) 0%,
        rgba(8,37,65,.90) 35%,
        rgba(8,37,65,.20) 65%,
        rgba(8,37,65,.25) 100%
    );
}

.f27-about-hero .container{
    position:relative;
    z-index:2;
}


/*==========================
      Content
==========================*/

.f27-about-tag{

    display:inline-block;

    color:var(--accent);

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.f27-about-content h1{

    font-size:40px;

    color:#fff;

    font-weight:700;

    line-height:1.15;

    margin-bottom:22px;

}

.f27-about-content h1 span{

    display:block;

    color:var(--accent);

}

.f27-about-content p{

    color:rgba(255,255,255,.88);

    font-size:16px;

    line-height:1.9;

    max-width:620px;

}

/*==========================
      Counter
==========================*/

.f27-about-counter{

    margin-top:10px;
    text-align: center;

}

.f27-about-counter i{

    color:var(--accent);

    font-size:30px;

    margin-bottom:12px;

}

.f27-about-counter h3{

    color:var(--accent);

    font-size:22px;

    font-weight:700;

    margin-bottom:6px;

}

.f27-about-counter span{

    color:#fff;

    font-size:13px;

    line-height:1.5;

    display:block;

}

/*==========================
        Image
==========================*/

.f27-about-image{

    text-align:right;

}

.f27-about-image img{

    width:100%;

    max-width:650px;

    animation:f27Float 5s ease-in-out infinite;

}

@keyframes f27Float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1199px){

    .f27-about-content h1{

        font-size:54px;

    }

    .f27-about-image img{

        max-width:550px;

    }

}

@media(max-width:991px){

    .f27-about-hero{

        padding:80px 0;

        text-align:center;

        min-height:auto;

    }

    .f27-about-content{

        margin-bottom:50px;

    }

    .f27-about-content h1{

        font-size:46px;

    }

    .f27-about-content p{

        max-width:100%;

        margin:auto;

    }

    .f27-about-image{

        text-align:center;

    }

    .f27-about-image img{

        max-width:430px;

    }

    .f27-breadcrumb{

        justify-content:center;

    }

    .f27-about-counter{

        margin-top:30px;

    }

}

@media(max-width:767px){

    .f27-about-hero{

        padding:70px 0;

    }

    .f27-about-content h1{

        font-size:38px;

    }

    .f27-about-content p{

        font-size:16px;

    }

    .f27-about-counter{

        text-align:center;

    }

    .f27-about-counter h3{

        font-size:28px;

    }

    .f27-about-counter span{

        font-size:13px;

    }

}

@media(max-width:575px){

    .f27-about-hero{

        padding:60px 0;

    }

    .f27-about-content h1{

        font-size:30px;

        line-height:1.3;

    }

    .f27-about-content p{

        font-size:15px;

        line-height:1.8;

    }

    .f27-about-image img{

        max-width:280px;

    }

    .f27-about-counter{

        margin-top:25px;

    }

    .f27-about-counter i{

        font-size:24px;

    }

    .f27-about-counter h3{

        font-size:24px;

    }

}

/* ---------------------------------------------------OUR JOURNEY PAGE PART 1 CSS------------------------------------------------- */

/*==========================
      OUR JOURNEY
==========================*/

.journey-section{
    padding:80px 0;
    background:#f8f6f6;
}

.container{
    width:100%;
    max-width:var(--container-width);
    margin:auto;
    padding:0 15px;
}

.journey-section .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/*==========================
      LEFT
==========================*/

.journey-left{
    width:42%;
}

.sub-title{
    display:inline-block;
    font-size:15px;
    font-weight:600;
    color:var(--primary);
    margin-bottom:18px;
}

.journey-left h2{
    font-family:var(--heading-font);
    font-size:22px;
    font-weight:600;
    line-height:1.8;
    color:var(--text);
    margin-bottom:20px;
}

.journey-left p{
    font-family:var(--body-font);
    color:var(--text-light);
    line-height:1.9;
    font-size:15px;
}


/*==========================
      RIGHT
==========================*/

.journey-right{
    width:58%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.journey-box{
    text-align:center;
    transition:var(--transition);
}

.journey-box:hover{
    transform:translateY(-8px);
}

.journey-box .icon{
    width:72px;
    height:72px;
    margin:auto;
    margin-bottom:18px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.journey-box svg{
    width:44px;
    height:44px;
}

.journey-box h3{
    font-family:var(--heading-font);
    color:var(--primary);
    font-size:28px;
    font-weight:700;
    margin-bottom:6px;
}

.journey-box p{
    font-family:var(--body-font);
    color:var(--text-light);
    font-size:14px;
    line-height:24px;
}



/*==========================
      LAPTOP
==========================*/

@media(max-width:1200px){

.journey-section .container{

gap:40px;

}

.journey-right{

gap:18px;

}

.journey-box h3{

font-size:24px;

}

}



/*==========================
      TABLET
==========================*/

@media(max-width:991px){

.journey-section{

padding:70px 0;

}

.journey-section .container{

flex-direction:column;

text-align:center;

}

.journey-left{

width:100%;

}

.journey-right{

width:100%;

grid-template-columns:repeat(2,1fr);

margin-top:20px;

}

}



/*==========================
      MOBILE
==========================*/

@media(max-width:576px){

.journey-section{

padding:55px 0;

}

.sub-title{

font-size:14px;

}

.journey-left h2{

font-size:19px;

line-height:1.7;

}

.journey-left p{

font-size:14px;

}

.journey-right{

grid-template-columns:1fr;

gap:35px;

}

.journey-box .icon{

width:65px;

height:65px;

}

.journey-box svg{

width:40px;

height:40px;

}

.journey-box h3{

font-size:24px;

}

.journey-box p{

font-size:14px;

}

}

/* ------------------------------------------OUR JOURNEY PAGE  PART 2 , VISION PAGE ----------------------------------------- */

:root{

    /* Colors */
    --primary:#0d2f52;
    --primary-dark:#082541;
    --accent:#ffd400;
    --white:#ffffff;
    --text:#1d2d44;
    --text-light:#5f6b7a;
    --border:#e5e7eb;
    --footer-border:rgba(255,255,255,.15);

    /* Fonts */
    --heading-font:"Poppins",sans-serif;
    --body-font:"Poppins",sans-serif;

    /* Container */
    --container-width:1320px;

    /* Transition */
    --transition:all .3s ease;

}

/*========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--body-font);
    background:var(--white);
}

.container{
    width:100%;
    max-width:var(--container-width);
    margin:auto;
    padding:0 15px;
}

/*========================*/

.mission-section{
    padding:40px 0;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:var(--text);
    font-family:var(--heading-font);
}

.mission-wrapper{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.mission-box{

    background:var(--primary);
    padding:28px;
    border-radius:10px;
    transition:var(--transition);

}

.mission-box:hover{

    transform:translateY(-8px);

}

.box-head{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;

}

.icon{

    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--accent);
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;

}

.icon i{

    font-size:24px;
    color:var(--primary);

}

.box-head h3{

    color:var(--white);
    font-size:24px;
    font-weight:600;

}

.mission-box p{

    color:#d9e5f1;
    font-size:16px;
    line-height:1.9;

}

/*========================
Responsive
========================*/

@media(max-width:991px){

.mission-wrapper{

grid-template-columns:1fr;

}

.section-title h2{

font-size:30px;

}

}

@media(max-width:768px){

.mission-section{

padding:70px 0;

}

.mission-box{

padding:25px;

}

}

@media(max-width:576px){

.section-title{

margin-bottom:30px;

}

.section-title h2{

font-size:26px;

}

.box-head{

gap:12px;

}

.icon{

width:45px;
height:45px;

}

.icon i{

font-size:20px;

}

.box-head h3{

font-size:20px;

}

.mission-box p{

font-size:14px;
line-height:1.8;

}

}

/* ------------------------------------------OUR JOURNEY PAGE  PART 3 , CORE VALUES PAGE ----------------------------------------- */

/*==============================
        CORE VALUES
===============================*/

.core-values{

    padding:40px 0;
    background:var(--white);

}

.section-heading{

    text-align:center;
    margin-bottom:55px;

}

.section-heading span{

    display:block;
    font-size:40px;
    font-weight:700;
    color:var(--primary);
    letter-spacing:2px;
    text-transform:uppercase;
    font-family:var(--heading-font);

}

.heading-line{

    width:80px;
    height:3px;
    background:var(--accent);
    margin:15px auto 0;
    border-radius:50px;

}

.value-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:14px;
    padding:38px 28px;
    text-align:center;
    height:100%;
    transition:var(--transition);
    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.value-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.value-icon{

    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:rgba(255,212,0,.10);
    display:flex;
    align-items:center;
    justify-content:center;

}

.value-icon i{

    font-size:42px;
    color:var(--accent);

}

.value-card h3{

    font-size:24px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:18px;
    font-family:var(--heading-font);

}

.value-card p{

    color:var(--text-light);
    font-size:17px;
    line-height:1.8;
    margin:0;

}

/*==============================
      RESPONSIVE
===============================*/

@media(max-width:1199px){

.value-card{

padding:35px 25px;

}

.value-card h3{

font-size:26px;

}

}

@media(max-width:991px){

.core-values{

padding:80px 0;

}

.section-heading{

margin-bottom:45px;

}

}

@media(max-width:767px){

.core-values{

padding:70px 0;

}

.value-card{

padding:30px 22px;

}

.value-card h3{

font-size:24px;

}

.value-card p{

font-size:15px;

}

.value-icon{

width:65px;
height:65px;

}

.value-icon i{

font-size:34px;

}

}

@media(max-width:575px){

.section-heading span{

font-size:15px;

}

.heading-line{

width:60px;

}

.value-card{

padding:28px 20px;

}

.value-card h3{

font-size:22px;

}

.value-card p{

font-size:14px;

line-height:1.7;

}

}

/* ---------------------------------------OUR JOURNEY PAGE  PART 4 , OUR TEAM  ---------------------------------------------- */

/*=================================
          OUR TEAM
==================================*/

.our-team{
    padding:40px 0;
    background:var(--white);
}

/*==============================
        Heading
===============================*/

.team-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.team-heading .sub-title{
    display:inline-block;
    color:var(--accent);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.team-heading h2{
    font-family:var(--heading-font);
    font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

.team-heading p{
    font-family:var(--body-font);
    color:var(--text-light);
    font-size:16px;
    line-height:1.8;
}

/*==============================
        Team Card
===============================*/

.team-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px 22px;

    display:flex;
    align-items:center;
    gap:18px;

    height:100%;

    transition:var(--transition);

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.team-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

/*==============================
        Icon
===============================*/

.team-icon{

    width:68px;
    height:68px;

    min-width:68px;

    display:flex;
    justify-content:center;
    align-items:center;

}
.team-icon i{
    font-size: 35px;
    color: var(--accent);
    line-height: 1;
}

.team-icon svg{

    width:56px;
    height:56px;

}

/*==============================
        Content
===============================*/

.team-info h3{

    font-family:var(--heading-font);

    font-size:30px;

    font-weight:700;

    color:var(--primary);

    line-height:1;

    margin-bottom:10px;

}

.team-info h3 span{

    color:var(--primary);

}

.team-info p{

    margin:0;

    color:var(--text-light);

    font-size:15px;

    font-weight:500;

    line-height:1.6;

}

/*==============================
        Responsive
===============================*/

@media(max-width:1200px){

.team-info h3{

font-size:42px;

}

.team-card{

padding:24px 18px;

}

}


@media(max-width:992px){

.our-team{

padding:80px 0;

}

.team-heading{

margin-bottom:45px;

}

.team-heading h2{

font-size:38px;

}

.team-card{

padding:22px;

}

}


@media(max-width:768px){

.team-heading h2{

font-size:32px;

}

.team-heading p{

font-size:15px;

}

.team-card{

flex-direction:column;

text-align:center;

gap:15px;

}

.team-info h3{

font-size:38px;

}

.team-icon{

width:60px;
height:60px;
min-width:60px;

}

.team-icon svg{

width:50px;
height:50px;

}

}


@media(max-width:576px){

.our-team{

padding:60px 0;

}

.team-heading{

margin-bottom:35px;

}

.team-heading h2{

font-size:28px;

}

.team-heading p{

font-size:14px;

}

.team-heading .sub-title{

font-size:13px;

}

.team-card{

padding:20px;

border-radius:10px;

}

.team-info h3{

font-size:34px;

}

.team-info p{

font-size:14px;

}

.team-icon{

width:55px;
height:55px;

}

.team-icon svg{

width:44px;
height:44px;

}

}



































/* contact page  */

/* contact page  */
/* section one  */
.napco-contact-banner {


    min-height: 620px;

    overflow: hidden;
    position: relative;

    background-image: url("/image/contact-bg-img.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.napco-contact-overlay {

     position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,37,65,.96) 0%,
        rgba(8,37,65,.90) 35%,
        rgba(8,37,65,.10) 65%,
        rgba(8,37,65,.15) 100%
    );
    padding: 70px;
}

.napco-contact-content {
    max-width: 520px;
    margin-left: 30px;
    padding-top: 100px;
}

.napco-contact-content h2 {

    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;

    font-family: var(--heading-font);
}

.napco-contact-content h3 {

    color: white;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;

    
}

.napco-contact-line {

    width: 70px;
    height: 4px;

    background: var(--accent);

    border-radius: 50px;
    margin: 25px 0;
}

.napco-contact-content p {

   color: rgba(255, 255, 255, .90);

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 40px;
}

/* 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(--accent);
    color: var(--accent);
}

.napco-feature-icon.blue {

    border: 2px solid var(--accent);
    color: var(--accent);
}

.napco-contact-feature span {

    color: #ffffff;

    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-overlay{
        padding: 0px !important;
    }
    .napco-contact-content {
        max-width: 100%;
        padding: 20px !important;
        margin: 0px !important;
    }

    .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(12, 59, 145, .12);
    color: var(--primary);
}

.np-contact-icon.blue {
    background: rgba(12, 59, 145, .12);
    color: var(--primary);
}

.np-contact-card h3 {

    color: var(--primary);

    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: 40px 0;
    background: #ffffff;
}

.np-contact-container {
    width: 65%;
    max-width: 1340px;
    margin: auto;

    display: grid;
    grid-template-columns:  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(--primary-dark);

    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;
}
.np-contact-card p a{
    
    color: var(--text);
}

/* ==========================================
   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(--accent);

    color: #000000;

    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: 56px;

    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(--primary);
}

.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(--primary);
}

.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: 22px;
    }

    .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 ten  */

.contact-strip-unique {
    width: 100%;
    padding: 26px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.contact-strip-container-unique {
    max-width: 1280px;
    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;
    }
}

/* real estate features */
.real-estate-feature-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 2px solid var(--accent);
    color: #021526;
    display: flex;
    align-items: center;
    justify-content: center;
}
.real-estate-feature-icon i{
    font-size:30px;
    color:var(--accent) !important;
}

.real-estate-hero {


    min-height: 620px;

    overflow: hidden;
    position: relative;

    background-image: url("/image/real-estate-bg-img.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.napco-contact-overlay {

     position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,37,65,.96) 0%,
        rgba(8,37,65,.90) 35%,
        rgba(8,37,65,.10) 65%,
        rgba(8,37,65,.15) 100%
    );
    padding: 70px;
}
/*======================================
    REAL ESTATE FEATURE SECTION
======================================*/

.f27-real-feature-section{
    padding:80px 0;
    background:var(--white);
    position:relative;
    z-index:5;
}

.f27-real-feature-wrapper{

    background:var(--white);
    border-radius:16px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.18);

    display:flex;
    overflow:hidden;

}

.f27-real-feature-item{

    flex:1;

    display:flex;
    align-items:flex-start;

    gap:18px;

    padding:35px 30px;

    border-right:1px solid var(--border);

}

.f27-last-item{
    border-right:none;
}

.f27-real-feature-icon{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f6f8fb;

}

.f27-real-feature-icon i{

    font-size:34px;
    color:var(--primary);

}

.f27-real-feature-content h3{

    margin:0 0 8px;

    font-family:var(--heading-font);
    font-size:24px;
    font-weight:600;

    color:var(--primary);

}

.f27-real-feature-content p{

    margin:0;

    font-family:var(--body-font);
    font-size:16px;
    line-height:1.7;

    color:var(--text-light);

}

/*============================
      Tablet
=============================*/

@media(max-width:991px){

.f27-real-feature-wrapper{

    flex-direction:column;

}

.f27-real-feature-item{

    border-right:none;
    border-bottom:1px solid var(--border);

}

.f27-last-item{

    border-bottom:none;

}

}

/*============================
      Mobile
=============================*/

@media(max-width:576px){

.f27-real-feature-section{

    margin-top:-40px;

}

.f27-real-feature-item{

    flex-direction:column;
    text-align:center;

    align-items:center;

    padding:28px 22px;

}

.f27-real-feature-icon{

    width:65px;
    height:65px;
    min-width:65px;

}

.f27-real-feature-icon i{

    font-size:30px;

}

.f27-real-feature-content h3{

    font-size:20px;

}

.f27-real-feature-content p{

    font-size:15px;

}

}
/*======================================
    REAL ESTATE SERVICES
======================================*/

.f27-real-estate-services{
    padding:40px 0;
    background:#f8fafc;
}

/* Heading */

.f27-real-estate-heading{
    text-align:center;
    margin-bottom:60px;
}

.f27-real-estate-heading span{
    display:inline-block;
    color:var(--accent);
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.f27-real-estate-heading h2{
    font-family:var(--heading-font);
    font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
    text-transform:capitalize;
}

.f27-real-estate-heading p{
    max-width:700px;
    margin:auto;
    color:var(--text-light);
    font-size:16px;
    line-height:1.8;
}

/* Card */

.f27-real-card{

    background:var(--white);

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:var(--transition);

    height:100%;
}

.f27-real-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

/* Image */

.f27-real-card-image{

    overflow:hidden;

}

.f27-real-card-image img{

    width:100%;
    height:220px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.f27-real-card:hover .f27-real-card-image img{

    transform:scale(1.08);

}

/* Content */

.f27-real-card-content{

    padding:28px;

}

.f27-real-card-content h3{

    font-family:var(--heading-font);

    font-size:18px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:10px;

}

.f27-real-card-content p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.8;

    margin-bottom:15px;

}

/* List */

.f27-real-card-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.f27-real-card-content ul li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:10px;

    color:var(--text);

    font-size:15px;

    line-height:1.7;

}

.f27-real-card-content ul li:last-child{

    margin-bottom:0;

}

/* Icon */

.f27-real-card-content ul li i{

    color:var(--accent);

    font-size:18px;

    margin-top:3px;

    flex-shrink:0;

}
/*======================================
        LARGE DEVICES
======================================*/

@media (max-width:1199px){

    .f27-real-estate-services{
        padding:80px 0;
    }

    .f27-real-estate-heading h2{
        font-size:36px;
    }

    .f27-real-card-content{
        padding:24px;
    }

    .f27-real-card-content h3{
        font-size:24px;
    }

}


/*======================================
            TABLET
======================================*/

@media (max-width:991px){

    .f27-real-estate-services{
        padding:70px 0;
    }

    .f27-real-estate-heading{
        margin-bottom:45px;
    }

    .f27-real-estate-heading h2{
        font-size:32px;
    }

    .f27-real-estate-heading p{
        font-size:16px;
    }

    .f27-real-card-image img{
        height:240px;
    }

    .f27-real-card-content{
        padding:22px;
    }

    .f27-real-card-content h3{
        font-size:23px;
    }

}


/*======================================
            MOBILE
======================================*/

@media (max-width:767px){

    .f27-real-estate-services{
        padding:60px 0;
    }

    .f27-real-estate-heading{
        margin-bottom:35px;
    }

    .f27-real-estate-heading span{
        font-size:14px;
    }

    .f27-real-estate-heading h2{
        font-size:28px;
        line-height:1.3;
    }

    .f27-real-estate-heading p{
        font-size:15px;
        line-height:1.8;
    }

    .f27-real-card{
        border-radius:14px;
    }

    .f27-real-card-image img{
        height:220px;
    }

    .f27-real-card-content{
        padding:20px;
    }

    .f27-real-card-content h3{
        font-size:22px;
        line-height:1.4;
    }

    .f27-real-card-content p{
        font-size:15px;
        margin-bottom:20px;
    }

    .f27-real-card-content ul li{
        font-size:15px;
        margin-bottom:12px;
    }

}


/*======================================
          SMALL MOBILE
======================================*/

@media (max-width:575px){

    .f27-real-estate-services{
        padding:50px 0;
    }

    .f27-real-estate-heading h2{
        font-size:25px;
    }

    .f27-real-card-image img{
        height:200px;
    }

    .f27-real-card-content{
        padding:18px;
    }

    .f27-real-card-content h3{
        font-size:20px;
    }

    .f27-real-card-content p{
        font-size:14px;
    }

    .f27-real-card-content ul li{
        font-size:14px;
        gap:10px;
    }

    .f27-real-card-content ul li i{
        font-size:16px;
    }

}
/*======================================
        PROPERTY SECTION
======================================*/

.f27-property-section{
    padding:40px 0;
    background:#f8fafc;
}

/*==============================
        Heading
===============================*/

.f27-property-heading{
    text-align:center;
    margin-bottom:45px;
}

.f27-property-heading span{

    display:inline-block;

    color:var(--accent);

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.f27-property-heading h2{

    font-family:var(--heading-font);

    font-size:40px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;
    text-transform:capitalize;

}

.f27-property-heading p{

    max-width:650px;

    margin:auto;

    color:var(--text-light);

    font-size:16px;

    line-height:1.8;

}


/*==============================
        Tabs
===============================*/

.f27-property-tabs{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:50px;

    flex-wrap:wrap;

}

.f27-tab-btn{

    background:var(--white);

    border:1px solid var(--border);

    color:var(--primary);

    padding:16px 35px;

    border-radius:10px;

    font-size:18px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.f27-tab-btn.active,
.f27-tab-btn:hover{

    background:var(--primary);

    color:var(--white);

    border-color:var(--primary);

}


/*==============================
        Card
===============================*/

.f27-property-card{

    background:var(--white);

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:var(--transition);

    height:100%;

}

.f27-property-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.14);

}


/*==============================
        Image
===============================*/

.f27-property-image{

    overflow:hidden;

}

.f27-property-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.f27-property-card:hover
.f27-property-image img{

    transform:scale(1.08);

}


/*==============================
        Content
===============================*/

.f27-property-content{

    padding:28px;

}

.f27-property-content h3{

    font-family:var(--heading-font);

    font-size:18px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:12px;

}

.f27-property-content p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.8;

    margin-bottom:22px;

}


/*==============================
        List
===============================*/

.f27-property-content ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.f27-property-content ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:12px;

    font-size:15px;

    color:var(--text);

}

.f27-property-content ul li i{

    color:var(--accent);

    font-size:17px;

}


/*==============================
        Buttons
===============================*/

.f27-property-btn{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

}

.f27-btn-primary{

    background:var(--accent);

    color:var(--primary);

    text-decoration:none;

    padding:14px 24px;

    border-radius:10px;

    font-weight:600;

    transition:var(--transition);

}

.f27-btn-primary:hover{

    background:#f2c100;

    color:var(--primary);

}

.f27-btn-outline{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

}

.f27-btn-outline i{

    margin-left:6px;

    font-size:13px;

}

.f27-btn-outline:hover{

    color:var(--primary-dark);

}
/*======================================
        LARGE DEVICES
======================================*/

@media (max-width:1199px){

    .f27-property-section{
        padding:80px 0;
    }

    .f27-property-heading h2{
        font-size:36px;
    }

    .f27-property-image img{
        height:220px;
    }

    .f27-property-content{
        padding:24px;
    }

    .f27-property-content h3{
        font-size:24px;
    }

}


/*======================================
            TABLET
======================================*/

@media (max-width:991px){

    .f27-property-section{
        padding:70px 0;
    }

    .f27-property-heading{
        margin-bottom:35px;
    }

    .f27-property-heading h2{
        font-size:32px;
    }

    .f27-property-heading p{
        font-size:16px;
    }

    .f27-property-tabs{
        gap:15px;
        margin-bottom:40px;
    }

    .f27-tab-btn{
        padding:14px 28px;
        font-size:16px;
    }

    .f27-property-image img{
        height:240px;
    }

    .f27-property-content{
        padding:22px;
    }

    .f27-property-content h3{
        font-size:22px;
    }

}


/*======================================
            MOBILE
======================================*/

@media (max-width:767px){

    .f27-property-section{
        padding:60px 0;
    }

    .f27-property-heading h2{
        font-size:28px;
        line-height:1.3;
    }

    .f27-property-heading p{
        font-size:15px;
    }

    .f27-property-tabs{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .f27-tab-btn{
        width:100%;
        max-width:320px;
        padding:14px;
        font-size:16px;
    }

    .f27-property-image img{
        height:220px;
    }

    .f27-property-content{
        padding:20px;
    }

    .f27-property-content h3{
        font-size:21px;
    }

    .f27-property-content p{
        font-size:15px;
    }

    .f27-property-btn{
        flex-direction:column;
        align-items:stretch;
        gap:12px;
    }

    .f27-btn-primary,
    .f27-btn-outline{
        width:100%;
        text-align:center;
    }

}


/*======================================
        SMALL MOBILE
======================================*/

@media (max-width:575px){

    .f27-property-section{
        padding:50px 0;
    }

    .f27-property-heading h2{
        font-size:24px;
    }

    .f27-property-heading p{
        font-size:14px;
    }

    .f27-property-image img{
        height:190px;
    }

    .f27-property-content{
        padding:18px;
    }

    .f27-property-content h3{
        font-size:20px;
    }

    .f27-property-content ul li{
        font-size:14px;
        align-items:flex-start;
    }

    .f27-property-content ul li i{
        margin-top:3px;
    }

    .f27-btn-primary,
    .f27-btn-outline{
        padding:13px 18px;
        font-size:15px;
    }

}
/* recruitment */

/* ----------------------------------Recruitment page part 1 css----------------------------------- */

/*=========================================
        RECRUITMENT HERO SECTION
=========================================*/

.recruitment-hero{
    background: var(--primary);
    overflow: hidden;
    position: relative;
    padding: 0;
    background-image: url("/image/recruitment-hero-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.hero-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 620px;
    gap: 40px;
}

/*==============================
        LEFT CONTENT
==============================*/

.hero-content{
    color: var(--accent);
    max-width: 560px;
    padding: 40px 0;
}

.hero-content h1{
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-content p{
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin-bottom: 40px;
}

/*==============================
        BUTTONS
==============================*/

.hero-btn{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:180px;
    height:58px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    transition:var(--transition);

}

/* Yellow Button */

.btn-primary-custom{

    background:var(--accent);
    color:var(--primary);

}

.btn-primary-custom:hover{

    background:var(--white);
    transform:translateY(-4px);

}

/* Outline Button */

.btn-outline-custom{

    border:2px solid rgba(255,255,255,.35);
    color:var(--white);

}

.btn-outline-custom:hover{

    background:var(--white);
    color:var(--primary);

}

/*==============================
        RIGHT IMAGE
==============================*/

.hero-image{

    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    height:100%;

}

.hero-image img{

    width:100%;
    max-width:640px;

    display:block;

    object-fit:contain;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px){

.hero-content h1{

font-size:50px;

}

.hero-image img{

max-width:560px;

}

}

@media(max-width:992px){

.hero-wrapper{

grid-template-columns:1fr;

text-align:center;

padding-top:60px;

}

.hero-content{

max-width:100%;
padding-bottom:30px;

}

.hero-btn{

justify-content:center;

}

.hero-image{

justify-content:center;

}

.hero-image img{

max-width:520px;

}

}

@media(max-width:768px){

.recruitment-hero{

padding:60px 0;

}

.hero-wrapper{

min-height:auto;

gap:30px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

}

.hero-image img{

max-width:420px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:15px;

line-height:1.7;

}

.hero-btn{

flex-direction:column;

gap:15px;

}

.btn-primary-custom,
.btn-outline-custom{

width:100%;

}

.hero-image img{

max-width:100%;

}

}

/* -------------------------RECRUITMENT SECTION  PART 2 , WHY CHOOSE ------------------------- */

/*=========================================
        WHY CHOOSE RECRUITMENT
=========================================*/

.why-choose{
    padding:40px 0;
    background:var(--white);
}

/*==============================
        Section Heading
==============================*/

.section-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}

.section-title span{
    width:65px;
    height:2px;
    background:var(--border);
}

.section-title h2{
    margin:0;
    font-family:var(--heading-font);
    font-size:40px;
    font-weight:700;
    color:var(--primary);
}

/*==============================
            Card
==============================*/

.choose-card{

    display:flex;
    align-items:center;
    gap:18px;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:12px;

    padding:24px 20px;

    height:100%;

    transition:var(--transition);

}

.choose-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==============================
            Icon
==============================*/

.choose-icon{

    width:65px;
    height:65px;

    min-width:65px;

    border-radius:50%;

    background:rgba(255,212,0,.10);

    display:flex;
    justify-content:center;
    align-items:center;

}

.choose-icon i{

    font-size:32px;

    color:var(--primary);

}

/*==============================
          Content
==============================*/

.choose-content h4{

    margin:0 0 8px;

    font-family:var(--heading-font);

    font-size:20px;

    font-weight:700;

    color:var(--primary);

}

.choose-content p{

    margin:0;

    color:var(--text-light);

    font-size:15px;

    line-height:1.6;

}

/*==============================
        Responsive
==============================*/

@media(max-width:1200px){

.section-title h2{

font-size:36px;

}

.choose-content h4{

font-size:18px;

}

}

@media(max-width:992px){

.why-choose{

padding:70px 0;

}

.section-title{

margin-bottom:35px;

}

.choose-card{

padding:20px;

}

}

@media(max-width:768px){

.section-title{

flex-direction:column;

gap:12px;

}

.section-title span{

display:none;

}

.section-title h2{

font-size:30px;

text-align:center;

}

.choose-card{

flex-direction:column;

text-align:center;

}

.choose-icon{

width:60px;
height:60px;
min-width:60px;

}

.choose-icon i{

font-size:28px;

}

}

@media(max-width:576px){

.why-choose{

padding:60px 0;

}

.section-title h2{

font-size:26px;

}

.choose-card{

padding:18px;

}

.choose-content h4{

font-size:18px;

}

.choose-content p{

font-size:14px;

}

}


/*------------------------------------RECRUITMENT SECTION  PART 3,OUR RECRUITMENT SOLUTIONS------------------------------------------- */

/*=========================================
    OUR RECRUITMENT SOLUTIONS
=========================================*/

.recruitment-solutions{
    padding:40px 0;
    background:var(--white);
}

.solution-heading{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:60px;
}

.solution-heading span{
    width:90px;
    height:2px;
    background:#d8dde5;
}

.solution-heading h2{
    margin:0;
    color:var(--primary);
    font-family:var(--heading-font);
    font-size:42px;
    font-weight:700;
}

/*==========================
        CARD
==========================*/

.solution-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:var(--transition);

    height:100%;

}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*==========================
        IMAGE
==========================*/

.solution-image{

    position:relative;

    overflow:hidden;

    height:300px;

}

.solution-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.solution-card:hover img{

    transform:scale(1.08);

}

/*==========================
      BLUE OVERLAY
==========================*/

.solution-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:35px 20px;

    text-align:center;

    background:linear-gradient(
    to top,
    rgba(13,47,82,.96),
    rgba(13,47,82,.85),
    rgba(13,47,82,.15)
    );

}

.solution-overlay h3{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:10px;

    font-family:var(--heading-font);

}

.solution-overlay p{

    color:#fff;

    font-size:18px;

    margin:0;

}

/*==========================
      BUTTON AREA
==========================*/

.solution-footer{

    padding:28px;

    text-align:center;

}

.solution-footer a{

    display:inline-block;

    min-width:170px;

    padding:15px 30px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:10px;

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

    transition:var(--transition);

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.solution-footer a:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.solution-heading h2{

font-size:36px;

}

.solution-image{

height:260px;

}

.solution-overlay h3{

font-size:26px;

}

}

@media(max-width:992px){

.recruitment-solutions{

padding:80px 0;

}

.solution-heading{

margin-bottom:40px;

}

.solution-image{

height:280px;

}

}

@media(max-width:768px){

.solution-heading{

flex-direction:column;

gap:15px;

}

.solution-heading span{

display:none;

}

.solution-heading h2{

font-size:30px;

text-align:center;

}

.solution-image{

height:250px;

}

.solution-overlay h3{

font-size:24px;

}

.solution-overlay p{

font-size:16px;

}

}

@media(max-width:576px){

.recruitment-solutions{

padding:60px 0;

}

.solution-heading h2{

font-size:26px;

}

.solution-image{

height:220px;

}

.solution-footer{

padding:22px;

}

.solution-footer a{

width:100%;

}

}

/* ---------------------------------------RECRUITMENT SECTION  PART 4 ,INDUSTRIES WE SERVE------------------------------*/


/* :root {
  --primary: #0d2f52;
  --primary-dark: #082541;
  --accent: #ffd400;
  --white: #ffffff;
  --text: #1d2d44;
  --text-light: #5f6b7a;
  --border: #e5e7eb;
  --footer-border: rgba(255,255,255,0.15);
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --container-width: 1320px;
  --transition: all 0.3s ease;
} */

.industries {
  padding: 60px 20px;
  background-color: var(--white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.industry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(13,47,82,0.85);
  color: var(--white);
  text-align: center;
  padding: 0px 10px;
  transition: var(--transition);
}

.overlay i {
  font-size: 1.5rem;
  margin-bottom: 5px;
  display: block;
  color: var(--accent);
}

.industry-card:hover .overlay {
  background: rgba(8,37,65,0.95);
  transform: translateY(-5px);
}





/*--------------------------------- RECRUITMENT  SECTION PART 5 ,CARRER OPPORTUNITIES-------------------------- */


/*======================================
        CAREER SECTION
======================================*/

.f27-career-section{
    padding:100px 0;
    background:#f8fafc;
}

/*==========================
        Heading
==========================*/

.f27-career-heading{
    text-align:center;
    margin-bottom:45px;
}

.f27-career-heading span{
    display:inline-block;
    color:var(--accent);
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.f27-career-heading h2{
    font-family:var(--heading-font);
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

.f27-career-heading p{
    max-width:650px;
    margin:auto;
    color:var(--text-light);
    font-size:16px;
    line-height:1.8;
}

/*==========================
        Filters
==========================*/

.f27-career-filter{

    display:flex;

    gap:18px;

    margin-bottom:30px;

}

.f27-career-filter select{

    width:220px;

    height:55px;

    padding:0 18px;

    border:1px solid var(--border);

    border-radius:10px;

    outline:none;

    background:var(--white);

    color:var(--text);

    font-size:15px;

    transition:var(--transition);

}

.f27-career-filter select:focus{

    border-color:var(--primary);

}

/*==========================
        Job Card
==========================*/

.f27-job-card{

    background:var(--white);

    border-radius:14px;

    padding:22px 25px;

    margin-bottom:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:var(--transition);

}

.f27-job-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.f27-job-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.f27-job-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(13,47,82,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.f27-job-icon i{

    font-size:24px;

    color:var(--primary);

}

.f27-job-info h3{

    margin:0 0 8px;

    color:var(--primary);

    font-size:18px;

    font-weight:700;

    font-family:var(--heading-font);

}

.f27-job-info span{

    color:var(--text-light);

    font-size:15px;

}

.f27-job-info strong{

    margin:0 12px;

    color:var(--primary);

}

/*==========================
        Apply Button
==========================*/

.f27-job-btn{

    background:var(--primary);

    color:var(--white);

    text-decoration:none;

    padding:16px 32px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

}

.f27-job-btn:hover{

    background:var(--primary-dark);

    color:var(--white);

}

.f27-job-btn.active{

    background:var(--accent);

    color:var(--primary);

}

.f27-job-btn.active:hover{

    background:#f4c400;

}

/*==========================
        Review Card
==========================*/

.f27-review-card{

    background:var(--white);

    border-radius:14px;

    overflow:hidden;

    margin-bottom:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    display:flex;

    transition:var(--transition);

}

.f27-review-card:hover{

    transform:translateY(-5px);

}

.f27-review-image{

    width:130px;

    flex-shrink:0;

}

.f27-review-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.f27-review-content{

    padding:20px;

}

.f27-review-content h4{

    margin:0 0 12px;

    color:var(--primary);

    font-size:22px;

    font-weight:700;

}

.f27-review-content h4 span{

    color:var(--accent);

    font-size:14px;

    font-weight:500;

}

.f27-review-content p{

    color:var(--text-light);

    font-size:15px;

    line-height:1.7;

    margin-bottom:18px;

}

.f27-rating{

    display:flex;

    gap:5px;

}

.f27-rating i{

    color:var(--accent);

    font-size:15px;

}


/*------------------------------------------ RESPONSIVE ------------------------------------------------*/

/*======================================
        LARGE DEVICES
======================================*/

@media (max-width:1199px){

    .f27-career-section{
        padding:80px 0;
    }

    .f27-career-heading h2{
        font-size:36px;
    }

    .f27-job-info h3{
        font-size:24px;
    }

    .f27-job-btn{
        padding:14px 26px;
        font-size:15px;
    }

}


/*======================================
            TABLET
======================================*/

@media (max-width:991px){

    .f27-career-section{
        padding:70px 0;
    }

    .f27-career-heading{
        margin-bottom:35px;
    }

    .f27-career-heading h2{
        font-size:32px;
    }

    .f27-career-heading p{
        font-size:15px;
    }

    .f27-career-filter{

        flex-wrap:wrap;

        gap:15px;

    }

    .f27-career-filter select{

        flex:1;

        min-width:200px;

        width:100%;

    }

    .f27-job-card{

        padding:20px;

    }

    .f27-job-info h3{

        font-size:22px;

    }

    .f27-review-card{

        margin-top:10px;

    }

}


/*======================================
            MOBILE
======================================*/

@media (max-width:767px){

    .f27-career-section{
        padding:60px 0;
    }

    .f27-career-heading h2{
        font-size:28px;
    }

    .f27-career-heading p{
        font-size:14px;
    }

    .f27-career-filter{

        flex-direction:column;

    }

    .f27-career-filter select{

        width:100%;

    }

    .f27-job-card{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .f27-job-left{

        width:100%;

    }

    .f27-job-info h3{

        font-size:20px;

    }

    .f27-job-info span{

        font-size:14px;

    }

    .f27-job-btn{

        width:100%;

        text-align:center;

    }

    .f27-review-card{

        flex-direction:column;

    }

    .f27-review-image{

        width:100%;

        height:220px;

    }

    .f27-review-image img{

        height:220px;

    }

}


/*======================================
        SMALL MOBILE
======================================*/

@media (max-width:575px){

    .f27-career-section{
        padding:50px 0;
    }

    .f27-career-heading h2{
        font-size:24px;
    }

    .f27-career-filter select{

        height:50px;

        font-size:14px;
        padding:15px;

    }

    .f27-job-card{

        padding:18px;

    }

    .f27-job-left{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

    .f27-job-icon{

        width:50px;
        height:50px;

    }

    .f27-job-icon i{

        font-size:22px;

    }

    .f27-job-info h3{

        font-size:18px;

    }

    .f27-job-info span{

        display:block;

        line-height:1.8;

    }

    .f27-job-info strong{

        display:none;

    }

    .f27-job-btn{

        padding:14px;

        font-size:15px;

    }

    .f27-review-content{

        padding:18px;

    }

    .f27-review-content h4{

        font-size:18px;

    }

    .f27-review-content p{

        font-size:14px;

    }

}
/* privacy policy  */
/*======================================
        PRIVACY HERO
======================================*/

.f27-privacy-hero{

    position:relative;

    padding:140px 0 110px;

    background:url(/image/privacy-policy-bg-img.jpg)
    center center/cover no-repeat;

    overflow:hidden;

}

.f27-privacy-overlay{
    position:absolute;

    inset:0;
background: linear-gradient(90deg, rgba(9, 40, 76, .96) 0%, rgba(9, 40, 76, .90) 35%, rgba(9, 40, 76, .55) 65%, rgba(9, 40, 76, .20) 100%);

}

.f27-privacy-hero .container{

    position:relative;

    z-index:2;

}

.f27-privacy-hero-content{

    max-width:800px;

}

.f27-privacy-hero-content span{

    display:inline-block;

    color:var(--accent);

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.f27-privacy-hero-content h1{

    color:var(--white);

    font-size:55px;

    font-family:var(--heading-font);

    font-weight:700;

    margin-bottom:20px;

}

.f27-privacy-hero-content p{

    color:rgba(255,255,255,.88);

    font-size:17px;

    line-height:1.9;

    max-width:700px;

    margin-bottom:30px;

}

/*==============================
        Breadcrumb
==============================*/

.f27-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

}

.f27-breadcrumb a{

    color:var(--accent);

    text-decoration:none;

    font-weight:600;

}

.f27-breadcrumb span{

    color:#fff;

    margin:0;

}

.f27-breadcrumb i{

    color:#fff;

    font-size:12px;

}

/*======================================
        PRIVACY SECTION
======================================*/

.f27-privacy-section{

    padding:100px 0;

    background:#f8fafc;

}

/*==============================
        Sidebar
==============================*/

.f27-policy-sidebar{

    position:sticky;

    top:120px;

    background:var(--white);

    border-radius:16px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.f27-policy-sidebar h3{

    font-size:24px;

    color:var(--primary);

    margin-bottom:25px;

    font-weight:700;

}

.f27-policy-sidebar ul{

    list-style:none;

    padding:0;

    margin:0;

}

.f27-policy-sidebar li{

    margin-bottom:14px;

}

.f27-policy-sidebar li:last-child{

    margin-bottom:0;

}

.f27-policy-sidebar a{

    display:block;

    padding:12px 16px;

    border-radius:8px;

    color:var(--text);

    text-decoration:none;

    transition:var(--transition);

    font-weight:500;

}

.f27-policy-sidebar a:hover{

    background:var(--primary);

    color:var(--white);

}

/*==============================
        Policy Card
==============================*/

.f27-policy-card{

    background:var(--white);

    border-radius:16px;

    padding:40px;

    margin-bottom:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.f27-policy-card:last-child{

    margin-bottom:0;

}

.f27-policy-card h2{

    color:var(--primary);

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

    position:relative;

    padding-bottom:15px;

}

.f27-policy-card h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    background:var(--accent);

    border-radius:30px;

}

.f27-policy-card p{

    color:var(--text-light);

    line-height:1.9;

    font-size:16px;

    margin-bottom:18px;

}

.f27-policy-card ul{

    padding-left:22px;

    margin-bottom:0;

}

.f27-policy-card ul li{

    margin-bottom:12px;

    color:var(--text-light);

    line-height:1.8;

}

/*==============================
        Contact Box
==============================*/

.f27-contact-box{

    background:#f7f9fc;

    border-left:5px solid var(--accent);

    border-radius:10px;

    padding:25px;

    margin-top:20px;

}

.f27-contact-box p{

    margin-bottom:12px;

}

.f27-contact-box p:last-child{

    margin-bottom:0;

}

.f27-contact-box strong{

    color:var(--primary);

}

/*======================================
        LARGE DEVICES
======================================*/

@media (max-width:1199px){

    .f27-privacy-hero{
        padding:120px 0 90px;
    }

    .f27-privacy-hero-content h1{
        font-size:48px;
    }

    .f27-policy-sidebar{
        padding:30px;
    }

    .f27-policy-card{
        padding:35px;
    }

}


/*======================================
            TABLET
======================================*/

@media (max-width:991px){

    .f27-privacy-hero{
        padding:100px 0 80px;
        text-align:center;
    }

    .f27-privacy-hero-content{
        max-width:100%;
    }

    .f27-privacy-hero-content h1{
        font-size:40px;
    }

    .f27-privacy-hero-content p{
        margin:auto auto 30px;
    }

    .f27-breadcrumb{
        justify-content:center;
    }

    .f27-privacy-section{
        padding:70px 0;
    }

    .f27-policy-sidebar{

        position:static;

        margin-bottom:35px;

        padding:30px;

    }

    .f27-policy-sidebar ul{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    .f27-policy-sidebar li{

        margin:0;

    }

}


/*======================================
            MOBILE
======================================*/

@media (max-width:767px){

    .f27-privacy-hero{
        padding:90px 0 70px;
    }

    .f27-privacy-hero-content h1{
        font-size:34px;
        line-height:1.3;
    }

    .f27-privacy-hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .f27-breadcrumb{

        flex-wrap:wrap;

        justify-content:center;

        gap:8px;

    }

    .f27-policy-sidebar{

        padding:25px;

    }

    .f27-policy-sidebar h3{

        font-size:22px;

    }

    .f27-policy-sidebar ul{

        grid-template-columns:1fr;

    }

    .f27-policy-card{

        padding:28px;

    }

    .f27-policy-card h2{

        font-size:24px;

    }

    .f27-policy-card p{

        font-size:15px;

    }

    .f27-policy-card ul li{

        font-size:15px;

    }

    .f27-contact-box{

        padding:20px;

    }

}


/*======================================
        SMALL MOBILE
======================================*/

@media (max-width:575px){

    .f27-privacy-hero{

        padding:80px 0 60px;

    }

    .f27-privacy-hero-content span{

        font-size:13px;

    }

    .f27-privacy-hero-content h1{

        font-size:28px;

    }

    .f27-privacy-hero-content p{

        font-size:14px;

    }

    .f27-policy-sidebar{

        padding:20px;

        border-radius:12px;

    }

    .f27-policy-sidebar h3{

        font-size:20px;

    }

    .f27-policy-sidebar a{

        font-size:14px;

        padding:10px 12px;

    }

    .f27-policy-card{

        padding:22px;

        border-radius:12px;

    }

    .f27-policy-card h2{

        font-size:22px;

        margin-bottom:18px;

    }

    .f27-policy-card h2::after{

        width:55px;

        height:3px;

    }

    .f27-policy-card p{

        font-size:14px;

        line-height:1.8;

    }

    .f27-policy-card ul{

        padding-left:18px;

    }

    .f27-policy-card ul li{

        font-size:14px;

        margin-bottom:10px;

    }

    .f27-contact-box{

        padding:18px;

    }

}
/*======================================
        TERMS HERO
======================================*/

.f27-terms-hero{

    position:relative;

    padding:140px 0 110px;

    background:url(/image/terms-bg-img.jpg)
    center center/cover no-repeat;

    overflow:hidden;

}

.f27-terms-overlay{

    position:absolute;

    inset:0;
background: linear-gradient(90deg, rgba(9, 40, 76, .96) 0%, rgba(9, 40, 76, .90) 35%, rgba(9, 40, 76, .55) 65%, rgba(9, 40, 76, .20) 100%);

}

.f27-terms-hero .container{

    position:relative;

    z-index:2;

}

.f27-terms-hero-content{

    max-width:780px;

}

.f27-terms-hero-content span{

    display:inline-block;

    color:var(--accent);

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.f27-terms-hero-content h1{

    color:var(--white);

    font-size:55px;

    font-family:var(--heading-font);

    font-weight:700;

    margin-bottom:20px;

}

.f27-terms-hero-content p{

    color:rgba(255,255,255,.88);

    font-size:17px;

    line-height:1.9;

    margin-bottom:30px;

    max-width:700px;

}

/*======================================
        BREADCRUMB
======================================*/

.f27-terms-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

}

.f27-terms-breadcrumb a{

    text-decoration:none;

    color:var(--accent);

    font-weight:600;

}

.f27-terms-breadcrumb span{

    color:var(--white);

}

.f27-terms-breadcrumb i{

    color:var(--white);

    font-size:12px;

}

/*======================================
        TERMS SECTION
======================================*/

.f27-terms-section{

    padding:100px 0;

    background:#f8fafc;

}

/*======================================
        SIDEBAR
======================================*/

.f27-terms-sidebar{

    position:sticky;

    top:120px;

    background:var(--white);

    border-radius:16px;

    padding:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.f27-terms-sidebar h3{

    font-size:24px;

    color:var(--primary);

    font-weight:700;

    margin-bottom:25px;

}

.f27-terms-sidebar ul{

    list-style:none;

    padding:0;

    margin:0;

}

.f27-terms-sidebar li{

    margin-bottom:14px;

}

.f27-terms-sidebar li:last-child{

    margin-bottom:0;

}

.f27-terms-sidebar a{

    display:block;

    text-decoration:none;

    padding:12px 16px;

    border-radius:8px;

    color:var(--text);

    transition:var(--transition);

    font-weight:500;

}

.f27-terms-sidebar a:hover{

    background:var(--primary);

    color:var(--white);

}

/*======================================
        TERMS CARD
======================================*/

.f27-terms-card{

    background:var(--white);

    border-radius:16px;

    padding:40px;

    margin-bottom:30px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.f27-terms-card:last-child{

    margin-bottom:0;

}

.f27-terms-card h2{

    position:relative;

    color:var(--primary);

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

    padding-bottom:15px;

}

.f27-terms-card h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    border-radius:20px;

    background:var(--accent);

}

.f27-terms-card p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.9;

    margin-bottom:18px;

}

.f27-terms-card ul{

    padding-left:22px;

    margin-bottom:0;

}

.f27-terms-card ul li{

    margin-bottom:12px;

    color:var(--text-light);

    line-height:1.8;

}

/*======================================
        CONTACT BOX
======================================*/

.f27-terms-contact{

    background:#f7f9fc;

    border-left:5px solid var(--accent);

    border-radius:10px;

    padding:25px;

    margin-top:20px;

}

.f27-terms-contact p{

    margin-bottom:12px;

}

.f27-terms-contact p:last-child{

    margin-bottom:0;

}

.f27-terms-contact strong{

    color:var(--primary);

}
/*======================================
        LARGE DEVICES
======================================*/

@media (max-width:1199px){

    .f27-terms-hero{
        padding:120px 0 90px;
    }

    .f27-terms-hero-content h1{
        font-size:48px;
    }

    .f27-terms-sidebar{
        padding:30px;
    }

    .f27-terms-card{
        padding:35px;
    }

}


/*======================================
            TABLET
======================================*/

@media (max-width:991px){

    .f27-terms-hero{
        padding:100px 0 80px;
        text-align:center;
    }

    .f27-terms-hero-content{
        max-width:100%;
    }

    .f27-terms-hero-content h1{
        font-size:40px;
    }

    .f27-terms-hero-content p{
        margin:auto auto 30px;
    }

    .f27-terms-breadcrumb{
        justify-content:center;
    }

    .f27-terms-section{
        padding:70px 0;
    }

    .f27-terms-sidebar{

        position:static;

        margin-bottom:35px;

        padding:30px;

    }

    .f27-terms-sidebar ul{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    .f27-terms-sidebar li{

        margin:0;

    }

}


/*======================================
            MOBILE
======================================*/

@media (max-width:767px){

    .f27-terms-hero{
        padding:90px 0 70px;
    }

    .f27-terms-hero-content h1{
        font-size:34px;
        line-height:1.3;
    }

    .f27-terms-hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .f27-terms-breadcrumb{

        flex-wrap:wrap;

        justify-content:center;

        gap:8px;

    }

    .f27-terms-sidebar{

        padding:25px;

    }

    .f27-terms-sidebar h3{

        font-size:22px;

    }

    .f27-terms-sidebar ul{

        grid-template-columns:1fr;

    }

    .f27-terms-card{

        padding:28px;

    }

    .f27-terms-card h2{

        font-size:24px;

    }

    .f27-terms-card p{

        font-size:15px;

    }

    .f27-terms-card ul li{

        font-size:15px;

    }

    .f27-terms-contact{

        padding:20px;

    }

}


/*======================================
        SMALL MOBILE
======================================*/

@media (max-width:575px){

    .f27-terms-hero{

        padding:80px 0 60px;

    }

    .f27-terms-hero-content span{

        font-size:13px;

    }

    .f27-terms-hero-content h1{

        font-size:28px;

    }

    .f27-terms-hero-content p{

        font-size:14px;

    }

    .f27-terms-sidebar{

        padding:20px;

        border-radius:12px;

    }

    .f27-terms-sidebar h3{

        font-size:20px;

    }

    .f27-terms-sidebar a{

        font-size:14px;

        padding:10px 12px;

    }

    .f27-terms-card{

        padding:22px;

        border-radius:12px;

    }

    .f27-terms-card h2{

        font-size:22px;

        margin-bottom:18px;

    }

    .f27-terms-card h2::after{

        width:55px;

        height:3px;

    }

    .f27-terms-card p{

        font-size:14px;

        line-height:1.8;

    }

    .f27-terms-card ul{

        padding-left:18px;

    }

    .f27-terms-card ul li{

        font-size:14px;

        margin-bottom:10px;

    }

    .f27-terms-contact{

        padding:18px;

    }

}
/* product and solutions */
/*=========================================
        PRODUCTS HERO SECTION
=========================================*/

.f27-product-hero{
    position:relative;
    min-height:680px;
    /* padding:100px 0; */
    display:flex;
    align-items:center;
    background:url("/image/product-and-solution-bg-img.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.f27-product-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,37,65,.95) 0%,
        rgba(8,37,65,.88) 38%,
        rgba(8,37,65,.55) 70%,
        rgba(8,37,65,.18) 100%
    );
}

.f27-product-hero .container{
    position:relative;
    z-index:2;
}


/*============================
        Content
=============================*/

.f27-product-tag{

    display:inline-block;

    color:var(--accent);

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.f27-product-content h1{

    color:#fff;

    font-size:40px;

    line-height:1.08;

    font-weight:700;

    margin-bottom:22px;

}

.f27-product-content h1 span{

    display:block;

    color:#fff;

}

.f27-product-content p{

    color:rgba(255,255,255,.88);

    font-size:16px;

    line-height:1.9;

    max-width:620px;

    margin-bottom:40px;

}

/*============================
        Buttons
=============================*/

.f27-product-btn-group{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.f27-btn-primary,
.f27-btn-outline{

    padding:17px 36px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:var(--transition);

}

.f27-btn-primary{

    background:var(--accent);

    color:#111;

}

.f27-btn-primary:hover{

    background:#ffc400;

    color:#111;

    transform:translateY(-3px);

}

.f27-btn-primary i{

    margin-left:10px;

}

.f27-btn-outline{

    border:2px solid rgba(255,255,255,.45);

    color:#fff;

}

.f27-btn-outline:hover{

    background:#fff;

    color:var(--primary);

}


/*============================
      Decorative Effect
=============================*/

.f27-product-hero::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(255,212,0,.06);

    border-radius:50%;

    top:-90px;
    right:-80px;

}

.f27-product-hero::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(255,255,255,.03);

    border-radius:50%;

    left:-60px;
    bottom:-60px;

}
/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px){

.f27-product-content h1{

font-size:58px;

}

.f27-product-image img{

max-width:500px;

}

}

@media(max-width:991px){

.f27-product-hero{

padding:80px 0;

text-align:center;

min-height:auto;

}

.f27-product-content{

margin-bottom:50px;

}

.f27-product-breadcrumb{

justify-content:center;

}

.f27-product-content h1{

font-size:48px;

}

.f27-product-content p{

max-width:100%;
margin:auto auto 35px;

}

.f27-product-btn-group{

justify-content:center;

}

.f27-product-image{

text-align:center;

}

.f27-product-image img{

max-width:420px;

}

}

@media(max-width:767px){

.f27-product-hero{

padding:70px 0;

}

.f27-product-content h1{

font-size:40px;

}

.f27-product-content p{

font-size:16px;

line-height:1.8;

}

.f27-product-btn-group{

flex-direction:column;

align-items:center;

}

.f27-btn-primary,
.f27-btn-outline{

width:100%;
max-width:320px;

text-align:center;

}

}

@media(max-width:575px){

.f27-product-hero{

padding:60px 0;

}

.f27-product-content h1{

font-size:32px;

}

.f27-product-content p{

font-size:15px;

}

.f27-product-tag{

font-size:13px;

}

.f27-product-image img{

max-width:280px;

}

.f27-product-breadcrumb{

font-size:13px;

flex-wrap:wrap;

justify-content:center;

}

}
/*=========================================
      PRODUCT CATEGORY SECTION
=========================================*/

.f27-product-category-section{
    padding:100px 0;
    background:#f8fafc;
}

/*=========================================
            TAB BUTTONS
=========================================*/

.f27-product-tabs{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;

    margin-bottom:60px;

}

.f27-tab-btn{

    border:none;

    background:#fff;

    color:var(--primary);

    padding:16px 26px;

    border-radius:8px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.f27-tab-btn:hover{

    background:var(--primary);

    color:#fff;

}

.f27-tab-btn.active{

    background:var(--primary);

    color:#fff;

}

/*=========================================
            TAB CONTENT
=========================================*/

.f27-tab-content{

    display:none;

    animation:f27Fade .4s ease;

}

.f27-tab-content.active{

    display:block;

}

@keyframes f27Fade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
            HEADING
=========================================*/

.f27-tab-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 50px;

}

.f27-tab-heading h2{

    color:var(--primary);

    font-size:40px;

    font-family:var(--heading-font);

    font-weight:700;

    margin-bottom:18px;

}

.f27-tab-heading p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.9;

}

/*=========================================
            PRODUCT CARD
=========================================*/

.f27-product-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    height:100%;

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.f27-product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=========================================
            PRODUCT IMAGE
=========================================*/

.f27-product-img{

    background:#f4f7fb;

    height:250px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.f27-product-img img{

    max-width:80%;

    max-height:200px;

    transition:.45s;

}

.f27-product-card:hover .f27-product-img img{

    transform:scale(1.08);

}

/*=========================================
            PRODUCT INFO
=========================================*/

.f27-product-info{

    padding:28px;

    text-align:center;

}

.f27-product-info h3{

    color:var(--primary);

    font-size:18px;

    font-weight:700;

    margin-bottom:15px;

}

.f27-product-info p{

    color:var(--text-light);

    font-size:15px;

    line-height:1.8;

    margin-bottom:22px;

}

.f27-product-info a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

}

.f27-product-info a:hover{

    color:var(--accent);

}

.f27-product-info a::after{

    content:" →";

    transition:.3s;

}

.f27-product-info a:hover::after{

    margin-left:6px;

}
/*=========================================
        LARGE DEVICES
=========================================*/

@media (max-width:1200px){

    .f27-product-category-section{
        padding:80px 0;
    }

    .f27-tab-heading h2{
        font-size:38px;
    }

    .f27-tab-btn{
        padding:15px 22px;
        font-size:14px;
    }

    .f27-product-img{
        height:220px;
    }

    .f27-product-img img{
        max-height:170px;
    }

    .f27-product-info{
        padding:24px;
    }

    .f27-product-info h3{
        font-size:22px;
    }

}


/*=========================================
            TABLET
=========================================*/

@media(max-width:991px){

    .f27-product-category-section{

        padding:70px 0;

    }

    .f27-product-tabs{

        gap:12px;

        margin-bottom:45px;

    }

    .f27-tab-btn{

        font-size:14px;

        padding:14px 18px;

    }

    .f27-tab-heading{

        margin-bottom:40px;

    }

    .f27-tab-heading h2{

        font-size:34px;

    }

    .f27-tab-heading p{

        font-size:16px;

    }

    .f27-product-img{

        height:200px;

    }

    .f27-product-img img{

        max-height:150px;

    }

    .f27-product-info{

        padding:22px;

    }

    .f27-product-info h3{

        font-size:20px;

    }

}


/*=========================================
            MOBILE
=========================================*/

@media(max-width:767px){

    .f27-product-category-section{

        padding:60px 0;

    }

    .f27-product-tabs{

        flex-direction:column;

        align-items:stretch;

        gap:12px;

    }

    .f27-tab-btn{

        width:100%;

        padding:15px 20px;

        text-align:center;

        border-radius:8px;

    }

    .f27-tab-heading{

        margin-bottom:35px;

    }

    .f27-tab-heading h2{

        font-size:28px;

        line-height:1.3;

    }

    .f27-tab-heading p{

        font-size:15px;

        line-height:1.8;

    }

    .f27-product-img{

        height:190px;

    }

    .f27-product-img img{

        max-height:140px;

    }

    .f27-product-info{

        padding:20px;

    }

    .f27-product-info h3{

        font-size:19px;

    }

    .f27-product-info p{

        font-size:14px;

    }

}


/*=========================================
          SMALL MOBILE
=========================================*/

@media(max-width:575px){

    .f27-product-category-section{

        padding:50px 0;

    }

    .f27-tab-heading h2{

        font-size:24px;

    }

    .f27-tab-heading p{

        font-size:14px;

    }

    .f27-product-card{

        border-radius:12px;

    }

    .f27-product-img{

        height:170px;

    }

    .f27-product-img img{

        max-width:75%;

        max-height:120px;

    }

    .f27-product-info{

        padding:18px;

    }

    .f27-product-info h3{

        font-size:18px;

        margin-bottom:10px;

    }

    .f27-product-info p{

        font-size:13px;

        margin-bottom:18px;

    }

    .f27-product-info a{

        font-size:14px;

    }

}


/*=========================================
        EXTRA SMALL
=========================================*/

@media(max-width:380px){

    .f27-tab-btn{

        font-size:13px;

        padding:13px 15px;

    }

    .f27-tab-heading h2{

        font-size:22px;

    }

    .f27-product-img{

        height:150px;

    }

    .f27-product-img img{

        max-height:105px;

    }

}
/*=========================================
      WHY CHOOSE OUR PRODUCTS
=========================================*/

.f27-feature-section{

    padding:100px 0;

    background:var(--primary-dark);

    position:relative;

    overflow:hidden;

}

/* Decorative Background */

.f27-feature-section::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,212,0,.03);

    top:-120px;

    left:-120px;

}

.f27-feature-section::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.02);

    bottom:-100px;

    right:-80px;

}

/*=========================================
            CARD
=========================================*/

.f27-feature-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:40px 30px;

    height:100%;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.f27-feature-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.07);

    border-color:rgba(255,212,0,.30);

    box-shadow:0 18px 40px rgba(0,0,0,.30);

}

/*=========================================
            ICON
=========================================*/

.f27-feature-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,212,0,.08);

    border:1px solid rgba(255,212,0,.20);

    margin-bottom:25px;

}

.f27-feature-icon i{

    font-size:38px;

    color:var(--accent);

    transition:.4s;

}

.f27-feature-card:hover .f27-feature-icon{

    background:var(--accent);

}

.f27-feature-card:hover .f27-feature-icon i{

    color:var(--primary);

    transform:rotate(8deg) scale(1.1);

}

/*=========================================
            TEXT
=========================================*/

.f27-feature-card h3{

    color:var(--white);

    font-size:28px;

    font-family:var(--heading-font);

    font-weight:700;

    margin-bottom:18px;

}

.f27-feature-card p{

    color:rgba(255,255,255,.75);

    font-size:16px;

    line-height:1.9;

    margin:0;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

    .f27-feature-section{

        padding:80px 0;

    }

    .f27-feature-card{

        padding:35px 25px;

    }

    .f27-feature-card h3{

        font-size:24px;

    }

}

@media(max-width:767px){

    .f27-feature-section{

        padding:70px 0;

    }

    .f27-feature-card{

        text-align:center;

    }

    .f27-feature-icon{

        margin:0 auto 20px;

    }

    .f27-feature-card h3{

        font-size:22px;

    }

    .f27-feature-card p{

        font-size:15px;

    }

}

@media(max-width:575px){

    .f27-feature-section{

        padding:60px 0;

    }

    .f27-feature-card{

        padding:30px 20px;

        border-radius:14px;

    }

    .f27-feature-icon{

        width:65px;

        height:65px;

    }

    .f27-feature-icon i{

        font-size:32px;

    }

    .f27-feature-card h3{

        font-size:20px;

    }

    .f27-feature-card p{

        font-size:14px;

        line-height:1.8;

    }

}



/*=========================================
        TESTIMONIAL SECTION
=========================================*/

.gh-review-section{

    padding:90px 0;

    background:#fff;

}

.gh-review-heading{

    text-align:center;

    margin-bottom:60px;

}

.gh-review-subtitle{

    display:block;

    color:var(--accent);

    font-size:15px;

    font-family:var(--heading-font);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.gh-review-title{

    margin:0;

    color:var(--primary);

    font-size:48px;

    font-family:var(--heading-font);

    font-weight:700;

}

.gh-review-line{

    display:block;

    width:55px;

    height:3px;

    background:var(--accent);

    margin:18px auto 0;

}

/*=========================================
Cards
=========================================*/

.gh-review-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:14px;

    padding:35px;

    height:100%;

    transition:var(--transition);

}

.gh-review-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,47,82,.10);

    border-color:var(--accent);

}

/*=========================================
Stars
=========================================*/

.gh-review-stars{

    margin-bottom:20px;

}

.gh-review-stars i{

    color:var(--accent);

    font-size:18px;

    margin-right:4px;

}

/*=========================================
Review Text
=========================================*/

.gh-review-text{

    color:var(--text-light);

    font-size:17px;

    line-height:1.9;

    margin-bottom:28px;

    font-family:var(--body-font);

}

/*=========================================
User
=========================================*/

.gh-review-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.gh-review-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--accent);

}

.gh-review-user h5{

    margin:0;

    color:var(--primary);

    font-size:20px;

    font-family:var(--heading-font);

    font-weight:600;

}

.gh-review-user span{

    display:block;

    margin-top:4px;

    color:var(--text-light);

    font-size:15px;

}

/*=========================================
Hover Effects
=========================================*/

.gh-review-card:hover h5{

    color:var(--accent);

}

.gh-review-card:hover img{

    transform:scale(1.08);

}

.gh-review-user img{

    transition:var(--transition);

}


/*=========================================
        Responsive CSS
=========================================*/

/*========== Large Devices ==========*/

@media (max-width:1199px){

    .gh-review-section{
        padding:80px 0;
    }

    .gh-review-title{
        font-size:42px;
    }

    .gh-review-card{
        padding:30px;
    }

    .gh-review-text{
        font-size:16px;
    }

}

/*========== Tablet ==========*/

@media (max-width:991px){

    .gh-review-section{
        padding:70px 0;
    }

    .gh-review-heading{
        margin-bottom:45px;
    }

    .gh-review-title{
        font-size:36px;
    }

    .gh-review-card{
        padding:28px;
    }

}

/*========== Mobile ==========*/

@media (max-width:767px){

    .gh-review-section{
        padding:60px 0;
    }

    .gh-review-subtitle{
        font-size:14px;
        letter-spacing:1px;
    }

    .gh-review-title{
        font-size:30px;
        line-height:1.3;
    }

    .gh-review-line{
        margin-top:15px;
    }

    .gh-review-card{
        padding:22px;
    }

    .gh-review-stars i{
        font-size:16px;
    }

    .gh-review-text{
        font-size:15px;
        line-height:1.8;
    }

    .gh-review-user img{
        width:55px;
        height:55px;
    }

    .gh-review-user h5{
        font-size:18px;
    }

    .gh-review-user span{
        font-size:14px;
    }

}

/*========== Small Mobile ==========*/

@media (max-width:575px){

    .gh-review-section{
        padding:50px 0;
    }

    .gh-review-title{
        font-size:26px;
    }

    .gh-review-card{
        max-width:360px;
        margin:auto;
    }

}