/* ==========================================================
   TOP BAR
==========================================================*/

.top-bar{

    background:linear-gradient(90deg,#071b30,#0A2540);

    color:#ffffff;

    font-size:14px;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.top-bar .row{

    align-items:center;

}

.top-bar i{

    color:#ff9800;

    margin-right:8px;

    font-size:15px;

}

.top-bar a{

    color:#ffffff;

}

.top-bar a:hover{

    color:#ff9800;

}

.top-bar .left-info{

    display:flex;

    align-items:center;

    gap:30px;

}

.top-bar .right-info{

    text-align:right;

    font-weight:500;

}

.top-bar .social-icons{

    display:flex;

    justify-content:flex-end;

    gap:15px;

}

.top-bar .social-icons a{

    width:35px;

    height:35px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    transition:.35s;

}

.top-bar .social-icons a:hover{

    background:#ff9800;

    transform:translateY(-3px);

}

.top-bar .social-icons i{

    color:#ffffff;

    margin:0;

}

/* Mobile */

@media(max-width:991px){

.top-bar{

    text-align:center;

    font-size:13px;

}

.top-bar .left-info{

    display:block;

}

.top-bar .right-info{

    text-align:center;

    margin-top:8px;

}

.top-bar .social-icons{

    justify-content:center;

    margin-top:12px;

}

}

@media(max-width:576px){

.top-bar{

    padding:10px 0;

    line-height:26px;

}

.top-bar i{

    margin-right:5px;

}

}
/*=========================================================
                TOP BAR
=========================================================*/

.top-bar{

    background:linear-gradient(90deg,#06192d,#0A2540);

    color:#ffffff;

    padding:12px 0;

    font-size:14px;

    font-weight:500;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.top-bar .container{

    display:flex;

    align-items:center;

}

.top-bar .row{

    width:100%;

    align-items:center;

}

.top-bar .col-lg-6{

    display:flex;

    align-items:center;

}

.top-bar .text-end{

    justify-content:flex-end;

}

.top-bar i{

    color:#ff9800;

    margin-right:8px;

    font-size:15px;

}

.top-bar span{

    margin-right:25px;

}

.top-bar a{

    color:#ffffff;

    transition:.35s;

}

.top-bar a:hover{

    color:#ff9800;

}

.top-bar strong{

    color:#ffffff;

}

.top-bar .phone{

    font-weight:600;

}

.top-bar .email{

    margin-left:25px;

}

.top-bar .working-hours{

    font-weight:500;

    letter-spacing:.5px;

}


/*=====================================
Hover Effect
=====================================*/

.top-bar:hover{

    background:linear-gradient(90deg,#082240,#103a63);

}


/*=====================================
Responsive
=====================================*/

@media(max-width:991px){

.top-bar{

    text-align:center;

    padding:14px 0;

}

.top-bar .col-lg-6{

    justify-content:center;

}

.top-bar .text-end{

    justify-content:center;

    margin-top:8px;

}

}

@media(max-width:576px){

.top-bar{

    font-size:13px;

    line-height:28px;

}

.top-bar .col-lg-6{

    display:block;

}

.top-bar i{

    margin-right:5px;

}

}
/*=========================================================
                HEADER & NAVBAR
=========================================================*/

.main-header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    z-index:9999;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.35s;

}

.main-header.scrolled{

    background:#ffffff;

    box-shadow:0 10px 35px rgba(0,0,0,.10);

}

.navbar{

    padding:18px 0;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:var(--primary)!important;

    letter-spacing:1px;

    text-transform:uppercase;

}

.logo img{

    max-height:55px;

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-item{

    margin-left:10px;

}

.navbar-nav .nav-link{

    color:var(--primary)!important;

    font-size:16px;

    font-weight:600;

    padding:10px 16px;

    position:relative;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:var(--accent)!important;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:15px;

    bottom:4px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.35s;

}

.navbar-nav .nav-link:hover::after{

    width:60%;

}

.navbar-nav .nav-link.active{

    color:var(--accent)!important;

}

.navbar-nav .nav-link.active::after{

    width:60%;

}


/*=========================================
Quote Button
=========================================*/

.quote-btn{

    margin-left:25px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:var(--accent);

    color:#ffffff;

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(255,152,0,.25);

}

.quote-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}


/*=========================================
Navbar Toggler
=========================================*/

.navbar-toggler{

    border:none;

    box-shadow:none!important;

}

.navbar-toggler:focus{

    box-shadow:none!important;

}


/*=========================================
Dropdown Ready
=========================================*/

.dropdown-menu{

    border:none;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.dropdown-item{

    padding:12px 20px;

    transition:.3s;

}

.dropdown-item:hover{

    background:var(--primary);

    color:#fff;

}


/*=========================================
Responsive
=========================================*/

@media(max-width:991px){

.main-header{

position:relative;

}

.navbar{

padding:15px 0;

}

.navbar-collapse{

background:#fff;

padding:20px;

margin-top:15px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-nav{

text-align:center;

}

.navbar-nav .nav-item{

margin:8px 0;

}

.quote-btn{

margin:20px auto 0;

display:flex;

width:220px;

}

}

@media(max-width:576px){

.logo{

font-size:22px;

}

.logo img{

max-height:45px;

}

.navbar{

padding:12px 0;

}

}
/*=========================================================
                    HERO SECTION
=========================================================*/

.hero{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:linear-gradient(rgba(10,37,64,.88),rgba(10,37,64,.88)),
               url("../images/hero.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,152,0,.08);

    border-radius:50%;

    right:-180px;

    top:-120px;

    filter:blur(50px);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero .row{

    align-items:center;

}

/*==========================
Hero Tag
==========================*/

.hero-tag{

    display:inline-block;

    padding:10px 20px;

    background:rgba(255,255,255,.12);

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

/*==========================
Heading
==========================*/

.hero h1{

    color:#fff;

    font-size:62px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:20px;

}

.hero p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    max-width:620px;

    margin-bottom:35px;

}

/*==========================
Buttons
==========================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn-primary-custom{

    min-width:210px;

    text-align:center;

}

.hero-buttons .btn-outline-custom{

    min-width:180px;

    text-align:center;

}

/*==========================
Hero Image
==========================*/

.hero-image{

    max-width:100%;

    animation:float 4s ease-in-out infinite;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));

}

/*==========================
Animation
==========================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.hero h1{

font-size:54px;

}

}

@media(max-width:991px){

.hero{

padding:120px 0 70px;

text-align:center;

min-height:auto;

}

.hero h1{

font-size:46px;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:60px;

max-width:80%;

}

}

@media(max-width:768px){

.hero{

padding:90px 0 60px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

.hero-tag{

font-size:13px;

}

.hero-image{

max-width:100%;

margin-top:40px;

}

}

@media(max-width:480px){

.hero h1{

font-size:32px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

}
/*=========================================================
                TRUST SECTION
=========================================================*/

.trust{

    background:#ffffff;

    padding:70px 0;

    margin-top:-60px;

    position:relative;

    z-index:10;

}

.trust .row{

    row-gap:25px;

}

.trust-box{

    background:#ffffff;

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #edf2f7;

    height:100%;

}

.trust-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.trust-box i{

    width:85px;

    height:85px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eef5ff;

    color:#0A2540;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.trust-box:hover i{

    background:#ff9800;

    color:#ffffff;

    transform:rotate(10deg) scale(1.08);

}

.trust-box h3{

    font-size:42px;

    font-weight:700;

    color:#0A2540;

    margin-bottom:10px;

}

.trust-box p{

    font-size:16px;

    color:#666;

    margin:0;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.trust{

margin-top:0;

padding:60px 0;

}

.trust-box{

padding:35px 20px;

}

}

@media(max-width:768px){

.trust-box{

padding:30px 20px;

}

.trust-box h3{

font-size:34px;

}

.trust-box i{

width:70px;

height:70px;

font-size:28px;

}

}

@media(max-width:480px){

.trust{

padding:50px 0;

}

.trust-box{

padding:25px 15px;

}

.trust-box h3{

font-size:30px;

}

.trust-box p{

font-size:15px;

}

}
/*=========================================================
                SERVICES SECTION
=========================================================*/

.services{

    padding:100px 0;

    background:#f7f9fc;

}

.services .section-title{

    margin-bottom:70px;

}

/*==========================
Service Card
==========================*/

.service-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#ff9800;

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/*==========================
Service Icon
==========================*/

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:#0A2540;

    font-size:34px;

    margin-bottom:30px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:#ff9800;

    color:#ffffff;

    transform:rotate(10deg) scale(1.08);

}

/*==========================
Heading
==========================*/

.service-card h4{

    font-size:24px;

    font-weight:700;

    color:#0A2540;

    margin-bottom:18px;

}

/*==========================
Description
==========================*/

.service-card p{

    color:#666;

    line-height:28px;

    margin-bottom:25px;

    min-height:80px;

}

/*==========================
Button
==========================*/

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#ff9800;

    font-weight:600;

    transition:.35s;

}

.service-card a:hover{

    color:#0A2540;

}

.service-card a i{

    font-size:14px;

    transition:.35s;

}

.service-card a:hover i{

    transform:translateX(6px);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.service-card{

padding:35px 25px;

}

}

@media(max-width:768px){

.services{

padding:80px 0;

}

.service-card{

padding:30px 20px;

}

.service-card h4{

font-size:22px;

}

.service-icon{

width:80px;

height:80px;

font-size:30px;

}

}

@media(max-width:480px){

.service-card{

padding:25px 18px;

}

.service-card p{

min-height:auto;

}

}
/*=========================================================
                BRANDS SECTION
=========================================================*/

.brands{

    padding:100px 0;

    background:#ffffff;

}

.brands .section-title{

    margin-bottom:70px;

}

/*==========================
Brand Box
==========================*/

.brand-box{

    background:#ffffff;

    height:170px;

    border-radius:20px;

    border:1px solid #edf2f7;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

    overflow:hidden;

}

.brand-box:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(0,0,0,.12);

}

/*==========================
Brand Logo
==========================*/

.brand-box img{

    max-width:140px;

    max-height:70px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:.35s;

}

.brand-box:hover img{

    filter:grayscale(0);

    opacity:1;

    transform:scale(1.08);

}

/*==========================
Hover Border
==========================*/

.brand-box::after{

    content:"";

    position:absolute;

    width:0;

    height:4px;

    bottom:0;

    left:0;

    background:#ff9800;

    transition:.35s;

}

.brand-box{

    position:relative;

}

.brand-box:hover::after{

    width:100%;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.brand-box{

height:150px;

}

.brand-box img{

max-width:120px;

}

}

@media(max-width:768px){

.brands{

padding:80px 0;

}

.brand-box{

height:130px;

padding:20px;

}

.brand-box img{

max-width:100px;

}

}

@media(max-width:480px){

.brand-box{

height:110px;

}

.brand-box img{

max-width:90px;

}

}
/*=========================================================
                WHY CHOOSE US
=========================================================*/

.why-us{

    padding:110px 0;

    background:#f7f9fc;

    position:relative;

}

.why-us::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,152,0,.05);

    border-radius:50%;

    left:-150px;

    top:-100px;

    filter:blur(40px);

}

.why-us .section-title{

    margin-bottom:70px;

}

/*==========================
Why Card
==========================*/

.why-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#ff9800;

    transform:scaleX(0);

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

/*==========================
Icon
==========================*/

.why-card i{

    width:90px;

    height:90px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:#0A2540;

    border-radius:50%;

    font-size:34px;

    margin-bottom:30px;

    transition:.35s;

}

.why-card:hover i{

    background:#ff9800;

    color:#fff;

    transform:rotate(8deg) scale(1.08);

}

/*==========================
Heading
==========================*/

.why-card h4{

    font-size:24px;

    font-weight:700;

    color:#0A2540;

    margin-bottom:18px;

}

/*==========================
Text
==========================*/

.why-card p{

    color:#666;

    line-height:28px;

    margin:0;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.why-card{

padding:35px 25px;

}

}

@media(max-width:768px){

.why-us{

padding:80px 0;

}

.why-card{

padding:30px 20px;

}

.why-card h4{

font-size:22px;

}

.why-card i{

width:75px;

height:75px;

font-size:28px;

}

}

@media(max-width:480px){

.why-card{

padding:25px 18px;

}

.why-card h4{

font-size:20px;

}

}
/*=========================================================
                INDUSTRIES SECTION
=========================================================*/

.industries{

    padding:110px 0;

    background:#ffffff;

    position:relative;

}

.industries .section-title{

    margin-bottom:70px;

}


/*==========================
Industry Card
==========================*/

.industry-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

}

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:0;

    background:linear-gradient(135deg,#0A2540,#12395F);

    transition:.4s;

    z-index:0;

}

