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

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}
p{
	margin:0px;
	padding:0px;
	line-height:1.2em;
}
/*=========================
TOP HEADER
=========================*/

.top-bar{
    background:#071c34;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-left{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.top-left span{
    display:flex;
    align-items:center;
    gap:8px;
}
.form-col p {
    margin-bottom: 0px;
}
.top-left i{
    color:#ff9800;
}
.contact-form-submit
.location{
    display:flex;
    justify-content:end;
    align-items:center;
    gap:8px;
}

.location i{
    color:#ff9800;
}
.top-left span,
.location{
    transition:.35s ease;
    cursor:pointer;
}

.top-left span:hover,
.location:hover{
    color:#ff9800;
    text-shadow:
        0 0 8px rgba(255,152,0,.6),
        0 0 15px rgba(255,152,0,.4);
}
.logo{
    height: 90px;   
    width: auto;
    transition: .3s;
}
/*=========================
NAVBAR
=========================*/

.navbar{
     padding:8px 0;
    transition:.4s;
}


.nav-link{
    color:#000;
    font-weight:600;
    margin:0 15px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#ff9800;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    font-weight:600;
    border-radius:8px;
}

.whatsapp-btn:hover{
    background:#1fb457;
    color:#fff;
}
.nav-link{
    position:relative;
    display:inline-block;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:3px;
    background:#ff9800;
    transition:.35s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}
.whatsapp-btn{
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.whatsapp-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 15px #25D366,
    0 0 30px rgba(37,211,102,.5);
}
.fixed-nav{

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.12);

padding:8px 0;

}
.glass-box{
    background:rgba(8,30,58,.75);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    padding:55px;
    max-width:680px;
    border-radius:24px;

    border:1px solid rgba(255,255,255,.18);

    box-shadow:0 20px 45px rgba(0,0,0,.45);
}
.shine-text{
    color:#ff9800;
    display:inline-block;
    animation: floatText 3s ease-in-out infinite;
    text-shadow:
        0 0 10px rgba(255,152,0,.8),
        0 0 25px rgba(255,152,0,.5);
}

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

@keyframes shineText{

0%{
background-position:-300%;
}

100%{
background-position:300%;
}

}
/*=========================
HERO SECTION
=========================*/

.hero-section{

    position:relative;
    padding-top: 15px;

   min-height:720px;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    top:0;

    left:0;

    z-index:-2;
    animation:zoomVideo 18s linear infinite alternate;

}

@keyframes zoomVideo{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}
.hero-btn{
    display:inline-block;
    position:relative;
    overflow:hidden;
    z-index:1;

    background:#ff9800;
    color:#fff;

    padding:16px 34px;
    border-radius:10px;

    font-weight:700;
    transition:.4s;
    animation:pulse 2s infinite;
}



 .hero-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:1%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );
    transform:skewX(-25deg);
    animation:shineBtn 12s infinite;
}



@keyframes pulse{

0%{

box-shadow:0 0 0 rgba(255,152,0,.4);

}

50%{

box-shadow:0 0 30px rgba(255,152,0,.7);

}

100%{

box-shadow:0 0 0 rgba(255,152,0,.4);

}

}



@keyframes heroFade{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.overlay{

    position:absolute;
    inset:0;
/*     background:linear-gradient(
        90deg,
        rgba(7,25,49,.82) 0%,
        rgba(7,25,49,.55) 35%,
        rgba(7,25,49,.20) 70%,
        rgba(7,25,49,0) 100%
    ); */

}

.hero-height{

    min-height:650px;

}


.hero-content h1 p {
    font-size: 65px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2em;
}

.hero-content span{

    color:#ff9800;

}

.hero-content h2 p{

    font-size:40px;

    font-weight:700;
    line-height:1.2em;
    color:#fff;
    text-shadow:0 3px 12px rgba(0,0,0,.45);

}

.line{

    width:90px;

    height:4px;

    background:#ff9800;

    margin:30px 0;

}

.hero-content p{

     color:#f2f2f2;
    font-size:18px;
    line-height:1.2em;

    

}

.hero-content p span{

    margin:0 12px;

}

.hero-content h5{

    color:#ff9800;

    margin-bottom:24px;
margin-top:24px;
    font-weight:700;

}
span.banner_para p {
    font-size: 15px;
}
span.banner_para {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

@keyframes shineBtn{

0%{
left:-120%;
}

100%{
left:160%;
}

}



.hero-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:

    0 0 20px #ff9800,

    0 0 40px rgba(255,152,0,.4);

}

/*=========================
CRUSHER SECTION
=========================*/

.crusher-section{

    background:#f8f9fa;
    padding:80px 0;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b1f38;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    width:90px;
    height:4px;
    background:#ff9800;
     display: none;
}

.section-title p{
    margin-top:22px;
    color:#666;
    font-size:17px;
}

/*=========================
PRODUCT CARD
=========================*/

.product-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.4s;
    height:430px; 
    width:100%;  
    display:flex;
    flex-direction:column;
	margin-bottom:15px;
   
   

}

