/********** Template CSS **********/
:root {
    --primary: #5B8C51;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-new {
    background: url(../img/bgImg-contect-1.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}
/** Whatsapp Button Integration **/
.whatsapp-float{

    position: fixed;

    width:60px;
    height:60px;

    bottom:30px;
    right:30px;

    background:#25D366;

    color:white;

    border-radius:50%;

    text-align:center;

    font-size:32px;

    line-height:60px;

    box-shadow:0 6px 20px rgba(0,0,0,.3);

    z-index:9999;

    transition:.3s;

}

.whatsapp-float:hover{

    color:white;

    transform:scale(1.1);

    background:#1ebe5d;

}

.campus-image{
    width:100%;
    max-width:640px;
    height:430px;
    object-fit:cover;
    border-radius:10px;
    display:block;
    margin:auto;
}

@media (max-width:768px){

    .campus-image{
        height:220px;
    }

}

.gallery-home-img{

    width:100%;
    height:250px;

    object-fit:cover;

    border-radius:12px;

    transition:.4s;

}

.gallery-home-img:hover{

    transform:scale(1.05);

}

.factsheet-section{

    background:#f8f9fa;

}

.fact-card{

    background:white;

    padding:22px;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.fact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.fact-card i{

    font-size:35px;

    color:#0d6efd;

    width:55px;

    text-align:center;

}

.fact-card h6{

    margin-bottom:5px;

    font-weight:700;

}

.fact-card p{

    margin:0;

    color:#666;

}

.profile-card{

    background:#ffffff;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;
}

.profile-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.section-heading{

    font-size:30px;

    font-weight:700;

    color:#0c3c60;

    margin-bottom:25px;

    border-left:6px solid #198754;

    padding-left:15px;

}

.section-heading i{

    color:#198754;

    margin-right:10px;

}

.feature-list{

    list-style:none;

    padding:0;

    margin:0;

}

.feature-list li{

    font-size:18px;

    padding:12px 0;

    border-bottom:1px solid #ececec;

    color:#444;

}

.feature-list li:last-child{

    border-bottom:none;

}

.feature-list i{

    color:#198754;

    margin-right:12px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #eeeeee;

}

.info-row:last-child{

    border-bottom:none;

}

.info-row span{

    color:#666;

    font-weight:600;

}

.info-row strong{

    color:#222;

    text-align:right;

}

@media(max-width:768px){

    .info-row{

        flex-direction:column;

        align-items:flex-start;

    }

    .info-row strong{

        margin-top:5px;

    }

}
.section-title{

font-size:42px;

font-weight:700;

color:#16324F;

margin-bottom:15px;

}

.section-subtitle{

max-width:700px;

margin:auto;

color:#666;

font-size:18px;

}



.tech-card{

display:flex;

align-items:flex-start;

padding:20px;

margin-bottom:20px;

background:#fff;

border-radius:12px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.tech-card:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}



.icon-box{

width:70px;

height:70px;

background:#198754;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-right:20px;

flex-shrink:0;

}

.icon-box i{

color:#fff;

font-size:28px;

}



.tech-card h5{

font-weight:700;

margin-bottom:10px;

color:#16324F;

}

.tech-card p{

margin:0;

color:#666;

line-height:1.7;

}



.why-card{

background:linear-gradient(135deg,#16324F,#198754);

padding:40px;

border-radius:15px;

color:white;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.2);

}



.why-card h3{

margin-bottom:25px;

font-size:32px;

font-weight:700;

}



.why-card ul{

list-style:none;

padding:0;

}



.why-card li{

margin-bottom:18px;

font-size:18px;

}



.why-card i{

color:#FFD54F;

margin-right:10px;

}



@media(max-width:768px){

.section-title{

font-size:32px;

}

.why-card{

margin-top:30px;

}

}

.email-link{
    word-break: break-word;
    overflow-wrap: anywhere;
}   

/** Product Page **/

.product-section{

background:#edf2f7;

}

.product-image{

overflow:hidden;

border-radius:18px;

box-shadow:0px 15px 40px rgba(0,0,0,.15);

}

.product-image img{

width:100%;

height:430px;

object-fit:cover;

transition:.5s;

}

.product-image:hover img{

transform:scale(1.05);

}

.product-card{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.product-tag{

background:#0b6b3a;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

display:inline-block;

margin-bottom:20px;

}

.product-card h2{

font-size:40px;

font-weight:700;

margin-bottom:20px;

color:#1b2c48;

}

.product-desc{

font-size:18px;

line-height:32px;

color:#666;

}

.feature-box{

background:#f7f9fc;

padding:18px;

border-radius:12px;

font-weight:600;

transition:.3s;

}

.feature-box i{

color:#0b6b3a;

margin-right:10px;

font-size:20px;

}

.feature-box:hover{

background:#0b6b3a;

color:#fff;

transform:translateY(-5px);

}

.feature-box:hover i{

color:#fff;

}

/** Model css **/
.specification-modal{

border-radius:18px;

overflow:hidden;

border:none;

box-shadow:0px 20px 50px rgba(0,0,0,.2);

}

.specification-modal .modal-header{

background:linear-gradient(135deg,#0c6b3f,#14532d);

color:white;

padding:20px 30px;

border:none;

}

.specification-modal .modal-title{

font-size:32px;

font-weight:700;

}

.specification-modal .modal-body{

padding:35px;

background:#f7f9fb;

}

.specification-modal img{

border-radius:15px;

box-shadow:0 15px 35px rgba(0,0,0,.2);

transition:.4s;

}

.specification-modal img:hover{

transform:scale(1.04);

}

.specification-table{

background:white;

border-radius:12px;

overflow:hidden;

}

.specification-table th{

width:40%;

background:#edf5ef;

color:#14532d;

font-weight:700;

}

.specification-table td{

font-weight:500;

}

.application-list{

columns:2;

padding-left:20px;

}

.application-list li{

margin-bottom:10px;

font-size:17px;

}

.modal-body h4{

font-weight:700;

color:#14532d;

}

.btn-success{

background:#0b6b3a;

border:none;

}

.btn-success:hover{

background:#084f2b;

}

@media(max-width:768px){

.specification-modal .modal-body{

padding:20px;

}

.application-list{

columns:1;

}

.specification-modal .modal-title{

font-size:22px;

}

}



.product-gallery{

    background:linear-gradient(180deg,#ffffff,#f4f7fb);

    padding:100px 0;

}

/* Heading */

.gallery-heading span{

    color:#198754;

    letter-spacing:4px;

    font-weight:700;

    font-size:13px;

}

.gallery-heading h2{

    font-size:48px;

    font-weight:700;

    color:#202124;

    margin:12px 0;

}

.gallery-heading p{

    max-width:720px;

    margin:auto;

    color:#6c757d;

    font-size:18px;

}

/* Card */

.product-box{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    height:100%;

    border:1px solid #edf0f3;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.product-box:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

    border-color:#198754;

}

/* Image */

.product-img{

    position:relative;

    overflow:hidden;

}

.product-img img{

    width:100%;

    height:360px;

    object-fit:cover;

    transition:.7s;

}

.product-box:hover img{

    transform:scale(1.08);

}

/* Gradient Overlay */

.product-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(180deg,

    rgba(0,0,0,0),

    rgba(0,0,0,.75));

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.product-box:hover .product-overlay{

    opacity:1;

}

.zoom-circle{

    width:70px;

    height:70px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.zoom-circle i{

    font-size:26px;

    color:#198754;

}

/* Badges */

.product-badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#198754;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.iso-badge{

    position:absolute;

    right:20px;

    top:20px;

    background:#fff;

    padding:8px 15px;

    border-radius:25px;

    font-size:12px;

    font-weight:700;

    color:#198754;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* Image title */

.image-title{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:18px;

    background:linear-gradient(transparent,

    rgba(0,0,0,.85));

    color:#fff;

    font-size:24px;

    font-weight:700;

}

/* Details */

.product-details{

    padding:28px;

}

/* Remove duplicate title */

.product-details h4{

    display:none;

}

.product-info{

    list-style:none;

    padding:0;

    margin:0;

}

.product-info li{

    margin-bottom:14px;

    font-size:16px;

    color:#555;

}

.product-info i{

    width:24px;

    color:#198754;

}

/* Specification Chips */

.product-specs{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.product-specs span{

    background:#eef8f2;

    color:#198754;

    border:1px solid #dcefe4;

    padding:9px 16px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

}

/* Mobile */

@media(max-width:991px){

.product-img img{

height:280px;

}

.gallery-heading h2{

font-size:34px;

}

.image-title{

font-size:20px;

}

.product-details{

padding:20px;

}

}

.footer-contact{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
    font-size:16px;
}

.footer-contact:hover{
    color:#ffc107;
    padding-left:6px;
}

@media (max-width: 768px) {

    .section-title::before,
    .section-title::after {
        display: none;
    }

}

.specification-modal .modal-title{
    color: #fff;
}

.contact-link{
    color:#6c757d;
    text-decoration:none;
    transition:all .3s ease;
}

.contact-link:hover{
    color:#198754;
    text-decoration:underline;
}

