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

:root{
    --bule: #003772;
    --yellow: #f38120;
}
body{
    font-family:'Poppins', sans-serif;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
ul{
    padding: 0;
    margin: 0;
}
img{
    max-width:100%;
    width: 100%;
}

.main-header {
    width: 100%;
    position: absolute;
    transition: 0.4s;
    z-index: 9999;
  
}
.dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.main-header .header-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.main-header .logo img{

    width:320px;
    transition:.4s;

}
 .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
.main-header .dropdown-menu .dropdown-item {
    font-size: 15px !important;
    color: #003772;
    font-weight: 600;
    background: transparent;
}
.main-header .dropdown-menu .dropdown-item:hover {
    background-color: #1a1a1a;
    color: #f38120;
}
    

.main-header .right-side{

    width:100%;

}

.main-header .top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    padding: 12px 0;
    border-bottom: 1px solid #ffffff85;
    transition: .4s;
}

.main-header .contact-info{

    display:flex;
    gap:20px;

}

.main-header .contact-info a{

    color:#fff;
    font-size:14px;
    font-weight:500;

}

.main-header .contact-info i {
    color: #f38120;
    margin-right: 5px;
}

.main-header .social-icons{

    display:flex;
    gap:8px;

}

.main-header .social-icons a{

    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    background-color: black;

}