.product-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:15px;
    background:#fff;
    transition:.4s;
}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:18px;
    text-align:center;

}

.product-content h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:12px;

}

.product-content p{

    min-height:55px;
    font-size:16px;
    line-height:26px;
    color:#666;

}

.quote-btn{

    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:12px 25px;
    background:#ff9800;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    overflow:hidden;
    z-index:1;

}
.quote-btn::before{
     content:"";
    position:absolute;
    inset:-6px;
    border-radius:12px;
    border:2px solid rgba(255,170,0,.35);
    box-shadow:
        0 0 8px rgba(255,170,0,.6),
        0 0 18px rgba(255,170,0,.45);
    
}
.quote-btn::after{
    content:"";
    position:absolute;
    width:2px;
    height:180%;
    background:linear-gradient(
        transparent,
        rgba(255,255,255,.95),
        transparent
    );
    top:-40%;
    left:-80px;
    transform:rotate(35deg);
    animation:borderLight 8s linear infinite;
    filter:blur(2px);
}

@keyframes borderLight{

    0%{
        left:-80px;
    }

    100%{
        left:150%;
    }

}

.quote-btn span{
     position:relative;
    z-index:2;
}
.quote-btn i{
    position:relative;
    z-index:2;
}

.quote-btn:hover{

    color:#fff;
    background:#ff8500;
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(255,152,0,.7);

}
.quote-btn::after{
    content:"";
    position:absolute;
    width:2px;
    height:180%;
    background:linear-gradient(
        transparent,
        rgba(255,255,255,.95),
        transparent
    );
    top:-40%;
    left:-80px;
    transform:rotate(35deg);
    animation:borderLight 6s linear infinite;
    filter:blur(2px);
}

@keyframes borderLight{

    0%{
        left:-80px;
    }

    100%{
        left:150%;
    }

}

.owl-carousel .owl-stage{
    display:flex;
}


.crusher-slider .owl-stage{
    display:flex;
    align-items:stretch;
}
.crusher-slider .owl-item{
    display:flex;
    padding:0 12px;
}

/*=========================
WHATSAPP CTA
=========================*/

.bottom-cta{
    margin-top:40px;
}

.cta-left{
    background:#0d2b4f;
    color:#fff;
    padding:35px;
    height:100%;
}

.cta-left h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:12px;
}

.cta-left span{
    color:#ff9800;
}

.cta-left p{
    color:#ddd;
    margin:0;
}

.cta-center{
    background:#123761;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:35px;
    height:100%;
}

.whatsapp-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
}

.whatsapp-icon i{
    font-size:34px;
    color:#fff;
}

.cta-center h4{
    color:#ff9800;
    font-weight:700;
    margin-bottom:5px;
}

.cta-center p{
    margin:0;
    color:#ddd;
}

.cta-map{
    background:url("../images/world-map.jpg") center center no-repeat;
    background-size:cover;
    background-position: center;
    min-height:200px;
    width:100%;
}
.bottom-cta .row{
    display:flex;
    flex-wrap:nowrap;
    margin:0;
}
.bottom-cta .col-lg-4{
     flex:0 0 33.333333%;
    max-width:33.333333%;
    padding:0;
    display:flex;
}
.bottom-cta .row > div{
    padding:0;
}

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

.why-choose{
    background:#fff;
    padding:80px 0;
}