.industry-card:hover::before{

    height:100%;

}


/*==========================
Content
==========================*/

.industry-card>*{

    position:relative;

    z-index:2;

}


/*==========================
Icon
==========================*/

.industry-card i{

    width:90px;

    height:90px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eef5ff;

    color:#0A2540;

    font-size:34px;

    margin-bottom:28px;

    transition:.35s;

}

.industry-card:hover i{

    background:#ff9800;

    color:#ffffff;

    transform:rotate(10deg) scale(1.08);

}


/*==========================
Heading
==========================*/

.industry-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#0A2540;

    transition:.35s;

}


/*==========================
Paragraph
==========================*/

.industry-card p{

    color:#666;

    line-height:28px;

    transition:.35s;

}


/*==========================
Hover Text
==========================*/

.industry-card:hover h4,

.industry-card:hover p{

    color:#ffffff;

}


/*==========================
Hover
==========================*/

.industry-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}


/*==========================
Responsive
==========================*/

@media(max-width:991px){

.industry-card{

padding:35px 25px;

}

}

@media(max-width:768px){

.industries{

padding:80px 0;

}

.industry-card{

padding:30px 20px;

}

.industry-card i{

width:75px;

height:75px;

font-size:28px;

}

.industry-card h4{

font-size:22px;

}

}

