/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #f2393d!important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
    border: none;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid #003a66;
    border: none;
}

.btn.btn-secondary {
    background: transparent;
    color: #ee8e07;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid rgb(241, 50, 50) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid #ec732d !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);

}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid #f13232 !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid #d8830b !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #003a66 !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #003a66 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #f2393d !important;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: #ed9922;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: #fff !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.6), rgba(0, 7, 12, 0.2)), url(../img/breadcrumb/breadcrumb.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Height control */
    padding: 30px 0; /* pehle 100px 0 tha, ab kam */
    
    /* For centering content */
    display: flex;
    align-items: center;
}


/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
    background-color: #003a66;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid #ed9922;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 80vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0.4));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}

/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 350px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}

/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

.para-light {
    color: #e0e0e0 !important;  /* soft white */
}

/* Agar thoda aur modern look chahiye */
.para-light {
    color: white !important;
    line-height: 1.8;
}


/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #000000;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
    font-size: 15px;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    color: #ed9922;
}



a.border-bottom.text-white {
    color: #ffffff;
    transition: 0.3s ease-in-out;
}

.company {
    color: #f3a52f !important;   /* orange / jo color chaho */
    font-weight: 600;
}

.company:hover
{
    color:#003a66 !important;
}

a.border-bottom.text-white:hover {
    color: #003a66 !important;     /* hover text color */
    
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #e90303;
}


/*** copyright end ***/



.custom-heading {
    margin-top: -8px;
    font-size: 20px;
    font-weight: 600;
}

/* Max-width 768px (Tablet + Mobile) */
@media (max-width: 768px) {
    .custom-heading {
        font-size: 13.5px;
        /* Small screens par chota font */
    }
}

.title {
    margin-top: 10px;
}

.move-down {
    height: 200px;

}

@media (max-width: 768px) {
    .move-down {
        margin-top: 200px;
    }
}
@media (max-width: 768px) {
    .move-down2 {
        margin-top: -50px;
    }
}

/* Default (normal screen) */
.move-up-responsive {
    margin-top: 0;
}

.move-up-responsive2 {
    margin-top: 45px;
}

/* Responsive: Mobile & Tablets */
@media (max-width: 768px) {
    .move-up-responsive {
        margin-top: -60px !important;
        /* jitna upar karna ho utna badha sakte ho */
    }
}


.small-title {
    font-size: 18px;
    /* jitna chhota chahiye utna change kar lena */
}

@media (max-width: 768px) {
    .small-title {
        font-size: 16px;
        /* mobile ke liye aur chhota */
    }
}

/* Wrapper */
.offer-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* Premium Card */
.offer-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

/* Glow gradient border on hover */
.offer-card:hover {
    border: 2px solid #ed9922;
    background: linear-gradient(#fff, #fff) padding-box,
                
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Icon */
.offer-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f3a83f, #8f6807);
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(55, 87, 255, 0.4);
}

.offer-icon i {
    font-size: 28px;
    color: #fff;
}

/* Titles */
.offer-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    background: #003a66;
    -webkit-background-clip: text;
    color: transparent;
}

/* Text */
.offer-card p {
    font-size: 15.5px;
    color: #555;
}

/* Fade-in Animation */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .offer-card {
        padding: 26px;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
    }

    .offer-card h4 {
        font-size: 18px;
    }
}


.text-left-custom {
    text-align: left !important;
    font-size: 16px;
}


/* Background Image + Overlay */
.purpose-section {
    background: url('../img/why-we-exist.jpg') center top / cover no-repeat;

    position: relative;
    background-attachment: fixed;
}

.purpose-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay for premium look */
    z-index: 1;
}

.content-wrapper {
    z-index: 2;
    position: relative;
}

/* Text Styling */
.main-purpose-heading {
    font-weight: 700;
    color: #ed9922;
}

.purpose-text {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .main-purpose-heading {
        font-size: 28px;
    }
    .purpose-text {
        font-size: 16px;
        padding: 0 10px;
    }
}