.section-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:60px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#1d1d1d;
    margin:0;
    text-transform:uppercase;
}

.title-line{
    width:90px;
    height:3px;
    background:#f39c12;
}

.why-box{
    background:#fff;
    text-align:center;
    border-radius:18px;
    padding:35px 25px;
    border:1px solid #ececec;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s ease;
}

.why-box i{
    font-size:52px;
    color:#f39c12;
    margin-bottom:18px;
}

.why-box h5{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
    line-height:1.4;
}

.why-box p{
    font-size:16px;
    color:#666;
    line-height:1.7;
    margin:0;
}

.why-box:hover{
    transform:translateY(-8px);
      box-shadow:0 18px 40px rgba(0,0,0,.15);
    border-color:#ff9800;
}

.why-box:last-child{
    border-right:none;
}
/*=========================
FOOTER
=========================*/

.footer{
    background:#0b1f38;
    color:#fff;
    padding:50px 0 20px;
}

.footer-box{
    padding:35px;
}

.footer-logo{
  display:block;
    width:320px;
    max-width:100%;
    height:auto;
    margin-bottom:25px;
}

.footer-box p{
    color:#cfd6df;
    line-height:1.8;
    font-size:15px;
}

.footer h5{
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-bottom:20px;
}

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

.footer ul li{
    margin-bottom:12px;
    color:#d6d6d6;
    font-size:15px;
}

.footer ul li i{
    color:#ff9800;
    margin-right:8px;
}

.footer ul li a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#ff9800;
}

.footer-video{
    width:100%;
    height:280px;
    border-radius:12px;
    overflow:hidden;
    padding:30px;
    text-align:center;
    margin-bottom:20px;
}

.footer-video h5{
    margin-bottom:15px;
}

.footer-video video{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.footer-bottom{
    text-align:center;
    background:#081728;
    border-top:1px solid rgba(255,255,255,.08);
    padding:18px 0;
    color:#cfcfcf;
    font-size:15px;
}
.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
}

.footer-contact li i{
    color:#ff9800;
    font-size:18px;
    width:22px;
    flex-shrink:0;
    margin-top:4px;
}

.footer-contact li span,
.footer-contact li a{
    word-break:break-word;
    color:#fff;
    text-decoration:none;
    line-height:1.7;
}
.footer-contact li a:hover{
    color:#ff9800;
}

.footer-logo img{
    height:110px;     
    width:auto;
    display:block;
}
.footer-contact{
    max-width:320px;
    list-style:none;
    padding:0;
    margin:0;

}
.footer-top{
    padding-bottom:35px;
}

/*my-css*/
 .feature-section {
           
            padding: 10px 0;
        }

        .feature-bar {
           background-color:#0d2b4f;
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 20px;
            padding: 20px 25px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);
        }

        .feature-item {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 75px;
            padding: 5px 25px;
        }

        /* Vertical separator */
        .feature-bar .feature-col {
    position: relative;
}

/* Divider after 1st & 2nd column */
.feature-bar .feature-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    width: 1px;
    height: 60px;

    background: rgba(255, 255, 255, 0.25);
}