@media(max-width:480px){

.industry-card{

padding:25px 18px;

}

.industry-card h4{

font-size:20px;

}

}
/*=========================================================
                FEATURED PRODUCTS
=========================================================*/

.products{

    padding:110px 0;

    background:#f7f9fc;

}

.products .section-title{

    margin-bottom:70px;

}

/*==========================
Product Card
==========================*/

.product-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}


/*==========================
Product Image
==========================*/

.product-card img{

    width:100%;

    height:230px;

    object-fit:contain;

    padding:25px;

    background:#fff;

    transition:.45s;

}

.product-card:hover img{

    transform:scale(1.08);

}


/*==========================
Content
==========================*/

.product-card h4{

    font-size:24px;

    font-weight:700;

    color:#0A2540;

    margin-top:10px;

    margin-bottom:15px;

}

.product-card p{

    padding:0 25px;

    color:#666;

    min-height:75px;

}


/*==========================
Button
==========================*/

.product-btn{

    display:inline-block;

    margin:25px 0 30px;

    padding:14px 34px;

    border-radius:50px;

    background:#ff9800;

    color:#ffffff;

    font-weight:600;

    transition:.35s;

}

.product-btn:hover{

    background:#0A2540;

    color:#ffffff;

    transform:translateY(-3px);

}