.social-icons a:nth-child(1){background:#1877F2;}
.social-icons a:nth-child(2){background:#FF0000;}
.social-icons a:nth-child(3){ background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
              radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
              radial-gradient(circle farthest-corner at 0 0, #3d5afe, transparent 50%),
              radial-gradient(circle farthest-corner at 90% 10%, #d500f9, transparent 50%),
              linear-gradient(#833ab4, #e1306c, #fd1d1d, #f56040, #fcb045);}


.main-header .nav-link {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 0 10px;
    text-transform: uppercase;
}
.main-header .nav-link.active{
    color: #f38120;
}

.main-header .nav-link:hover{

    color:#f38120;

}

.main-header .enquire-btn{

    background:#073873;
    color:#fff;
    padding:11px 22px;
    border-radius:8px;
    margin-left:5px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    font-size: 13px;

}

.main-header .enquire-btn:hover{

    color:#fff;
    background:#f38120;

}

/* Sticky */

.main-header.sticky{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    animation:header .4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.main-header.sticky .top-bar{

    display:none;

}

.main-header.sticky .navbar{

    padding:10px 0;

}

.main-header.sticky .logo img{

    width:324px;

}
.main-header.sticky .nav-link {

    color: #000;

}

@keyframes header{

from{

transform:translateY(-100%);

}

to{

transform:translateY(0);

}

}

/* Responsive */

@media(max-width:991px){

.main-header .header-wrapper{

flex-direction:column;

}

.main-header .right-side{

width:100%;

}

.main-header .top-bar{

display:none;

}

.main-header .logo{

margin:15px 0;

}

.main-header .navbar-collapse{

background:#fff;
padding:20px;

}

.main-header .enquire-btn{

margin-top:15px;
margin-left:0;
display:flex;
justify-content:center;

}

}
.container{
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


/* header section ending stopping */

.banner img{
    height: 710px;
    object-fit: cover;
}



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

.industries-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url("../images/common-banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 38px 0;
}

.industries-section .section-title {
    margin-bottom: 32px;
}

.industries-section .section-title span {
    display: inline-block;
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 8px;
    font-weight: 500;
    width: 50px;
    height: 3px;
    background: #f3801f;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
}

.industries-section .section-title h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}


/*==========================
Grid
==========================*/

.industries-section .industries-grid{
    display:grid;
    grid-template-columns:repeat(9,1fr); 
    gap:18px;
}

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

.industries-section .industry-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 19px 9px;
    text-align: center;
    transition: .4s ease;
    min-height: 158px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.industries-section .industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#003772;
}



/*==========================
Icon
==========================*/

.industries-section .industry-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background-color: #003772;
}

.industries-section .industry-icon i {
    font-size: 28px;
    transition: .35s;
    color: white;
}

.industries-section .industry-card:hover .industry-icon i{
    transform:scale(1.1);
}

/*==========================
Text
==========================*/

.industries-section .industry-card h4{
    font-size:15px;
    font-weight:600;
    color:#222;
    line-height:1.35;
    margin:0;
}




@media(max-width:991px){

.industries-section{

padding:80px 0;

}

.industries-section .section-title{

text-align:center;

}

.industries-section .section-title h2{

font-size:36px;

}

.industries-section .industries-grid{

grid-template-columns:repeat(3,1fr);

}

.industries-section .industry-card{

min-height:170px;

}

}

@media(max-width:767px){

.industries-section .industries-grid{

grid-template-columns:repeat(2,1fr);
gap:15px;

}

.industries-section .section-title h2{

font-size:30px;

}

.industries-section .industry-card{

padding:25px 15px;
min-height:150px;

}

.industries-section .industry-icon{

width:60px;
height:60px;

}

.industries-section .industry-icon img{

width:52px;

}

.industries-section .industry-card h4{

font-size:17px;

}

}

@media(max-width:480px){

.industries-section{

padding:60px 0;

}

.industries-section .section-title h2{

font-size:28px;

}

.industries-section .industries-grid{

grid-template-columns:repeat(2,1fr);
gap:12px;

}

.industries-section .industry-card{

border-radius:18px;
padding:20px 10px;
min-height:135px;

}

.industries-section .industry-icon img{

width:45px;

}

.industries-section .industry-card h4{

font-size:15px;

}

}


/* .industries-section enddignmmlmklgfbmmmmmmmmmmmmmmmmnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn */


/*==============================
WHY CHOOSE SECTION
===============================*/

.why-choose{
   position: relative;
    padding: 50px 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/why-choose.png") center center / cover no-repeat;
}



.why-choose .container{
    position:relative;
    z-index:2;
}

/*==============================
Heading
===============================*/

.why-choose .section-heading {
    text-align: center;
    max-width: 950px;
    margin: auto;
    margin-bottom: 10px;
}

.why-choose .section-heading span{
    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-choose .section-heading h2{
    font-size:37px;
    color:#fff;
    margin:15px 0 20px;
    font-weight:700;
}

.why-choose .section-heading h2 span {
    color: #f37f1d;
    text-transform: none;
    letter-spacing: 0;
    font-size: 37px;
}

.why-choose .section-heading p {
    color: #d9d9d9;
    font-size: 13px;
    line-height: 23px;
}

/*==============================
Slider
===============================*/

.why-choose .why-slider{
    margin-top:20px;
}

.why-choose .why-item{
    padding:8px;
}

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

.why-choose .why-box {
    background: rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.15);
    height: 322px;
    padding: 45px 11px;
    text-align: center;
    transition: .4s;
    position: relative;
    overflow: hidden;
    border-radius: 9px;
}

.why-choose .why-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#f37f1d;

    transform:scaleX(0);

    transition:.4s;

}

.why-choose .why-box:hover::before{

    transform:scaleX(1);

}

.why-box:hover{

    transform:translateY(-10px);

    background:#013672;

    border-color:#fff;

}

.why-choose .why-box.active{

    background:#073873;

    border:2px solid #fff;

}

/*==============================
Icon
===============================*/

.why-choose .why-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    color: #073873;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
    transition: .4s;
}

.why-choose .why-box:hover .why-icon{

    transform:rotateY(180deg);

}

/*==============================
Text
===============================*/

.why-choose .why-box h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 21px;
}

.why-choose .why-box p {
    color: #f5f5f5;
    line-height: 21px;
    font-size: 14px;
}



/*==============================
Responsive
===============================*/



@media(max-width:991px){

 .why-choose{

padding:80px 0;

}

.why-choose .section-heading{

margin-bottom:40px;

}

.why-choose .section-heading h2{

font-size:34px;

}

.why-choose .section-heading h2 span{

font-size:34px;

}

.why-choose .why-box{

min-height:280px;
padding:35px 20px;

}

}

@media(max-width:767px){

.why-choose{

padding:60px 0;

}

.why-choose .section-heading h2{

font-size:28px;

}

.why-choose .section-heading h2 span{

font-size:28px;

}

.why-choose .section-heading p{

font-size:15px;
line-height:28px;

}

.why-choose .why-box{

min-height:auto;

}
.main-header .dropdown-menu .dropdown-item {
 
    text-wrap: auto;
}

}

/* .why-choose ehhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh */

/*====================================
OUR PRODUCT
====================================*/

.our-product{
    padding:40px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.our-product .section-title{
    margin-bottom:30px;
}

.our-product .section-title span {
    display: inline-block;
    color: #f37f1d;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.our-product .section-title h2 {
    font-size: 37px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.our-product .project-card {
    position: relative;
    width: 310px;
    height: 340px;
    overflow: hidden;
    background: #eee;
    margin: 0 10px;
}

.our-product .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

/* Optional dark overlay */
.our-product .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent 45%
    );
    opacity: 0;
    transition: .4s ease;
}

/* ==========================
   READ MORE BUTTON
========================== */

.our-product .project-link {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 48px;
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    background: #f38120;
}

/* Arrow */
.our-product .arrow {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;

    flex-shrink: 0;

    transition: .4s ease;
}

/* Read More */
.our-product .read-more {
    width: 0;
    opacity: 0;

    white-space: nowrap;
   text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;

    transform: translateX(20px);

    transition:
        width .4s ease,
        opacity .3s ease,
        transform .4s ease;
}
.our-product .view-btn {
    background: #39b54a;
    padding: 13px 12px;
    position: absolute;
    left: 0;
    width: 48%;
    bottom: 0;
    color: white;
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* ==========================
   HOVER
========================== */

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

.our-product .project-card:hover .project-overlay {
    opacity: 1;
}

.our-product .project-card:hover .read-more {
    width: 120px;
   
    opacity: 1;
    transform: translateX(0);
}

.our-product .project-card:hover .arrow {
    transform: translateX(3px);
}


/*====================================
Slider
====================================*/



/* .our-product     engfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfdgfd */

.manufacturing-process {
    background: linear-gradient(rgb(0 0 0 / 79%), rgb(0 0 0 / 75%)), url(../images/manufacured.jfif);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 38px 0;
}

.manufacturing-process .section-title{
    text-align:center;
    margin-bottom:60px;
}

.manufacturing-process .section-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manufacturing-process .section-title span {
    width: 70px;
    height: 4px;
    background: #f38120;
    display: block;
    margin: 15px auto 0;
    border-radius: 30px;
}

.manufacturing-process .process-flow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.manufacturing-process .process-item {
    width: 162px;
    text-align: center;
}

.manufacturing-process .icon-box{
    width:80px;
    height:80px;
    border:2px solid #d9d9d9;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    transition:.4s;
    background:#fff;
}

.manufacturing-process .icon-box i{
    font-size:28px;
    color:#003873;
}

.manufacturing-process .icon-box:hover{
    background:#f38120;
    border-color:#f38120;
}

.manufacturing-process .icon-box:hover i{
    color:#fff;
}
.manufacturing-process .step {
    display: inline-block;
    margin-top: 12px;
    background: #efefef;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #000000;
}

.manufacturing-process .process-item h4 {
    font-size: 14px;
    color: #ffffff;
    margin-top: 10px;
    font-weight: 600;
    line-height: 22px;
}

.manufacturing-process .line{
    flex:1;
    height:2px;
    background:#d7b2b2;
    position:relative;
    margin:0 10px;
}

.manufacturing-process .line::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #f38120;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width:991px){

.manufacturing-process .process-flow {
  
    justify-content: center;
    gap: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.manufacturing-process .line{
    display:none;
}

.manufacturing-process .process-item{
    width:45%;
}

}

@media(max-width:576px){

.manufacturing-process .process-item{
    width:100%;
}

.manufacturing-process .section-title h2{
    font-size:26px;
}

}


/* .process-section  ending      jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkkkkkkkkj */


.about-us{
    padding:80px 0 40px;
    background:#fff;
    overflow:hidden;
}

.about-us .about-image{
    position:relative;
    padding:40px;
}

.about-us .shape-border {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 6px solid #003873;
    top: -75px;
    left: -10px;
    z-index: 1;
    border-radius: 10px;
}
.about-us .scroll {
  
    height: 301px;
    overflow-y: auto;
    overflow-x: hidden;
}

.about-us .about-image img{
    width:100%;
    position:relative;
    z-index:2;
    border-radius:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-us .experience-box {
    position: absolute;
    top: -91px;
    right: 78px;
  
    color: #000000;
    padding: 20px 30px;
    border-radius: 10px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.about-us .experience-box h3 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
    color: #003873;
}

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



.about-us .sub-title{
    color:#003873;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.about-us .about-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 8px;
}

.about-us .about-content h2 span{
    color:#f37f1d;
}

.about-us .about-content p {
    color: #404040;
    line-height: 24px;
    margin-bottom: 10px;
    font-size: 14px;
}

.about-us .about-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.about-us .about-list li{
    margin-bottom:15px;
    font-size:17px;
    color:#222;
}

.about-us .about-list li i{
    color:#f37f1d;
    margin-right:10px;
}

.about-us .about-btn{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top: 14px;
}

.about-us .theme-btn {
    background: #f37f1d;
    color: #fff;
    padding: 11px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
    font-size: 15px;
}

.about-us .theme-btn:hover{
    background:#003873;
    color:#fff;
}



/* Responsive */

@media(max-width:991px){

.about-us{
    padding:70px 0;
}

.about-us .about-image{
    margin-bottom:50px;
}

.about-us .about-content h2{
    font-size:34px;
}

}

@media(max-width:767px){

.about-us .about-content h2{
    font-size:28px;
}

.about-us .experience-box{
    padding:15px 20px;
}

.about-us .experience-box h3{
    font-size:30px;
}

.about-us .shape-border{
    width:180px;
    height:180px;
}

}

/* .about-u contact is fggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg */

/*=========================================
CONTACT SECTION
=========================================*/

.contact-area{
    background:#faf8f3;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}



/*=========================
Left Side
=========================*/

.contact-area .contact-left{
    padding-right:40px;
}

.contact-area .sub-title{

    display:inline-block;

    font-size:14px;

    color:#f38120;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}



.contact-area .contact-left p {
    color: #666;
    line-height: 23px;
    margin-bottom: 33px;
    font-size: 14px;
}
/*=========================
Contact Card
=========================*/

.contact-area .contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:#fff;

    padding:18px;

    border-radius:12px;

    margin-bottom:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.4s;

}

.contact-area .contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.contact-area .contact-icon{

    width:58px;

    height:58px;

    min-width:58px;

    background:#f38120;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    font-size:22px;

}

.contact-area .contact-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 700;
}

.contact-area .contact-card p, .contact-card a {
    color: #013672;
    text-decoration: none;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-area .contact-card:hover .contact-icon{

    background:#003873;

}

/*=========================
Social
=========================*/

.contact-area .social-area{

    margin-top:35px;

}

.contact-area .social-area h6 {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 700;
    color: black;
}

.contact-area .social-area ul{

    display:flex;

    gap:12px;

    list-style:none;

    padding:0;

    margin:0;

}

.contact-area .social-area a{

    width:42px;

    height:42px;

    background:#f38120;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:.4s;

}

.contact-area .social-area a:hover{

    background:#003873;

    transform:translateY(-5px);

}

/*=========================
Form Box
=========================*/

.contact-area .contact-form-box{

    background:#fff;

    padding:45px;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-area .contact-form-box h3{

    font-size:36px;

    font-weight:700;

    margin-bottom:12px;

}

.contact-area .contact-form-box p{

    color:#777;

    margin-bottom:30px;

}

.contact-area .contact-form-box label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:#333;

}

/*=========================
Inputs
=========================*/

.contact-area .form-control{

    height:54px;

    border:1px solid #e4e4e4;

    border-radius:8px;

    box-shadow:none;

    padding:0 18px;

    transition:.3s;

}

.contact-area textarea.form-control{

    height:140px;

    resize:none;

    padding-top:15px;

}

.contact-area .form-control:focus{

    border-color:#003873;

    box-shadow:none;

}

/*=========================
Button
=========================*/

.contact-area .submit-btn{

    width:100%;

    height:56px;

    border:none;

    border-radius:8px;

    background:#f38120;

    color:#fff;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    transition:.4s;

}

.contact-area .submit-btn:hover{

    background:#003873;

}
.top-sec{
    display: none;
}
.top-sec .content {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 7px 0;
    border-bottom: 2px solid #003773;
 
}

.top-sec a {
    color: #003773;
    font-size: 13px;
    font-weight: 500;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.contact-area{

padding:80px 0;

}
.top-sec{
    display: block;
}

.contact-area .contact-left{

padding-right:0;

margin-bottom:40px;

}



.contact-area .contact-form-box{

padding:35px;

}
.main-header .navbar {
    padding: 10px 0;
    display: flex;
    justify-content: end;
}
.main-header .logo img {
    width: 248px;
    transition: .4s;
    position: absolute;
    left: 16px;
}
.main-header {
 
    background: white;
}
.main-header .nav-link {

    color: #000;
  
}
.main-header.sticky .logo img {
  width: 248px;
}
.banner img {
    height: 365px;
    object-fit: cover;
}

}

@media(max-width:767px){

.contact-area{

padding:60px 0;

}




.contact-area .contact-form-box{

padding:25px;

}

.contact-area .contact-form-box h3{

font-size:28px;

}

.contact-area .contact-card{

padding:15px;

}

.contact-area .contact-icon{

width:50px;

height:50px;

min-width:50px;

font-size:18px;

}

.contact-area .social-area ul{

justify-content:center;

flex-wrap:wrap;

}

}

/* .contact-area endingggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg */

/*=========================================
 FOOTER
=========================================*/

.footer {
    background: #07152f;
    padding: 30px 0 11px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Shape */

.footer::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    top:-180px;
    right:-150px;
}

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

/*=========================
Logo
=========================*/

.footer-logo img {
    max-width: 280px;
    margin-bottom: 25px;
}

/*=========================
About
=========================*/

.footer-about {
    color: #d6d6d6;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 30px;
}

/*=========================
Heading
=========================*/

.footer-widget h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
}

.footer-widget h4::after{

    content:"";

    width:55px;

    height:3px;

    background:#f38120;

    position:absolute;

    left:0;

    bottom:-10px;

}

/*=========================
Links
=========================*/

.footer-links{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-links li{

    margin-bottom:10px;

}

.footer-links li a {
    color: #d9d9d9;
    text-decoration: none;
    transition: .35s;
    position: relative;
    padding-left: 22px;
    display: inline-block;
    font-size: 14px;
}

.footer-links li a::before{

    content:"➜";

    position:absolute;

    left:0;

    color:#f38120;

    transition:.35s;

}

.footer-links li a:hover{

    color:#ffffff;

    padding-left:28px;

}

.footer-links li a:hover::before{

    left:6px;

}

/*=========================
Contact
=========================*/

.footer-contact{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:22px;

}

.footer-contact li i{

    color:#f38120;

    font-size:18px;

    margin-top:6px;

}

.footer-contact li span, .footer-contact li a {
    color: #d6d6d6;
    line-height: 24px;
    text-decoration: none;
    transition: .3s;
    font-size: 14px;
}

.footer-contact li a:hover{

    color:#fff;

}

/*=========================
Social
=========================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#132548;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.35s;

    font-size:18px;

}

.footer-social a:hover{

    background:#f38120;

    transform:translateY(-6px);

}

/*=========================
HR
=========================*/

.footer hr {
    border-color: rgb(255 255 255 / 83%);
    margin: 26px 0 25px;
}

/*=========================
Bottom
=========================*/

.footer-bottom{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p {
    margin: 0;
    color: #cfcfcf;
    font-size: 15px;
}
.footer-bottom p a{
    color: #f38120;
}

.footer-menu{

   text-align: center;

}

.footer-menu a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-menu a:hover{

    color:#f38120;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.footer{

padding:70px 0 25px;

}

.footer-widget{

margin-bottom:40px;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

}

@media(max-width:767px){

.footer{

padding:60px 0 20px;

}

.footer-widget h4{

font-size:24px;

}

.footer-about{

line-height:30px;

}

.footer-menu{

flex-direction:column;

gap:12px;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

text-align:center;
margin-bottom: 33px;

}

}


/* footer enfing kbbklmbmlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll */

.cta-strip {
    background: #f38120;
    padding: 17px 0;
}

.cta-strip .cta-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cta-strip .cta-left{
    flex:1.3;
}

.cta-strip .cta-left h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-strip .cta-left p {
    color: #f2f2f2;
    margin: 0;
    font-size: 14px;
}

.cta-strip .cta-contact{
    display:flex;
    gap:40px;
}

.cta-strip .contact-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.cta-strip .contact-box .icon {
    width: 55px;
    height: 55px;
    border: 2px solid rgb(0 56 115);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    background: #013672;
}

.cta-strip .contact-box span{
    display:block;
    color:#fff;
    font-size:13px;
    margin-bottom:3px;
}

.cta-strip .contact-box a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
}

.cta-strip .quote-btn {
    display: inline-block;
    background: #fff;
    color: #003873;
    padding: 11px 23px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: .3s;
}

.cta-strip .quote-btn:hover{
    background:#003873;
    color:#fff;
}

@media(max-width:992px){

.cta-strip .cta-wrapper{
    flex-direction:column;
    text-align:center;
}

.cta-strip .cta-contact{
    flex-direction:column;
    gap:20px;
}

.cta-strip .contact-box{
    justify-content:center;
}

}

@media(max-width:576px){

.cta-strip .cta-left h3{
    font-size:24px;
}

.cta-strip .contact-box{
    flex-direction:column;
}

.cta-strip .quote-btn{
    width:100%;
}

}

/* .cta-strip stopping ending for the greattttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt */

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

.about-section{
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}

.about-section .about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #023873;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.about-section .about-subtitle i{
    font-size:14px;
}

.about-section .about-title {
    font-size: 31px;
    line-height: 1.4;
    font-weight: 600;
    color: #000;
    margin-bottom: 13px;
}

.about-section .about-title span{
    color:#003873;
}

.about-section .about-desc {
    color: #121111cf;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
}
.about-section h5{
    font-weight: 600;
}



.about-section .about-bottom{
    display:flex;
    align-items:center;
    gap:35px;
    margin-top:35px;
}

.about-section .feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.about-section .feature-box{
    padding:15px 10px;
    transition:.3s;
}

.about-section .feature-box:hover{
    transform:translateY(-5px);
}

.about-section .feature-icon {
    width: 49px;
    height: 49px;
    margin: 0 auto 12px;
    border: 1.5px solid #003873;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #003873;
    font-size: 21px;
    transition: .3s;
}

.about-section .feature-box:hover .feature-icon{
    background:#003873;
    color:#fff;
}

.about-section .feature-box h6{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#222;
    line-height:1.5;
}



/*==============================
        RIGHT IMAGE
==============================*/

.about-section .about-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}





@keyframes float{

    0%{
        transform:translateY(0);
    }

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

    100%{
        transform:translateY(0);
    }

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1199px){

.about-section .about-title{
    font-size:48px;
}

.about-section .circle-bg{
    width:470px;
    height:470px;
}

}

@media(max-width:991px){

.about-section{
    text-align:center;
}

.about-section .about-title{
    font-size:42px;
}

.about-section .about-desc{
    font-size:18px;
}

.about-section .about-bottom{
    justify-content:center;
    flex-wrap:wrap;
}

.about-section .about-image{
    margin-top:60px;
}

}

@media(max-width:767px){

.about-section{
    padding:70px 0;
}

.about-section .about-title{
    font-size:34px;
}

.about-section .about-desc{
    font-size:16px;
}


.about-section .theme-btn{
    padding:15px 28px;
}

}

/* .about-section enfong stoppinggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg */

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    position: relative;
    padding: 40px 0 50px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.90),
            rgba(10, 10, 10, 0.96)
        ),
        url("../images/faq-bg.jpg") left center / cover no-repeat;

  
    overflow: hidden;
}