/* Small orange accent in divider */


        /* Icon Circle */
       


        /* Text */
        .feature-content span {
            display: block;
            color: #ffffff;
            font-size: 17px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .feature-content small {
            color: #b7bec7;
            font-size: 13px;
            font-weight: 400;
        }

        /* Orange accent */
        .feature-content span::first-letter {
            color: #ffffff;
        }


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

        .feature-item:hover .feature-icon {
            background: #f59b00;
            color: #ffffff;
            box-shadow:
                0 0 20px rgba(245, 155, 0, 0.35),
                0 0 0 4px rgba(245, 155, 0, 0.10);
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon::before {
            border-color: rgba(255, 255, 255, 0.55);
        }

        .feature-item:hover .feature-content span {
            color: #f59b00;
            transition: all 0.3s ease;
        }


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

        @media (max-width: 991px) {

            .feature-bar {
                padding: 15px;
            }

            .feature-item {
                padding: 10px 15px;
            }

            .feature-icon {
                width: 58px;
                height: 58px;
                min-width: 58px;
                font-size: 23px;
                margin-right: 13px;
            }

            .feature-content span {
                font-size: 15px;
            }

            .feature-content small {
                font-size: 12px;
            }

        }


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

        @media (max-width: 767px) {

            .feature-section {
                padding: 15px;
            }

            .feature-bar {
                border-radius: 15px;
                padding: 10px;
            }

            .feature-item {
                padding: 15px 10px;
                min-height: auto;
            }

            .feature-item:not(:last-child)::after {
                display: none;
            }

            .feature-icon {
                width: 58px;
                height: 58px;
                min-width: 58px;
            }

            .feature-content span {
                font-size: 15px;
            }

            .feature-content small {
                font-size: 12px;
            }

        }


/*loader*/
/* =====================================================
           LOADER
        ===================================================== */

        #pageLoader {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100vh;

            background: #000;

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

            z-index: 99999;

            opacity: 1;
            visibility: visible;

            transition:
                opacity 0.7s ease,
                visibility 0.7s ease;
        }


        /* Loader Hide */

        #pageLoader.hide-loader {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }


        /* =====================================================
           LOGO WRAPPER
        ===================================================== */

        .loader-wrapper {
            width: 160px;
            height: 160px;

            position: relative;

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

            animation: logoScale 3s ease-in-out forwards;
        }


        /* =====================================================
           CIRCULAR LOADING
        ===================================================== */

        .loader-ring {
            position: absolute;

            width: 150px;
            height: 150px;

            border-radius: 50%;

            background:
                conic-gradient(
                    from 0deg,
                    #ff8c32 0deg,
                    #ff8c32 85deg,
                    #292929 85deg,
                    #292929 360deg
                );

            -webkit-mask:
                radial-gradient(
                    farthest-side,
                    transparent calc(100% - 10px),
                    #000 calc(100% - 9px)
                );

            mask:
                radial-gradient(
                    farthest-side,
                    transparent calc(100% - 10px),
                    #000 calc(100% - 9px)
                );

            animation:
                ringRotate 3s linear forwards;
        }


        /* =====================================================
           LOGO
        ===================================================== */

        .loader-logo {
            width: 75px;
            height: 75px;

            object-fit: contain;

            position: relative;
            z-index: 5;

            animation: logoGrow 3s ease-in-out forwards;
        }


        /* =====================================================
           LOGO SCALE
        ===================================================== */

        @keyframes logoGrow {

            0% {
                transform: scale(0.45);
                opacity: 0.45;
            }

            25% {
                transform: scale(0.70);
                opacity: 0.75;
            }

            50% {
                transform: scale(0.85);
                opacity: 0.90;
            }

            75% {
                transform: scale(0.95);
                opacity: 1;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }

        }


        /* =====================================================
           OUTER WRAPPER SCALE
        ===================================================== */

        @keyframes logoScale {

            0% {
                transform: scale(0.65);
            }

            50% {
                transform: scale(0.90);
            }

            100% {
                transform: scale(1);
            }

        }


        /* =====================================================
           RING ROTATION
        ===================================================== */

        @keyframes ringRotate {

            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }

        }


        /* =====================================================
           WEBSITE
        ===================================================== */

        #mainWebsite {
            opacity: 0;

            animation: websiteShow 0.8s ease forwards;

            animation-delay: 3.1s;
        }


        @keyframes websiteShow {

            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }

        }


        /* =====================================================
           DEMO WEBSITE
        ===================================================== */

        .hero-section {
            min-height: 100vh;

            background:
/*                 linear-gradient(
                    rgba(5, 24, 45, 0.92),
                    rgba(5, 24, 45, 0.92)
                ); */

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

            color: #fff;
        }


        .hero-title {
            font-size: 60px;
            font-weight: 800;
        }


        .orange-text {
            color: #ff9418;
        }


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

        @media (max-width: 575px) {

            .loader-wrapper {
                width: 130px;
                height: 130px;
            }

            .loader-ring {
                width: 125px;
                height: 125px;
            }

            .loader-logo {
                width: 62px;
                height: 62px;
            }

            .hero-title {
                font-size: 40px;
            }

        }


.popup-overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

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

    z-index: 99998;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}


/* Popup Show */