/*==========================
Hover Border
==========================*/

.product-card{

    position:relative;

}

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#ff9800;

    transform:scaleX(0);

    transition:.35s;

}

.product-card:hover::before{

    transform:scaleX(1);

}


/*==========================
Responsive
==========================*/

@media(max-width:991px){

.product-card img{

height:200px;

}

}

@media(max-width:768px){

.products{

padding:80px 0;

}

.product-card img{

height:180px;

}

.product-card h4{

font-size:22px;

}

}

@media(max-width:480px){

.product-card p{

min-height:auto;

padding:0 20px;

}

.product-btn{

width:85%;

}

}
/*=========================================================
                RECENT PROJECTS
=========================================================*/

.projects{

    padding:110px 0;

    background:#ffffff;

}

.projects .section-title{

    margin-bottom:70px;

}

/*==========================
Project Card
==========================*/

.project-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #edf2f7;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

    height:100%;

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}


/*==========================
Project Image
==========================*/

.project-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}


/*==========================
Project Content
==========================*/

.project-content{

    padding:28px;

}

.project-content .badge{

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    letter-spacing:.5px;

}

.project-content h4{

    font-size:24px;

    font-weight:700;

    color:#0A2540;

    margin:18px 0 12px;

}

.project-content p{

    color:#666;

    line-height:28px;

    min-height:80px;

}


/*==========================
Button
==========================*/