/* subtle question mark */

.faq-section::before {
    content: "?";
    position: absolute;
    left: 10px;
    bottom: -55px;
    font-size: 250px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
.faq-section span{
        color: #f38120;
    
    display: block;
    text-align: center;
    margin-bottom: 14px;

}
.faq-section .headding{
    color: white;
    text-align: center;
    margin-bottom: 20px;
}
.faq-section .accordion-item {
    color: var(--bs-accordion-color);
    background-color: transparent;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.faq-section .accordion-button:not(.collapsed) {
    color: white;
    background-color: transparent;
    box-shadow: none;
    border: 1px solid #fff;
}
.faq-section .accordion-button:not(.collapsed)::after {

    filter: invert(1);
}
.faq-section .accordion-button.collapsed {
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 18px;
}
.faq-section .accordion-button::after {
  
    filter: invert(1);
}
.faq-section .accordion-item:not(:first-of-type) {
    border-top: 0;
    margin-bottom: 10px;
    border: 1px solid #fff;
}
.faq-section .accordion-body {
    
    color: white;
    font-size: 14px;
}
.faq-section .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}


/* .faq-section sectomgkgmlmffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff */


/* =================================
   TESTIMONIAL SECTION
================================= */

.testimonial-section {
    position: relative;
    padding: 40px 0 20px;
    background: #fff;
    overflow: hidden;
}


/* =================================
   HEADING
================================= */

.testimonial-section .testimonial-heading {
    margin-bottom: 70px;
    padding-left: 25px;
    position: relative;
}

.testimonial-section .testimonial-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 27px;
    border-left: 2px solid #f38120;
    border-top: 2px solid #f37d19;
}