.popup-overlay.show-popup {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   POPUP BOX
===================================================== */

.welcome-popup {

    width: 500px;
    max-width: calc(100% - 30px);

    position: relative;

    background: #0b294d;

    border: 1px solid rgba(255, 148, 24, 0.35);

    border-radius: 20px;

    padding: 55px 45px 45px;

    text-align: center;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 148, 24, 0.08);

    transform: translateY(35px) scale(0.92);

    transition:
        transform 0.5s cubic-bezier(.17,.67,.3,1.3);
}


/* Popup Animation */

.popup-overlay.show-popup .welcome-popup {

    transform: translateY(0) scale(1);

}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.popup-close {

    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    color: #fff;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    transition: 0.3s;
}


.popup-close:hover {

    background: #ff9418;

    border-color: #ff9418;

    transform: rotate(90deg);

}


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

.popup-small-title {

    display: block;

    color: #ff9418;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.welcome-popup h2 {

    color: #fff;

    font-size: 38px;

    font-weight: 800;

    margin-bottom: 15px;

}


.welcome-popup h2 span {

    color: #ff9418;

}


.welcome-popup p {

    color: #b8c3d0;

    font-size: 15px;

    line-height: 1.7;

   

}


/* =====================================================
   POPUP BUTTON
===================================================== */

.popup-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 25px;

    background: #ff9418;

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    border-radius: 8px;

    transition: 0.3s;

}


.popup-btn:hover {

    background: #ff7f00;

    color: #fff;

    transform: translateY(-2px);

}

.contact-form-submit {
    width: 100%;
}
input:placeholder{
	font-size:13px;
}
/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .welcome-popup {

        padding: 45px 25px 30px;

        border-radius: 16px;

    }

    .welcome-popup h2 {

        font-size: 30px;

    }

    .welcome-popup p {

        font-size: 14px;

    }

}

/*contact-form*/
/* Contact Form Wrapper */
.contact-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* 2 Column */
.form-col {
    flex: 1 1 calc(50% - 10px);
}

/* Full Width */
.form-col-full {
    flex: 1 1 100%;
}

/* Labels */
.form-col label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

/* Inputs */
.form-col input,
.form-col select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Focus */
.form-col input:focus,
.form-col select:focus {
    border-color: #f58220;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.10);
}

/* Select */
.form-col select {
    cursor: pointer;
    appearance: auto;
}

/* Submit */
.contact-form-submit {
    margin-top: 5px;
}

.contact-form-submit input[type="submit"] {
    width: 100%;
    height: 52px;
    padding: 0 30px;
    border: 0;
    border-radius: 6px;
    background: #f58220;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.contact-form-submit input[type="submit"]:hover {
    background: #d96d0b;
    transform: translateY(-1px);
}

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

    .contact-form-row {
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-col {
        flex: 1 1 100%;
    }

    .form-col input,
    .form-col select,
    .contact-form-submit input[type="submit"] {
        height: 50px;
    }
}

.footer-social {
    margin-top: 30px;
}

.footer-social h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff9d00;
    border-color: #ff9d00;
    color: #ffffff;
    transform: translateY(-3px);
}

/*contact-page*/
.contact-banner {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
   background-image:url('http://gkgandbrothers.com/wp-content/uploads/2026/08/banner02.jpg');
    background-size: cover;
	background-repeat:no-repeat;
    background-position: center;
}

.contact-banner::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 152, 0, 0.25);
    border-radius: 50%;
    right: -150px;
    top: -160px;
}

.contact-banner::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 152, 0, 0.18);
    border-radius: 50%;
    left: -120px;
    bottom: -160px;
}

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

.contact-banner .banner-content {
    text-align: center;
}

.contact-banner .banner-content h1 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-banner .breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-banner .breadcrumb-item,
.contact-banner .breadcrumb-item a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}

.contact-banner .breadcrumb-item.active {
    color: #ff9800;
}

.contact-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}


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

.contact-section {
    padding: 95px 0 100px;
    background: #ffffff;
}

.contact-section > .container {
    max-width: 1200px;
}


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

.section-heading {
    text-align: center;
    margin: 0 auto 55px;
    max-width: 850px;
}