.project-btn{

    display:inline-block;

    padding:13px 32px;

    background:#0A2540;

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.project-btn:hover{

    background:#ff9800;

    color:#ffffff;

    transform:translateY(-3px);

}


/*==========================
Top Border Animation
==========================*/

.project-card{

    position:relative;

}

.project-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#ff9800;

    transform:scaleX(0);

    transition:.35s;

    z-index:5;

}

.project-card:hover::before{

    transform:scaleX(1);

}


/*==========================
Responsive
==========================*/

@media(max-width:991px){

.project-card img{

height:220px;

}

}

@media(max-width:768px){

.projects{

padding:80px 0;

}

.project-card img{

height:200px;

}

.project-content{

padding:22px;

}

.project-content h4{

font-size:22px;

}

}

@media(max-width:480px){

.project-card img{

height:180px;

}

.project-content{

padding:20px;

}

.project-content p{

min-height:auto;

}

.project-btn{

width:100%;

text-align:center;

}

}
/*=========================================================
                TESTIMONIALS
=========================================================*/

.testimonials{

    padding:110px 0;

    background:#f7f9fc;

}

.testimonials .section-title{

    margin-bottom:70px;

}

/*==========================
Testimonial Card
==========================*/

.testimonial-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.testimonial-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#ff9800;

    transform:scaleX(0);

    transition:.35s;

}

.testimonial-card:hover::before{

    transform:scaleX(1);

}

/*==========================
Stars
==========================*/

.stars{

    font-size:22px;

    color:#FFC107;

    margin-bottom:20px;

    letter-spacing:3px;

}

/*==========================
Text
==========================*/

.testimonial-card p{

    font-size:16px;

    color:#666;

    line-height:30px;

    margin-bottom:30px;

    min-height:120px;

    font-style:italic;

}

/*==========================
Client
==========================*/

.client{

    display:flex;

    align-items:center;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    margin-right:18px;

    border:3px solid #ff9800;

}

.client h5{

    margin:0;

    font-size:20px;

    color:#0A2540;

    font-weight:700;

}

.client span{

    color:#777;

    font-size:14px;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.testimonial-card{

padding:30px;

}

}

@media(max-width:768px){

.testimonials{

padding:80px 0;

}

.testimonial-card{

padding:25px;

}

.testimonial-card p{

min-height:auto;

}

.client img{

width:60px;

height:60px;

}

.client h5{

font-size:18px;

}

}

@media(max-width:480px){

.client{

flex-direction:column;

text-align:center;

}

.client img{

margin:0 0 15px;

}

}
/*=========================================================
                CLIENT LOGOS
=========================================================*/

.clients{

    padding:100px 0;

    background:#ffffff;

}

.clients .section-title{

    margin-bottom:70px;

}

/*==========================
Logo Box
==========================*/

.clients .col{

    display:flex;

    justify-content:center;

    align-items:center;

}

.clients img{

    max-width:150px;

    max-height:70px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.65;

    transition:all .35s ease;

}

.clients img:hover{

    filter:grayscale(0);

    opacity:1;

    transform:scale(1.12);

}

/*==========================
Logo Container
==========================*/

.clients .col{

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:18px;

    padding:30px 20px;

    min-height:130px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.clients .col:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.clients{

padding:80px 0;

}

.clients img{

max-width:120px;

}

}

@media(max-width:768px){

.clients .col{

min-height:110px;

padding:25px 15px;

}

.clients img{

max-width:100px;

max-height:55px;

}

}

@media(max-width:480px){

.clients .col{

min-height:90px;

padding:20px 10px;

}

.clients img{

max-width:80px;

max-height:45px;

}

}
/*=========================================================
                    FAQ SECTION
=========================================================*/

.faq{

    padding:110px 0;

    background:#f7f9fc;

}

.faq .section-title{

    margin-bottom:70px;

}

/*==========================
Accordion
==========================*/