.testimonial-section .testimonial-heading span {
    display: block;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.testimonial-section .testimonial-heading span i {
    color: #ff4b16;
    font-size: 12px;
}

.testimonial-section .testimonial-heading h2 {
    margin: 0;
    color: #111;
    font-size: 34px;
    font-weight: 700;
}


/* =================================
   SLIDE
================================= */

.testimonial-section .testimonial-slide {
    position: relative;
    padding: 0 80px 0 70px;
}


/* =================================
   MAIN CARD
================================= */

.testimonial-section .testimonial-card {
    min-height: 230px;
    background: #f8f8f8;
    display: flex;
    align-items: center;

    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* =================================
   CUSTOMER INFO
================================= */

.testimonial-section .testimonial-user {
    width: 220px;
    min-width: 220px;

    padding: 30px 20px;

    text-align: center;

    border-right: 1px solid #ddd;
}


.testimonial-section .quote-icon {
    width: 82px;
    height: 82px;
    border: 1px solid #f38120;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section .quote-icon i {
    font-size: 32px;
    color: #f38120;
}


.testimonial-section .testimonial-user h4 {
    margin: 0 0 8px;

    color: #222;
    font-size: 16px;
    font-weight: 700;
}

 
.testimonial-section .testimonial-user p {
    margin: 0;

    color: #888;
    font-size: 14px;
}


/* =================================
   REVIEW CONTENT
================================= */

.testimonial-section .testimonial-content {
    flex: 1;
    padding: 35px 45px;
    text-align: center;
}

.testimonial-section .testimonial-content p {
    margin: 0;

    color: #777;

    font-size: 16px;
    line-height: 2;

    max-width: 750px;
    margin: auto;
}


/* =================================
   CUSTOMER IMAGE
================================= */

.testimonial-section .testimonial-image {
    position: absolute;
    right: 66px;
    top: -65px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    z-index: 5;
}

.testimonial-section .testimonial-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =================================
   SLICK DOTS
================================= */

.testimonial-section .testimonial-slider {
    position: relative;
}

.testimonial-section .testimonial-slider .slick-dots {
    position: absolute;
    right: 29px;
    top: 74%;
    transform: translateY(-50%);
    width: 25px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.testimonial-section .testimonial-slider .slick-dots li {
    width: 15px;
    height: 15px;

    margin: 0;

    padding: 0;
}

.testimonial-section .testimonial-slider .slick-dots li button {
    width: 15px;
    height: 15px;
    padding: 0;
    border: 3px solid #ddd;
    border-radius: 50%;
    background: #003873;
    font-size: 0;
    position: relative;
}

.testimonial-section .testimonial-slider .slick-dots li button::before {
    display: none;
}

.testimonial-section .testimonial-slider .slick-dots li.slick-active button {
    border-color: #ddd;
}

.testimonial-section .testimonial-slider .slick-dots li.slick-active button::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    background: #f38120;

    border-radius: 50%;

    top: 1px;
    left: 1px;
}
.testimonial-section .slick-list {
    position: relative;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 0;
}


/* =================================
   RESPONSIVE
================================= */

@media(max-width: 991px) {

   .testimonial-section  .testimonial-slide {
        padding: 0 50px 0 20px;
    }

    .testimonial-section .testimonial-card {
        min-height: auto;
    }

    .testimonial-section .testimonial-user {
        width: 190px;
        min-width: 190px;
    }

    .testimonial-section .testimonial-content {
        padding: 30px;
    }

    .testimonial-section .testimonial-image {
        width: 110px;
        height: 110px;

        top: -50px;
    }

}


@media(max-width: 767px) {

    .testimonial-section {
        padding: 60px 0 70px;
    }

    .testimonial-section .testimonial-heading {
        margin-bottom: 60px;
    }

    .testimonial-section .testimonial-heading h2 {
        font-size: 28px;
    }

    .testimonial-section .testimonial-slide {
        padding: 0 35px 0 0;
    }

    .testimonial-section .testimonial-card {
        display: block;
    }

    .testimonial-section .testimonial-user {
        width: 100%;
        min-width: 100%;
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .testimonial-section .testimonial-content {
        padding: 30px 20px 40px;
    }

    .testimonial-section .testimonial-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .testimonial-section .testimonial-image {
        width: 90px;
        height: 90px;

        right: 0;
        top: -45px;
    }

    .testimonial-section .testimonial-slider .slick-dots {
        right: -5px;
    }

}



    .desktop-floating-contact {
    position: fixed;
    left: 30px;
    bottom: 4%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.desktop-floating-contact a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    transition: .3s ease;
    font-size: 21px;
}
.desktop-floating-contact a span{
    display: none;
}
.float-call{
    background-color: #a53693;
}
.float-whatsapp {
    background: #25d366;
    animation: whatsappPulse 1.8s infinite;
}
.float-enquiry {
    background: #ea3333;
}
 .desktop-floating-contact a:hover {
        transform: scale(1.1);
    }

    @keyframes    whatsappPulse {

        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
        }

        70% {
            box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .enquiry-popup {
    position: fixed;
    top: 49%;
    left: 50%;
    width: 300px;
    max-width: 95%;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -70%);
    transition: all .4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9998;
}
.close-popup {
    position: absolute;
    right: 15px;
    top: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}
.popup-header {
    background: #073873;
    color: #fff;
    padding: 16px 0px 16px;
    font-size: 21px;
    font-weight: 600;
    align-items: center;
    text-align: center;
}
.popup-body {
    padding: 20px;
}
.popup-body p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 15px;
    color: black;
}
.popup-body input, .popup-body textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 12px;
    outline: none;
}
.popup-body textarea {
    height: 100px;
    resize: none;
}
.popup-body button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    cursor: pointer;
    font-size: 16px;
}