.section-heading .small-title {
    color: #ff9800;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    color: #071c33;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 15px;
}

.section-heading p {
    color: #707070;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 760px;
}


/* ==========================================
   CONTACT ROW
========================================== */

.contact-section .row.g-5 {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 40px;
}


/* ==========================================
   CONTACT FORM BOX
========================================== */

.contact-form-box {
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    padding: 38px 40px 40px;
    box-shadow: 0 12px 40px rgba(7, 28, 51, 0.08);
    height: 100%;
}

.contact-form-box h3 {
    color: #071c33;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 28px;
}


/* ==========================================
   FORM
========================================== */

.contact-form-box .form-label {
    display: block;
    color: #071c33;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 8px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    width: 100%;
    height: 52px;
    background: #ffffff;
    border: 1px solid #dce1e7;
    border-radius: 8px;
    color: #333333;
    font-size: 14px;
    padding: 0 15px;
    box-shadow: none !important;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form-box .form-control::placeholder {
    color: #8a8f96;
    opacity: 1;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.10) !important;
}

.contact-form-box textarea.form-control {
    height: 120px;
    padding: 14px 15px;
    resize: vertical;
}


/* ==========================================
   FORM SPACING
========================================== */

.contact-form-box .mb-3 {
    margin-bottom: 22px !important;
}

.contact-form-box .mt-2 {
    margin-top: 5px !important;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.contact-form-box .submit-btn {
    width: auto !important;
    min-width: 175px;
    height: 52px !important;
    padding: 0 25px !important;
    border: none !important;
    border-radius: 8px !important;
    background: #ff9800 !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 7px 20px rgba(255, 152, 0, 0.22);
    transition: all 0.3s ease;
}

.contact-form-box .submit-btn:hover {
    background: #e88900 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.28);
}

.contact-form-box .submit-btn i {
    font-size: 14px;
    margin-left: 3px !important;
}


/* ==========================================
   CONTACT INFORMATION
========================================== */

.contact-info-box {
    padding: 5px 0 0 10px;
}

.contact-info-box h3 {
    color: #071c33;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 16px;
}

.contact-info-box > p {
    color: #777777;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 35px;
    max-width: 500px;
}


/* ==========================================
   CONTACT ITEMS
========================================== */

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 27px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #fff3e1;
    color: #ff9800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.contact-item h5 {
    color: #071c33;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 5px;
}

.contact-item p,
.contact-item a {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ff9800;
}


/* ==========================================
   SOCIAL ICON
========================================== */

.contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    border: 1px solid #dce1e7;
    border-radius: 50%;
    background: #ffffff;
    color: #071c33;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #ff9800;
    border-color: #ff9800;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ==========================================
   MAP
========================================== */

.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
    border: 0;
}


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

@media (max-width: 991px) {

    .contact-banner {
        min-height: 310px;
    }

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

    .contact-section {
        padding: 75px 0 80px;
    }

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

    .contact-info-box {
        padding: 20px 0 0;
    }

}


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