.founder-section {
    background: url('../img/back2.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.founder-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.founder-img {
    width: 100%;
    max-width: 260px;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

.founder-name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
}

.founder-position {
    font-size: 15px;
    color: #777;
    margin-top: -5px;
}

.founder-text {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    font-size: 17px;
    line-height: 1.7;
}

.contact-info {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.founder-wide {
    width: 100%;
}
.founder-gradient {
    background: linear-gradient(135deg, #003a66, #048af7);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #ed9922;
    color: #ffffff;
}


/* Responsive */
@media (max-width: 768px) {
    .founder-text {
        margin-top: 20px;
    }
    .founder-img {
        max-width: 200px;
    }
}




.shikshagarh-thread-bg {
    background: url('../img/back4.webp') left/cover no-repeat;
    position: relative;
}
.shikshagarh-thread-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(0px);
}
.shikshagarh-thread-bg * {
    position: relative;
    z-index: 8;
}

/* Thread */
.thread-wrapper {
    position: relative;
    margin-top: 40px;
    padding-left: 40px;
    border-left: 4px solid #ed9922;
}
.thread-step {
    position: relative;
    margin-bottom: 60px;
}
.thread-bullet {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #00c3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 10px #00c3ff;
}
.thread-content h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.thread-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
}
.thread-step:hover .thread-bullet {
    background: #00e1ff;
    box-shadow: 0 0 20px #00e1ff;
}

@media (max-width: 768px) {
    .thread-wrapper {
        padding-left: 20px;
        border-left: 3px solid #ed9922;
    }
    .thread-bullet {
        left: -25px;
        width: 18px;
        height: 18px;
    }
}
.smarter-title {
    color: #ffffff; /* yaha apna desired color de do */
    font-weight: 600;
}
.works-heading {
    color: #ed9922; /* yaha apna color change kar lena */
    font-weight: 700;
}



/* about page start */
/* Why We Exist Section */
.why-we-exist-section {
    background: white; /* subtle light background */
    font-family: 'Poppins', sans-serif;
}
.why-we-exist-section2 {
    background-color: rgb(244, 246, 247);
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .why-we-exist-section {
        background-color: #e0e3e6ff;
    }
}

.why-we-exist-section .section-title h1 {
    font-weight: 700;
    color: #003a66; /* dark modern blue */
}



.why-we-exist-section .sub-title {
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff5722; /* accent color for sub-title */
}
@media (max-width: 768px) {
     .why-we-exist-section .sub-title{
        margin-top: -50px;
    }
}

.content-left h3 {
    font-weight: 600;
    color: #0d1b2a;
}

.content-left p {
    color: #34495e;
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-list {
    list-style: none;
    padding-left: 0;
}

.why-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #34495e;
    font-size: 1.05rem;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff5722;
    font-weight: bold;
}

.image-right .main-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.8);  */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* margin-top: -50px; */
}

.image-right .main-image:hover {
    transform: translateY(-10px) scale(1.02);
    /* box-shadow: 0 25px 45px rgba(0,0,0,0.2); */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .image-right .main-image {
        max-width: 100%;
        margin-top: 30px;
        display: none;
    }
}



/* Our Promise Section */
.our-promise-section {
    background: url('../img/promise.webp') center center / cover no-repeat;
    position: relative;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    min-height: 300px;
    display: flex;
    align-items: center;

    
}

.our-promise-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* dark overlay for readability */
    z-index: 1;
}

.our-promise-section .container {
    position: relative;
    z-index: 2;
}

/* Fade-Up Animation Keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-up animation to text */
.our-promise-section .section-title,
.our-promise-section .content-left p {
    animation: fadeUp 1s ease forwards;
}

.our-promise-section .section-title h1 {
    font-weight: 700;
    color: #fff;
    animation-delay: 0.2s;
}