.enquiry-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.enquiry-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media  screen and (max-width:480px) {
    .popup-body p strong{
        display: block;
    }
      
.popup-body input, .popup-body textarea {
  
    padding: 6px 12px;
  
    border-radius: 5px;
}
.popup-body {
    padding: 14px;
}
.popup-header {
 
    padding: 8px 0px 8px;
    font-size: 18px;
   
}
.close-popup {
 
    top: 9px; 
  
}

.enquiry-popup {
    
    border-radius: 10px;
    width: 370px;
}
.popup-header {
  
    border-radius: 10px 10px 0 0;
}

.desktop-floating-contact {
    left: 0;
    bottom: 0;
    display: flex;
    gap: 0px;
    width: 100%;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.desktop-floating-contact a {

    border-radius: 0%;
   font-size: 16px;
    width: 100%;
}
.desktop-floating-contact a span{
    display: block;
    padding-left: 5px;
}
.float-whatsapp {

    animation: none;
   
}

    
}


/* ==========================================
   BREADCRUMB SECTION
========================================== */

.breadcrumb-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(3 58 116 / 90%), rgb(45 45 45 / 87%)), url(../images/kk.png) center center / cover no-repeat;
    padding: 180px 0 74px;
}


/* ==========================================
   DECORATIVE OVERLAY
========================================== */

.breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    top: 0;
    right: 0;

    width: 330px;
    height: 100%;

    background-image: radial-gradient(
        rgba(255,255,255,.35) 1.3px,
        transparent 1.3px
    );

    background-size: 9px 9px;

    opacity: .35;

    pointer-events: none;
}


/* ==========================================
   CONTAINER
========================================== */

.breadcrumb-section .container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 0 15px;
}


/* ==========================================
   CONTENT
========================================== */

.breadcrumb-section .breadcrumb-content {
    position: relative;

    padding: 20px 0;
}




/* ==========================================
   PAGE TITLE
========================================== */

.breadcrumb-section .breadcrumb-content h1 {
    position: relative;

    margin: 0 0 18px;

    color: #fff;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}


/* Green/white underline */

.breadcrumb-section .breadcrumb-content h1::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin-top: 12px;

    border-radius: 10px;

    background: #b5d934;
}


/* ==========================================
   BREADCRUMB NAV
========================================== */

.breadcrumb-section .breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    color: rgba(255,255,255,.75);

    font-size: 13px;
}


/* Links */

.breadcrumb-section .breadcrumb-nav a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.breadcrumb-section .breadcrumb-nav a:hover {
    color: #c8e66c;
}


/* Home icon */

.breadcrumb-section .breadcrumb-nav a i {
    font-size: 11px;
}