@media (max-width: 767px) {

    .contact-banner {
        min-height: 250px;
    }

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

    .contact-banner .breadcrumb-item,
    .contact-banner .breadcrumb-item a {
        font-size: 13px;
    }

    .contact-section {
        padding: 60px 0 65px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading .small-title {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

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

    .section-heading p {
        font-size: 14px;
    }

    .contact-form-box {
        padding: 28px 22px;
    }

    .contact-form-box h3 {
        font-size: 23px;
        margin-bottom: 25px;
    }

    .contact-info-box {
        padding: 10px 0 0;
    }

    .contact-info-box h3 {
        font-size: 25px;
    }

    .contact-item {
        margin-bottom: 23px;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .map-section iframe {
        height: 350px;
    }

}


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

@media (max-width: 480px) {

    .contact-banner .banner-content h1 {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 25px 18px;
    }

    .contact-form-box .submit-btn {
        width: 100% !important;
    }

    .contact-item {
        gap: 13px;
    }

    .contact-item h5 {
        font-size: 15px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 13px;
    }

    .contact-social {
        gap: 8px;
    }

}


.gkg-gallery-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* subtle background shape */
.gkg-gallery-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 153, 0, 0.06);
    left: -180px;
    top: -150px;
}

.gkg-gallery-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   IMAGE AREA
========================================= */

.gallery-image-wrap {
    position: relative;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* orange decorative border */
/* .gallery-image-wrap::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 60%;
    left: 0;
    bottom: 0;
	top:93px;
    border: 2px solid #ff9900;
    border-radius: 20px;
    z-index: 0;
} */

/* dark blue background shape */
/* .gallery-image-bg {
    position: absolute;
    width: 82%;
    height: 82%;
    right: 0;
    top: 0;
    background: #0d3158;
    border-radius: 25px;
    z-index: 0;
} */

.gallery-main-img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-height: 430px;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.gallery-main-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.17);
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.gallery-badge {
    position: absolute;
    left: 0;
    bottom: 25px;
    z-index: 5;
    min-width: 175px;
    padding: 18px 22px;
    background: #ff9900;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.28);
}

.badge-number {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.badge-text {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    color: #fff;
}


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

.gallery-content {
    padding-left: 35px;
}

.gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff9900;
    margin-bottom: 18px;
}

.subtitle-line {
    width: 38px;
    height: 3px;
    display: inline-block;
    background: #ff9900;
    border-radius: 10px;
}

.gallery-content h2 {
    margin: 0 0 22px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #112f52;
}

.gallery-content h2 span {
    color: #ff9900;
}

.gallery-description {
    max-width: 600px;
    margin-bottom: 15px;
    color: #6d7278;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.gallery-features {
    display: flex;
    gap: 35px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.gallery-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #fff0d8;
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
	margin-right:12px;
}

.gallery-feature h6 {
    margin: 2px 0 4px;
    color: #172f4b;
    font-size: 15px;
    font-weight: 800;
}

.gallery-feature p {
    margin: 0;
    color: #777;
    font-size: 12px;
}


/* =========================================
   GALLERY BUTTON
========================================= */

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px 15px 27px;
    background: #ff9900;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .4px;
    border-radius: 7px;
    transition: all .35s ease;
    box-shadow: 0 12px 25px rgba(255, 153, 0, .22);
}

.gallery-btn span {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #ff9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.gallery-btn:hover {
    background: #0d3158;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 49, 88, .22);
}

.gallery-btn:hover span {
    transform: rotate(45deg);
}


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

@media (max-width: 991px) {

    .gkg-gallery-section {
        padding: 75px 0;
    }

    .gallery-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .gallery-content h2 {
        font-size: 40px;
    }

    .gallery-image-wrap {
        min-height: 140px;
    }
}

@media (max-width: 767px) {

    .gkg-gallery-section {
        padding: 60px 0;
    }

    .gallery-image-wrap {
        min-height: 140px;
        padding: 15px;
    }

    .gallery-main-img {
        width: 92%;
        padding: 15px;
    }

    .gallery-image-bg {
        width: 85%;
        height: 85%;
    }

    .gallery-badge {
        left: 5px;
        bottom: 5px;
        min-width: 150px;
        padding: 14px;
    }

    .badge-number {
        font-size: 28px;
    }

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

    .gallery-features {
        flex-direction: column;
        gap: 18px;
    }
}
/* video.gallery-video {
    position: absolute;
    width: 100%;
    height: 300px;
    left: 50%;
    overflow: hidden;
    top: 42%;
    transform: translate(-50%, -50%);
} */


/* =========================
   BLOG SECTION
========================= */

.blog-section {
    padding: 90px 0;
    background: #f7f8fa;
    overflow: hidden;
}

.blog-content {
    padding-right: 50px;
}

/* Label */

.blog-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ff9700;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.blog-label span {
    width: 48px;
    height: 3px;
    background: #ff9700;
    display: inline-block;
}

/* Heading */

.blog-content h2 {
    margin: 0 0 30px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    color: #12375f;
    letter-spacing: -2px;
}

.blog-content h2 strong {
    color: #ff9700;
    font-weight: 800;
}

/* Text */

.blog-content p {
    font-size: 18px;
    line-height: 1.65;
    color: #737982;
    margin-bottom: 20px;
    max-width: 650px;
}

/* Button */