.accordion{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.accordion-button{

    background:#ffffff;

    color:#0A2540;

    font-size:18px;

    font-weight:600;

    padding:22px 28px;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:#0A2540;

    color:#ffffff;

}

.accordion-button::after{

    filter:brightness(0);

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(100);

}

.accordion-body{

    padding:25px 30px;

    background:#ffffff;

    color:#666;

    line-height:30px;

    font-size:16px;

}

/*==========================
Hover
==========================*/

.accordion-item:hover{

    transform:translateY(-3px);

    transition:.35s;

}

/*==========================
Responsive
==========================*/

@media(max-width:768px){

.faq{

padding:80px 0;

}

.accordion-button{

font-size:16px;

padding:18px 20px;

}

.accordion-body{

padding:20px;

}

}

@media(max-width:480px){

.accordion-button{

font-size:15px;

padding:16px;

}

.accordion-body{

font-size:15px;

line-height:28px;

}

}
/*=========================================================
                CONTACT SECTION
=========================================================*/

.contact{

    padding:110px 0;

    background:#ffffff;

}

.contact h2{

    font-size:42px;

    font-weight:700;

    color:#0A2540;

    margin-bottom:15px;

}

.contact p{

    color:#666;

    margin-bottom:35px;

}

/*==========================
Form
==========================*/

.contact form{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact .form-control{

    height:58px;

    border-radius:12px;

    border:1px solid #dfe6ee;

    padding:15px 20px;

    font-size:16px;

    margin-bottom:20px;

    transition:.35s;

    box-shadow:none;

}

.contact textarea.form-control{

    height:160px;

    resize:none;

}

.contact .form-control:focus{

    border-color:#ff9800;

    box-shadow:0 0 0 4px rgba(255,152,0,.15);

}

/*==========================
Button
==========================*/

.contact button{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:#ff9800;

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.contact button:hover{

    background:#0A2540;

    transform:translateY(-3px);

}

/*==========================
Google Map
==========================*/

.contact iframe{

    width:100%;

    height:100%;

    min-height:550px;

    border:none;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.contact{

padding:90px 0;

}

.contact iframe{

margin-top:40px;

min-height:420px;

}

}

@media(max-width:768px){

.contact form{

padding:30px;

}

.contact h2{

font-size:34px;

}

}

@media(max-width:480px){

.contact{

padding:70px 0;

}

.contact form{

padding:25px;

}

.contact h2{

font-size:28px;

}

.contact .form-control{

height:52px;

}

.contact textarea.form-control{

height:140px;

}

.contact iframe{

min-height:320px;

}

}
/*=========================================================
                    FOOTER
=========================================================*/

footer{

    background:#07192d;

    color:#ffffff;

    padding:90px 0 25px;

}

footer h4{

    color:#ffffff;

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

footer h5{

    color:#ffffff;

    font-size:20px;

    margin-bottom:25px;

}

footer p{

    color:rgba(255,255,255,.75);

    line-height:30px;

}

footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

footer ul li{

    margin-bottom:14px;

}

footer ul li a{

    color:rgba(255,255,255,.75);

    transition:.35s;

}

footer ul li a:hover{

    color:#ff9800;

    padding-left:6px;

}

/*==========================
Contact
==========================*/

footer .contact-info p{

    margin-bottom:14px;

}

footer .contact-info i{

    width:26px;

    color:#ff9800;

}

/*==========================
Social Icons
==========================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    transition:.35s;

}

.footer-social a:hover{

    background:#ff9800;

    transform:translateY(-5px);

}

/*==========================
Footer Bottom
==========================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

}

/*=========================================================
            FLOATING WHATSAPP
=========================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    color:#ffffff;

    transform:scale(1.1);

}

/*=========================================================
            SCROLL TO TOP
=========================================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:100px;

    width:55px;

    height:55px;

    background:#ff9800;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    background:#0A2540;

}

/*=========================================================
            RESPONSIVE
=========================================================*/

@media(max-width:991px){

footer{

text-align:center;

}

.footer-social{

justify-content:center;

margin-bottom:30px;

}

footer h4,

footer h5{

margin-top:20px;

}

}

@media(max-width:768px){

footer{

padding:70px 0 20px;

}

.footer-bottom{

margin-top:35px;

}

.whatsapp{

width:55px;

height:55px;

font-size:26px;

}

.scroll-top{

width:50px;

height:50px;

bottom:90px;

}

}

@media(max-width:480px){

.whatsapp{

right:15px;

bottom:15px;

}

.scroll-top{

right:15px;

bottom:80px;

}

}
/*=========================================================
        SCROLL REVEAL
=========================================================*/

.hidden-item{

opacity:0;

transform:translateY(70px);

transition:all .8s ease;

}

.show-item{

opacity:1;

transform:translateY(0);

}