.our-promise-section .sub-title {
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffcc00; /* bright accent for sub-title */
    animation-delay: 0.1s;
}

.our-promise-section .content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 1rem;
    text-align: center;
    animation-delay: 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .our-promise-section {
        min-height: auto;
        padding: 80px 15px;
    }
}





/* Section Background */
.service-fees-section {
    background: #edf1f5ff;
    font-family: 'Poppins', sans-serif;
}

/* Subtitle */
.service-fees-section .sub-title {
    letter-spacing: 2px;
    font-weight: 600;
}

/* Caption */
.caption-text {
    color: #666;
    font-size: 1rem;
    margin-top: -8px;
}

/* Table */
.service-table {
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

.service-table thead tr {
    background: #102c57; /* deep blue premium look */
    color: #fff;
}

.service-table thead th {
    padding: 14px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-table tbody tr td {
    padding: 16px;
    vertical-align: middle;
    font-size: 0.97rem;
    color: #333;
}

/* Hover effect */
.service-table tbody tr:hover {
    background: #eef4ff;
    transition: 0.3s;
}

/* Text alignment fix */
.service-table td,
.service-table th {
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .service-table tbody td {
        font-size: 0.9rem;
    }
}

.vision-mission-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Card Styling */
.vm-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
    border: 2px solid #ed9922;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 28px rgba(0,0,0,0.12);
}

/* Title */
.vm-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d2a55;
}

/* Text */
.vm-card p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-card {
        padding: 25px;
    }
}



/* Section Background */
.founder-story-section-hj {
    background: #edf1f5ff;
}

/* Image Box */
.founder-img-box-hj {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #003a66;
}

.founder-img-box-hj:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Square Image Frame */
.founder-img-frame-hj {
    width: 100%;
    max-width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    background: #eaf1ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo-hj {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures full fit, no cropping outside frame */
}



@media (max-width: 768px) {
    .founder-photo-hj {
        width: 90%;
    }
}

/* Name + Position */
.founder-name-hj {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.founder-position-hj {
    font-size: 16px;
    color: #6c757d;
    text-align: center;
}

/* Content Styling */
.founder-content-hj p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Bullet List */
.founder-list-hj {
    margin: 15px 0;
    padding-left: 20px;
}

.founder-list-hj li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Quote Box */
.founder-quote-hj {
    background: #ed9922;
    border-left: 5px solid #003a66;
    border-right: 5px solid #003a66;
    font-size: 18px;
    border-radius: 8px;
    padding: 15px 20px;
    color: white;
}


.journey-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    max-width: 850px;
    transition: 0.4s ease;
    border-left: 5px solid #d40000;
     border-right: 5px solid #d40000;
}

.journey-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.journey-line {
   font-size: 1rem;
   line-height: 1.8;
   font-weight: 500;
   color: #333;
}