.blog-btn {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-width: 300px;
    height: 85px;
    padding: 10px 25px 10px 32px;
    background: #ff9700;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    transition: .3s ease;
}

.blog-btn:hover {
    color: #fff;
    background: #12375f;
    transform: translateY(-3px);
}

.btn-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #ff9700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.blog-btn:hover .btn-arrow {
    color: #12375f;
}


/* =========================
   BLOG IMAGE
========================= */

.blog-image-wrap {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blue Shape */

/* .blog-blue-shape {
    position: absolute;
    width: 640px;
    height: 510px;
    background: #12375f;
    border-radius: 30px;
    top: 0;
    right: 0;
} */

/* Orange Border */

/* .blog-border-shape {
    position: absolute;
    width: 650px;
    height: 375px;
    border: 2px solid #ff9700;
    border-radius: 24px;
    left: 0;
    bottom: 25px;
} */

/* Main Image */

.blog-image {
    position: relative;
    z-index: 2;
    width: 665px;
    max-width: 100%;
}

.blog-image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    display: block;
}


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

@media (max-width: 1199px) {

    .blog-content {
        padding-right: 20px;
    }

    .blog-content h2 {
        font-size: 48px;
    }

    .blog-image-wrap {
        min-height: 450px;
    }

    .blog-blue-shape {
        width: 500px;
        height: 440px;
    }

    .blog-border-shape {
        width: 520px;
        height: 320px;
    }

    .blog-image {
        width: 530px;
    }

    .blog-image img {
        height: 320px;
    }
}

@media (max-width: 991px) {

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

    .blog-content {
        padding-right: 0;
        margin-top: 50px;
    }

    .blog-content h2 {
        font-size: 46px;
    }

    .blog-image-wrap {
        max-width: 100%;
        margin: auto;
    }
	.feature-icon {
    background: none;
    font-size: 33px;
}
	.blog-image img{
		margin-left:0px !important;
	}
}

@media (max-width: 575px) {

    .blog-section {
        padding: 50px 0;
    }
.feature-icon {
    background: none;
    font-size: 33px;
}
    .blog-content h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .blog-content p {
        font-size: 16px;
    }

    .blog-label {
        font-size: 13px;
    }

    .blog-label span {
        width: 35px;
    }

    .blog-image-wrap {
        min-height: 330px;
    }

    .blog-blue-shape {
        width: 90%;
        height: 300px;
        border-radius: 20px;
    }

    .blog-border-shape {
        width: 92%;
        height: 220px;
        left: -5px;
        bottom: 10px;
    }

    .blog-image {
        width: 92%;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-btn {
        min-width: 270px;
        height: 70px;
        font-size: 14px;
    }

    .btn-arrow {
        width: 42px;
        height: 42px;
    }
	.blog-blue-shape {
    display: none;
}
	.blog-border-shape {
    display: none;
}
}
.blog-image img {
    margin-left: 25px;
    border-radius: 20px;
}
video.gallery-video {
    width: 100%;
    height: 100%;
    border: 5px solid #ff9800;
    border-radius: 12px;
    box-shadow: 0px 0px 13px 5px #d1cccc;
}
section.gkg-gallery-section {
    padding-bottom: 13px;
}

.blog-image img {
    border: 5px solid #ff9800;
    box-shadow: 0px 0px 9px 4px #d3c9c9;
}
.map-locate {
    display: flex;
    width: 100%;
	gap:13px;
}

ol.comment-list {
    display: none;
}
h2.comments-title{
	display:none;
}
textarea#comment {
    width: 100%;
    margin-top: 18px;
    margin-bottom: 18px;
}
input#submit {
    margin-bottom: 50px;
    background-color: #ff9800;
    border: none;
    padding: 18px;
    border-radius: 10px;
}
img.img-fuild.post-image {
    margin-top: 25px;
    border: 5px solid #ff9900;
    border-radius: 17px;
}
div#secondary h2 {
    font-size: 20px;
}
aside#block-5{
	margin-top:25px;
}
.col-md-3.single-sidebar {
    background-color: #fff5e6;
    margin-top: 25px;
    border-radius: 15px;
    border: 4px solid #2264ad;
}
div#secondary a {
    color: #000;
    font-size: 13px;
}