/* Arrow */

.breadcrumb-section .breadcrumb-nav > span:not(.current-page) {
    color: #b8d97c;

    font-size: 9px;
}


/* Current page */

.breadcrumb-section .breadcrumb-nav .current-page {
    color: #dcecc9;

    font-weight: 500;
}


/* ==========================================
   DECORATIVE CIRCLE
========================================== */

.breadcrumb-section::before {
    content: "";

    position: absolute;

    left: -100px;
    bottom: -120px;

    width: 280px;
    height: 280px;

    border: 45px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


/* ==========================================
   SECOND DECORATION
========================================== */

.breadcrumb-section::after {
    content: "";

    position: absolute;

    right: 70px;
    bottom: -65px;

    width: 150px;
    height: 150px;

    border: 18px solid rgba(181,217,52,.13);

    border-radius: 50%;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .breadcrumb-section {
        min-height: 240px;
    }

    .breadcrumb-section .breadcrumb-content h1 {
        font-size: 36px;
    }

    .breadcrumb-section .breadcrumb-overlay {
        width: 220px;
    }

}


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

@media (max-width: 575px) {

    .breadcrumb-section {
        min-height: 200px;
    }

    .breadcrumb-section .container {
        padding: 0 18px;
    }

    .breadcrumb-section .breadcrumb-content {
        padding: 15px 0;
    }

    .breadcrumb-section .breadcrumb-small {
        margin-bottom: 7px;

        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .breadcrumb-section .breadcrumb-content h1 {
        margin-bottom: 14px;

        font-size: 29px;
    }

    .breadcrumb-section .breadcrumb-content h1::after {
        width: 45px;
        height: 2px;
        margin-top: 9px;
    }

    .breadcrumb-section .breadcrumb-nav {
        gap: 8px;
        font-size: 11px;
    }

    .breadcrumb-section .breadcrumb-overlay {
        width: 130px;
        opacity: .25;
    }

    .breadcrumb-section::before {
        left: -130px;
        bottom: -140px;
    }

    .breadcrumb-section::after {
        right: -50px;
        bottom: -70px;
    }
    .about-us {
    padding: 101px 0;
}
.about-us .experience-box {

    right: 1px;

}

}