.contact-box {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item {
    padding: 0 10px;
}

.divider {
    padding: 0 6px;
    color: #999;
}

/* Responsive */
@media(max-width: 576px) {
    .journey-line {
        font-size: 1rem;
    }
    .contact-box {
        font-size: 0.95rem;
        display: block;
        margin-top: 10px;
    }
    .divider {
        display: none;
    }
}
.highlight-garh {
    color: #ed9922;
;   
}
.step-number
{
    color: #ed9922;
    text-shadow: 2px 2px 3px #000; 
}
.bg-custom-section-01 {
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.join-title-custom
{
    color: #ffffff !important;
}
.journey-heading-custom
{
    color: #ed9922 !important;
}
.verified-title {
    color: #ed9922 !important;  
}





/* UNIQUE CLASS — Entire Block */
.founder-premium-block {
    padding-bottom: 60px;
}

/* Attractive Card */
.founder-premium-card {
    background: #ffffffd9;
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    border: 2px solid #ed9922;
}

.founder-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
}

/* Image Frame */
/* Center & adjust frame */
.founder-premium-photo-frame {
    max-width: 310px; /* smaller frame */
    margin: auto;
    margin-top: 30px;
    
}

.founder-premium-photo {
    width: 75%;      /* reduce size */
    max-width: 280px; /* limit max size */
    border-radius: 12px;
    /* border: 2px solid #003a66; */
    margin-top: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Text Styling */
.founder-premium-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.founder-premium-position {
    font-size: 15px;
    color: #777;
    margin-top: -6px;
}

.founder-premium-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* Contact */
.founder-premium-contact strong {
    color: #ed9922;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-premium-card {
        text-align: center;
    }
}

.gradient-text {
  /* Gradient color */
  background: linear-gradient(90deg, #ec732d, #f72128, #ecca09); /* pink → red → gold */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold; /* optional */
}



/* ===============================
   Ganpati Wires – Precision Section
================================ */

.gw-precision-section {
  background-image: url('../img/brands/brand-background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Main Text */
.gw-precision-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Feature Cards */
.gw-precision-features {
    margin-top: 20px;
}

.gw-precision-card {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border-top: 4px solid #ff0000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gw-precision-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1c1c1c;
}

.gw-precision-card p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}

.gw-precision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Highlight Text */
.gw-precision-highlight {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.gw-precision-highlight strong {
    color: #ff0000;
}

/* Responsive */
@media (max-width: 991px) {
    .gw-precision-text,
    .gw-precision-highlight {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .gw-precision-card {
        padding: 22px;
    }
}


/* counter section */

/* ===============================
   Ganpati Wires – Counter Section
================================ */

.gw-counter-section {
    background: linear-gradient(135deg, #0d0d0d, #1b1b1b);
}

/* Counter Card */
.gw-counter-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.gw-counter-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

/* Counter Number */
.gw-counter-number {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f5731c, #f80c0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Title */
.gw-counter-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Description */
.gw-counter-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 0;
}

/* Icon Style */
.gw-counter-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5731c, #f80c0c);
    /* border: 2px solid rgb(255, 145, 0); */
    color: #ffffff;
    font-size: 26px;
}

/* Icon hover effect */
.gw-counter-card:hover .gw-counter-icon {
    transform: scale(1.12);
    transition: 0.3s ease;
}


/* Responsive */
@media (max-width: 991px) {
    .gw-counter-number {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .gw-counter-card {
        padding: 28px 20px;
    }
}


/* our product section start */

/* ===============================
   Ganpati Wires – Product Section
================================ */

.gw-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    border: 1px solid rgba(255, 0, 0, 0.15);
}

.gw-product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Product Title (Always Visible) */
/* Highlighted Product Title */
.gw-product-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;

    /* Highlight background */
    background: linear-gradient(90deg, #ec732d, #f72128);

    letter-spacing: 0.4px;
    z-index: 3;
}


/* Hover Overlay */
.gw-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
     z-index: 2;
    

}

.gw-product-overlay p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Effects */
.gw-product-card:hover img {
    transform: scale(1.08);
}

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

/* Responsive */
@media (max-width: 767px) {
    .gw-product-card img {
        height: 200px;
    }

    .gw-product-overlay p {
        font-size: 11px;
        margin-top: -50px;
    }
}

/* Left-aligned content after heading */
/* .gw-product-left-content { */
    /* text-align: left; */
    /* max-width: 900px;  */
    /* margin-bottom: 40px;  */
    /* color: #ffffff;  */
    /* margin-left: 0; */
    /* margin-right: 0; */
/* } */

/* Heading inside left content */
/* .gw-product-left-content h2 { */
    /* font-size: 28px; */
    /* font-weight: 600; */
    /* margin-bottom: 15px; */
    /* color: #ff69b4;  */
/* } */

.gw-all-products-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff; /* yellow text */
    background: #000; /* black background */
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgb(250, 76, 23);
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.8), rgba(255,255,255,0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { left: 100%; opacity: 0; }
}

/* Hover effect */
.gw-all-products-btn:hover {
    color: #ffffff;
    background: #1a3e72;
    /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
    transform: translateY(-3px);
}


/* <!-- Authorized Cable Brands Section start--> */

.authorized-brands {
  padding: 60px 0;
  text-align: center;
  background-image: url('../img/brands/brand-background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.authorized-brands2 {
  padding: 60px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -30px;
}

.authorized-brands .section-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1a3e72;
  font-weight: 700;
}

.authorized-brands p {
  margin-bottom: 50px;
  font-size: 16px;
  color: #555;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-item {
  flex: 1 1 25%; /* 4 in a row on large screens */
  max-width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0; 
}

/* .brand-item:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
} */

.brand-logo {
  width: 260px;
  height: auto;
  margin-bottom: 15px;
  /* border-radius: 15px; */
  transition: transform 0.3s ease;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  padding: 10px 25px;
  background: #003a66;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.download-btn i {
  font-size: 16px;
}

.download-btn:hover {
  background: orangered;
  transform: scale(1.05);
  color: #ffffff;

}

/* Responsive: 2 per row on medium screens */
@media (max-width: 992px) {
  .brand-item {
    flex: 1 1 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
}

/* Responsive: 1 per row on mobile */
@media (max-width: 576px) {
  .brand-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* <!-- Customized Industrial Solutions Section --> */

.gw-industrial-section {
    background-color: #ffffff; /* Dark gray, aap chahe toh koi bhi color yahan de sakte ho */
    color: #1a1a1a; /* text readable rahe */
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    height: 700px;
}


.gw-industrial-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.gw-industrial-list li {
    font-size: 16px;
    color: #1a1a1a;
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    margin-top: -10px;
}

.gw-industrial-list li::before {
    content: "\f058"; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #e74707;
}

.gw-industrial-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .gw-industrial-image img {
        display: none;
    }
}

/* Premium Section Background */
.gw-industry-section-premium {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    color: #fff;
}

/* Glass Card Effect */
.gw-glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease;
}

/* Hover Shine */
.gw-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 45px rgba(255, 215, 0, 0.45);
}

/* Card Heading */
.gw-glass-card h4 {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glow List */
.gw-glow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gw-glow-list li {
    padding-left: 32px;
    margin-bottom: 14px;
    position: relative;
    line-height: 1.7;
}

/* Neon Check Icon */
.gw-glow-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 2px;
    color: #FFD700;
    text-shadow:
        0 0 6px rgba(255, 215, 0, 0.9),
        0 0 12px rgba(255, 255, 255, 0.6);
}

/* Tagline */
.gw-premium-tagline {
    color: #FFD700;
    font-size: 18px;
    max-width: 950px;
    margin: auto;
    text-shadow: 0 0 10px rgba(255,215,0,0.6);
}











/* <!-- Industrial Applications Section --> */
/* Section Background – Light Gradient */
.gw-industry-section-light {
    background: linear-gradient(135deg, #f7f9fc, #eef2f7);
}

/* Card */
.gw-industry-card-light {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.gw-industry-card-light img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover */
.gw-industry-card-light:hover img {
    transform: scale(1.08);
}

.gw-industry-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Title Background */
.gw-industry-title-light {
    background: linear-gradient(135deg, #000000, #2a2a2a);
    color: #ffffff;
    padding: 14px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Footer Text */
.gw-industry-footer-light {
    max-width: 1000px;
    margin: auto;
    font-size: 16px;
    color: #444;
}


/* Leadership Section start */
.gw-leadership-section {
  background-image: url('../img/brands/brand-background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Team Card */
.gw-leadership-card {
    background: #000000;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* ensures equal height */
}



/* Hover effect */
.gw-leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* Container for circular image */
.gw-leadership-img {
    width: 150px;        /* Desktop width */
    height: 150px;       /* Desktop height */
    margin: 0 auto 15px;
    border-radius: 50%;  /* Circle shape */
    overflow: hidden;    /* Clip image inside circle */
    border: 2px solid rgb(237, 153, 34); /* Golden border */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image inside circle */
.gw-leadership-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container, maintain aspect ratio */
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.gw-leadership-card:hover .gw-leadership-img img {
    transform: scale(1.1);
    box-shadow: 0 0 20px #FFD700;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .gw-leadership-img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 767px) {
    .gw-leadership-img {
        width: 110px;
        height: 110px;
    }
}



/* Name and Designation */
.gw-leadership-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.gw-leadership-card span {
    font-size: 14px;
    color: rgb(248, 170, 61);
    display: block;
    margin-bottom: 10px;
}

/* Description */
.gw-leadership-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 0;
    flex-grow: 1; /* keeps all cards equal height */
}

/* Responsive */
@media (max-width: 991px) {
    .gw-leadership-card {
        padding: 20px 15px;
    }
    .gw-leadership-img img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .gw-leadership-card {
        margin-bottom: 20px;
    }
}

.banner-subtitle
{
    font-size: 80px;
}










.be-laundry-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.be-laundry-divider {
  width: 80px;
  height: 3px;
  background-color: #f5731c;
  border: none;
  margin: 10px 0 20px;
}

.be-sidebar-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.1); */
  margin-bottom: 30px;
  border: 1px solid lightgray;
}

.be-sidebar-title {
  font-weight: 700;
  border-left: 4px solid #fa0505;
  padding-left: 12px;
  margin-bottom: 15px;
}

.be-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.be-service-list li {
  margin-bottom: 10px;
}

.be-service-list li a {
  display: block;
  padding: 10px 12px;
  background: #f8f9fa;
  border-left: 3px solid #f5731c;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.be-service-list li a:hover {
  background: #f5731c;
  color: #000;
}





.be-related-products-title {
  font-size: 26px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.be-related-products-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f5731c;
  display: block;
  margin: 10px auto 0;
}

.be-product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: #fff;
}

.be-product-image {
  position: relative;
  overflow: hidden;
}

.be-product-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.be-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;

}

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

.be-product-card:hover img {
  transform: scale(1.1);
}

.be-product-name {
  background: #f5731c;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 12px 10px;
  font-size: 15px;
}


/* Sidebar Contact Box */
.sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-contact .contact-item i {
  font-size: 18px;
  color: #003a66;
}

.sidebar-contact .contact-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-contact .contact-item a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

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





/* Section Heading */
.be-authorized-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

/* Paragraph */
.para-we {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}

/* Marquee Container */
.brands-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Marquee Track */
.brands-track {
  display: flex;
  width: max-content; /* Track width depends on content */
  gap: 30px;
  animation: scrollBrands 20s linear infinite;
}

/* Brand Images */
.brands-track img {
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Animation */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover (desktop) */
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1024px) {
  .brands-track {
    gap: 25px;
    animation-duration: 15s;
  }
  .brands-track img {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .brands-track {
    gap: 20px;
    animation-duration: 20s;
  }
  .brands-track img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .brands-track {
    gap: 15px;
    animation-duration: 10s;
  }
  .brands-track img {
    height: 50px;
  }
}


  
/* Contact Info Section */
.be-contact-info {
  background: #f9f9f9;
}

/* Card Style */
.be-info-card {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: -20px;
}

.be-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Icons */
.be-info-card i {
  font-size: 40px;
  color: #f20505;
  margin-bottom: 15px;
}

/* Heading */
.be-info-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 25px;
}

/* Text */
.be-info-card p {
  margin: 0;
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

/* Links */
.be-info-card a {
  color: #000;
  text-decoration: none;
  /* font-weight: 600; */
}

.be-info-card a:hover {
  color: #f2b705;
}

/* Responsive */
@media (max-width: 768px) {
  .be-info-card {
    padding: 25px 20px;
  }
}



/* Main Product Image Cards */
.gw-main-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #000000;
}

.gw-main-product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.gw-main-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.gw-main-product-text {
    color: #fd0606; /* Replace with your preferred color */
    font-weight: bold; /* Optional: make text bold */
    font-size: 20px;
}

.gw-main-product-head {
    color: #003a66; /* Replace with your preferred color */
    font-weight: bold; /* Optional: make text bold */
    font-size: 40px;
}

.para-we
{
    text-align: center;
    margin-top: -20px;
}


.stockist-assurance {
  background-color: #f5f6fa;
}

.assurance-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.check-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.stockist-img{
  max-width: 350px;
  width: 100%;
  margin-left: 80px;
}
@media (max-width: 768px) {
    .stockist-img {
        display: none;
    }
}


/* distributor section */

   .line-part {
        font-size: 25px;         /* Desktop font size */
        font-weight: 700;        /* Bold text */
        color: #000000;          /* White color */
        text-align: center;
    }

    .separator {
        color: #856202;          /* Golden color for separators */
        margin: 0 8px;
        font-weight: 1000;
        font-size: 30px;
        
    }
    .gp-wire{
        margin-top: 20px;
    }

       @media (max-width: 768px) {
       .gp-wire {
            margin-top: 50px;   
        }
    }

    /* Responsive for mobile */
    @media (max-width: 768px) {
        .line-part, .separator {
            font-size: 30px;     /* Smaller font on mobile */
        }
    }


    /* Athorised section */

.dealer-heading-unique {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    
}

.dealer-container-unique {
    max-width: 1300px;
    margin: 0 auto;
}

/* ROW */
.dealer-row-unique {
    display: flex;
    justify-content: center;
    gap: 0px;
    flex-wrap: nowrap; /* 🔥 prevents next line */
}

/* CARD */
.dealer-card-unique {
    flex: 0 0 14.28%; /* 🔥 100 / 7 = 14.28% */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE */
.dealer-img-unique {
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dealer-img-unique:hover {
    transform: scale(1.1);
}

/* ✅ MOBILE: 2 cards per row */
@media (max-width: 768px) {
    .dealer-row-unique {
        flex-wrap: wrap;
        
    }

    .dealer-card-unique {
        flex: 0 0 50%;
        margin-bottom: 15px;
    }

    .dealer-img-unique {
        max-height: 100px;
    }
}
.dealer-divider-unique {
    width: 60px;               /* line width */
    height: 4px;               /* line thickness */
    background-color: #d68100; /* orange color */
    margin: 0 auto;            /* center align */
    border-radius: 2px;        /* optional rounded edges */
    margin-top: -10px;
}
.dealer-section-unique
{
    background-color: rgb(211, 209, 209);
    margin-top: 10px;
}
  

.carousel-caption-left {
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    text-align: left;
}

/* -----whatsapp icon---- */
.wa-floating-container {
    position: fixed;
    bottom: 3%;
    left: 30px;
    z-index: 1000;
}
.wa-button-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    /* background-color: #25D366; */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: wa-pulse 1s infinite;
    margin-bottom: 30px;
}

.wa-button-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
.wa-button-icon {
    width: 50px;
    height: 50px;
    /* filter: brightness(0) invert(1); */
}
.wa-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #075E54;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wa-button-main:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .wa-button-main {
        width: 55px;
        height: 55px;
    }

    .wa-button-icon {
        width: 60px;
        height: 60px;
        
    }

    .wa-floating-container {
        bottom: 40px;
        right: 40px;
    }
}

.trin-trin {
    animation: trinTrin 1.3s infinite ease-in-out;
    transform-origin: 50% 50%;
}

@keyframes trinTrin {
    0%   { transform: rotate(0deg); }
    5%   { transform: rotate(12deg); }
    10%  { transform: rotate(-12deg); }
    15%  { transform: rotate(10deg); }
    20%  { transform: rotate(-10deg); }
    25%  { transform: rotate(8deg); }
    30%  { transform: rotate(-8deg); }
    35%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}
