/********** Template CSS **********/
:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.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-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 400;
    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-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* Logo size */
.navbar-logo{
height:90px;
width:180px;
}

/* Navbar spacing */
.navbar-nav .nav-link{
font-weight:500;
padding:10px 15px;
color:#333;
}

.navbar-nav .nav-link:hover{
color:#0d6efd;
}

/* Login Button */

.btn-login{
background:#0d6efd;
color:#fff;
padding:8px 22px;
border-radius:30px;
font-weight:500;
transition:0.3s;
}

.btn-login:hover{
background:#0b5ed7;
color:#fff;
transform:translateY(-2px);
}

/* Dropdown style */

.dropdown-menu{
border-radius:8px;
padding:10px;
}

.dropdown-item{
padding:8px 15px;
}

.dropdown-item:hover{
background:#f1f1f1;
}

/* Mobile logo */

@media (max-width:991px){

.navbar-logo{
height:65px;
}

.btn-login{
margin-top:10px;
}

}

/* Navbar menu font size */
.navbar-nav .nav-link{
    font-size: 19px;   /* Bada font */
    font-weight: 500;  /* Thoda bold */
    padding: 10px 15px;
}

/* Dropdown menu styling */
.navbar-nav .dropdown-menu{
    min-width: 250px;         /* wider dropdown */
    border-radius: 8px;
    padding: 10px 0;
}

/* Dropdown items */
.navbar-nav .dropdown-item{
    font-size: 16px;
    padding: 10px 20px;
    transition: 0.3s;
}

.navbar-nav .dropdown-item:hover{
    background-color: #0d6efd;
    color: #fff;
}

/* Login button */
.btn-login{
    background-color: #0d6efd;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-login:hover{
    background-color: #0b5ed7;
    color: #fff;
}

/* Responsive tweaks */
@media(max-width:991px){
    .navbar-nav .nav-link{
        font-size:16px;
        padding:8px 12px;
    }
    .navbar-nav .dropdown-item{
        font-size:15px;
        padding:8px 15px;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(1, 10, 53, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@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: linear-gradient(rgba(1, 10, 53, .8), rgba(1, 10, 53, .8)), url(../img/earthing-power/breatcumb-img.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.carousel-img{
width:100%;
height:500px;
object-fit:cover;
}

.carousel-caption{
background:rgba(0,0,0,0.4);
padding:40px;
border-radius:10px;
}


/* ABOUT SECTION */

.about-title{
color:#000;
}

.about-text{
color:#000;
text-align:justify;
}

/* ICON STYLE */

.about-icon{
gap:12px;
transition:0.3s;
}

.about-icon i{
font-size:30px;
color:#0d6efd;
transition:0.3s;
}

.about-icon h5{
color:#000;
margin:0;
}

.about-icon:hover{
transform:translateY(-5px);
}

.about-icon:hover i{
color:#ff6600;
transform:scale(1.2);
}

/* CONTACT BOX */

.contact-box{
gap:15px;
}

.contact-box h5{
color:#000;
margin:0;
}

.contact-icon{
width:45px;
height:45px;
background:#0d6efd;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
}


/* optional overlay effect */

.about-images .about-img-box::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.1);
opacity:0;
transition:0.4s;
border-radius:12px;
}

.about-images .about-img-box:hover::after{
opacity:1;
}

.about-images .img-border{
padding:4px;
border-radius:12px;
background:linear-gradient(45deg,#007bff,#00d4ff,#007bff);
background-size:300% 300%;
animation:gradientMove 5s linear infinite;
display:inline-block;
}

.about-images img{
height:260px;   /* height badha diya */
width:100%;
object-fit:cover;
border-radius:10px;
transition:0.5s;
}

.about-images .img-border:hover img{
transform:scale(1.08);
}

/* Gradient animation */

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}


.contact-box{
display:flex;
align-items:center;
gap:12px;
flex-wrap:nowrap;
}

.contact-icon{
width:45px;
height:45px;
background:#0d6efd;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
flex-shrink:0;
}

.contact-text{
color:#000;
font-size:16px;
font-weight:500;
}

.email-text{
white-space:nowrap;
}

/*** mission ***/
/* Mission Section */
.mission-section{
background:#f9f9f9;
}

/* Title */
.mission-title{
font-weight:700;
color:#000;
font-size:34px;
}

/* Title Icon */
.mission-main-icon{
color:#0d6efd;
margin-right:10px;
}

/* Text */
.mission-text{
color:#000;
text-align:justify;
font-size:16px;
line-height:1.8;
}

/* Mission Points */
.mission-point{
display:flex;
align-items:center;
margin-top:12px;
font-weight:500;
color:#000;
}

.mission-point i{
color:#0d6efd;
margin-right:10px;
font-size:18px;
}

/* Image Box */
.mission-image-box{
overflow:hidden;
border-radius:12px;
}

/* Image */
.mission-img{
border-radius:12px;
transition:all 0.5s ease;
}

/* Hover */
.mission-image-box:hover .mission-img{
transform:scale(1.08);
}

/*** vision ***/
/* Vision Section */
.vision-section{
background:#f8f9fa;
}

/* Title */
.vision-title{
font-weight:700;
font-size:34px;
color:#000;
}

.vision-icon{
color:#0d6efd;
margin-right:10px;
}

/* Text */
.vision-text{
color:#000;
text-align:justify;
line-height:1.8;
font-size:16px;
margin-bottom:15px;
}

/* Image */
.vision-image-box{
overflow:hidden;
border-radius:12px;
}

.vision-img{
border-radius:12px;
transition:0.5s;
width:100%;
}

/* Hover */
.vision-image-box:hover .vision-img{
transform:scale(1.08);
}

/*** core values ***/
/* Section */
.core-values{
background:#f9f9f9;
}

/* Title */
.values-title{
font-size:34px;
font-weight:700;
color:#000;
}

/* Card */
.value-card{
background:#fff;
border:1px solid #ddd;
border-radius:12px;
padding:35px 25px;
text-align:center;
transition:0.4s;
height:100%;
position:relative;
overflow:hidden;
}

/* Gradient Border Animation */
.value-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg, transparent, rgba(13,110,253,0.3), transparent);
transition:0.6s;
}

.value-card:hover::before{
left:100%;
}

/* Icon Circle */
.value-icon{
width:70px;
height:70px;
line-height:70px;
margin:auto;
border-radius:50%;
background:#eef4ff;
font-size:28px;
color:#0d6efd;
margin-bottom:18px;
transition:0.4s;
}

/* Heading */
.value-card h5{
color:#000;
font-weight:600;
margin-bottom:10px;
}

/* Text */
.value-card p{
color:#000;
font-size:15px;
line-height:1.7;
}

/* Card Hover */
.value-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
border-color:#0d6efd;
}

/* Icon Hover */
.value-card:hover .value-icon{
background:linear-gradient(135deg,#0d6efd,#5a8cff);
color:#fff;
transform:scale(1.15) rotate(10deg);
}

/*** gallery ***/
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/*** enquiry ***/
.enquiry-form {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.input-icon .form-control,
.input-icon .form-select,
.input-icon textarea {
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.input-icon .form-control:focus,
.input-icon .form-select:focus,
.input-icon textarea:focus {
    box-shadow: 0 0 10px rgba(0,123,255,0.3);
    border-color: #007bff;
}

.btn-gradient {
    background: linear-gradient(135deg, #007bff, #6f42c1);
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.input-group-text {
    background: #f1f1f1;
    border-radius: 10px 0 0 10px;
    border: 1px solid #ccc;
    color: #000;
}

.text-dark {
    color: #000 !important;
}

/*** Service ***/
.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}


.services-section{
background:#f8f9fa;
}

.services-title{
font-weight:700;
color:#000;
}

.services-subtitle{
max-width:650px;
margin:auto;
color:#555;
}

/* service card */

.service-box{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.4s;
height:100%;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

/* content */

.service-info{
padding:25px;
text-align:center;
position:relative;
}

.service-info h4{
font-size:20px;
font-weight:600;
margin-bottom:10px;
color:#000;
}

.service-info p{
font-size:15px;
color:#666;
}

/* icon */

.service-icon{
width:60px;
height:60px;
background:#0d6efd;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
margin:-50px auto 15px auto;
transition:0.3s;
}

.service-box:hover .service-icon{
background:#ff6600;
transform:scale(1.1) rotate(10deg);
}

.services-section{
background:#f8f9fa;
}

.services-title{
font-weight:700;
color:#000;
}

.services-subtitle{
max-width:650px;
margin:auto;
color:#555;
}

/* card */

.service-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 6px 25px rgba(0,0,0,0.08);
transition:0.4s;
height:100%;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 40px rgba(0,0,0,0.15);
}

/* image */

.service-image{
overflow:hidden;
}

.service-image img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
}

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

/* content */

.service-content{
padding:25px;
text-align:center;
}

.service-content h4{
font-size:20px;
font-weight:600;
color:#000;
margin-bottom:10px;
}

.service-content p{
font-size:15px;
color:#666;
margin-bottom:15px;
}

/* icon */

.service-icon{
width:60px;
height:60px;
background:#0d6efd;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
margin:-50px auto 15px auto;
transition:0.3s;
}

.service-card:hover .service-icon{
background:#ff6600;
transform:scale(1.1) rotate(10deg);
}

/* button */

.service-btn{
display:inline-block;
padding:8px 18px;
background:#0d6efd;
color:#fff;
border-radius:30px;
font-size:14px;
text-decoration:none;
transition:0.3s;
}

.service-btn i{
margin-left:5px;
}

.service-btn:hover{
background:#ff6600;
color:#fff;
}

/*** servivce-1 ***/
/* Section */
.earthing-test-section{
background:#f9f9f9;
}

/* Title */
.test-title{
font-size:34px;
font-weight:700;
color:#000;
}

/* Icon */
.test-icon{
color:#0d6efd;
margin-right:10px;
}

/* Text */
.test-text{
color:#000;
font-size:16px;
line-height:1.8;
text-align:justify;
margin-bottom:15px;
}

/* Image Box */
.test-image-box{
overflow:hidden;
border-radius:12px;
}


/* Hover */
.test-image-box:hover .test-img{
transform:scale(1.08);
}

      /* Section */
.health-section{
background:#f9f9f9;
}

/* Title */
.health-title{
font-size:34px;
font-weight:700;
color:#000;
}

.health-icon{
color:#0d6efd;
margin-right:10px;
}

/* Text */
.health-text{
color:#000;
line-height:1.8;
text-align:justify;
margin-bottom:15px;
}

/* Card */
.health-card{
background:#fff;
border:1px solid #ddd;
border-radius:10px;
padding:20px;
display:flex;
align-items:center;
transition:0.4s;
}

/* Icon */
.health-card i{
font-size:22px;
color:#0d6efd;
margin-right:12px;
}

/* Text */
.health-card p{
margin:0;
color:#000;
font-weight:500;
}

/* Hover */
.health-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.08);
border-color:#0d6efd;
}

   /* Section */
.process-section{
background:#f9f9f9;
}

/* Title */
.process-title{
font-size:34px;
font-weight:700;
color:#000;
}

/* Card */
.process-card{
background:#fff;
border:1px solid #ddd;
border-radius:12px;
padding:30px 25px;
text-align:center;
transition:0.4s;
height:100%;
}

/* Icon */
.process-icon{
width:70px;
height:70px;
line-height:70px;
margin:auto;
border-radius:50%;
background:#eef4ff;
font-size:26px;
color:#0d6efd;
margin-bottom:15px;
transition:0.4s;
}

/* Heading */
.process-card h5{
color:#000;
font-weight:600;
margin-bottom:10px;
}

/* Text */
.process-card p{
color:#000;
font-size:15px;
line-height:1.7;
}

/* Hover */
.process-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 30px rgba(0,0,0,0.1);
border-color:#0d6efd;
}

/* Icon Hover */
.process-card:hover .process-icon{
background:#0d6efd;
color:#fff;
transform:scale(1.1) rotate(8deg);
}

      /* Section */
.earthing-info-premium{
background:#f8f9fa;
}

/* Card */
.premium-card{
background:#fff;
border:1px solid #ddd;
border-radius:14px;
padding:35px 30px;
height:100%;
position:relative;
transition:0.4s;
overflow:hidden;
}

/* Icon */
.card-icon{
width:65px;
height:65px;
line-height:65px;
border-radius:50%;
background:#eef4ff;
color:#0d6efd;
font-size:26px;
text-align:center;
margin-bottom:18px;
transition:0.4s;
}

/* Title */
.premium-card h3{
font-size:20px;
font-weight:700;
color:#000;
margin-bottom:18px;
}

/* List */
.premium-card ul{
list-style:none;
padding:0;
margin:0;
}

.premium-card ul li{
color:#000;
margin-bottom:12px;
padding-left:22px;
position:relative;
}

/* Animated Checkmark */
.premium-card ul li::before{
content:"✔";
position:absolute;
left:0;
color:#0d6efd;
font-size:14px;
transition:0.3s;
}

/* Hover */
.premium-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
border-color:#0d6efd;
}

/* Gradient Hover Effect */
.premium-card:hover::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0d6efd,#6ea8fe);
}

/* Icon Hover */
.premium-card:hover .card-icon{
background:#0d6efd;
color:#fff;
transform:scale(1.1) rotate(8deg);
}
      /* Section */
.service-locations{
background:#f9f9f9;
}

/* Title */
.locations-title{
font-size:32px;
font-weight:700;
color:#000;
}

/* Card */
.location-card{
background:#fff;
border:1px solid #ddd;
border-radius:14px;
padding:30px 15px;
text-align:center;
transition:0.4s;
cursor:pointer;
}

/* Icon */
.location-icon{
font-size:32px;
margin-bottom:15px;
display:block;
transition:0.4s;
}

/* Text */
.location-card p{
font-weight:700;
color:#000;
margin:0;
}

/* Hover effect */
.location-card:hover{
transform:translateY(-8px);
box-shadow:0 14px 30px rgba(0,0,0,0.1);
border-color:#0d6efd;
}

/* Icon hover animation */
.location-card:hover .location-icon{
transform:scale(1.3) rotate(10deg);
}
   
   .test-image-box{
overflow:hidden;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.test-img{
width:100%;
height:200px;
object-fit:cover;
transition:0.4s;
}

.test-image-box:hover .test-img{
transform:scale(1.08);
}
   



  /*** contact us ***/
  /* LOCATION CARD */

.location-card{
background:#fff;
padding:20px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.location-card i{
font-size:22px;
color:#0d6efd;
margin-bottom:8px;
}

.location-card h6{
margin:0;
font-weight:600;
}

.location-card span{
font-size:13px;
color:#777;
}

.location-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}


/* CONTACT FORM */

.contact-form-box{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.input-group-text{
background:#0d6efd;
color:#fff;
border:none;
}

.form-control{
border-left:0;
}

.submit-btn{
padding:12px;
font-weight:600;
font-size:16px;
}


/* MOBILE */

@media (max-width:768px){

.location-card{
padding:15px;
}

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

}
  
  
   
/*** why-choose-us ***/

.why-section{
background:#f8f9fa;
}

.feature-box{
align-items:flex-start;
}

.feature-icon{
width:60px;
height:60px;
background:#0d6efd;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
flex-shrink:0;
transition:0.3s;
}

.feature-box:hover .feature-icon{
background:#ff6600;
transform:scale(1.1);
}

.feature-box h5{
font-weight:600;
color:#000;
margin-bottom:5px;
}

.feature-box p{
color:#666;
font-size:15px;
margin:0;
}

.why-img-box{
height:100%;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

.why-img-box img{
width:100%;
height:100%;
object-fit:cover;
}


.benefit-icon{
font-size:45px;
color:#0d6efd;
transition:0.3s;
}

.benefit-card:hover .benefit-icon{
color:#ff6600;
transform:scale(1.2);
}

.benefit-card{
border-radius:8px;
box-shadow:0 6px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.benefit-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

/* Benefit Card Border */
.benefit-card{
border:1px solid #ddd;
}

/* Text Black */
.benefit-card h5{
color:#000;
}

.benefit-card p{
color:#000;
}

/* Top Section Text */
.container-xxl h2{
color:#000;
}

.container-xxl p{
color:#000;
}

   /* WHY SECTION */

.why-section{
background:#f9f9f9;
}


/* FEATURE BOX */

.feature-box{
align-items:flex-start;
}

.feature-icon{
width:55px;
height:55px;
background:#0d6efd;
color:white;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
transition:0.4s;
}

.feature-box:hover .feature-icon{
transform:scale(1.1);
background:#0b5ed7;
}


/* IMAGE GRID */

.why-img-grid{
align-items:stretch;
}

.why-img-box{
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
height:100%;
}

.why-img-box img{
width:100%;
height:100%;
object-fit:cover;
transition:0.6s;
}

.why-img-box:hover img{
transform:scale(1.1);
}

.large-img{
height:250px;
}


/* RESPONSIVE */

@media(max-width:768px){

.large-img{
height:200px;
}

.feature-icon{
width:45px;
height:45px;
font-size:16px;
}

}



/*** Facts ***/
.facts {
    background: rgba(1, 10, 53, .8);
}


/*** contact ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .container.quote .quote-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.quote .quote-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.quote .quote-text {
    background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form {
    background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* section */

.quote-section{
background:#f8f9fa;
}

/* LOCATION */

.location-box{
padding:20px 10px;
background:#fff;
border-radius:10px;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
transition:0.3s;
margin-bottom:15px;
}

.location-box:hover{
transform:translateY(-6px);
box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

.location-icon{
width:50px;
height:50px;
margin:auto;
background:#0d6efd;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
margin-bottom:10px;
}

.location-box h6{
font-weight:600;
margin-bottom:3px;
}

.location-box span{
font-size:13px;
color:#777;
}

/* QUOTE WRAPPER */

.quote-wrapper{
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

/* LEFT SIDE */

.quote-left{
background:linear-gradient(135deg,#0d6efd,#003f9e);
display:flex;
align-items:center;
padding:50px;
}

.quote-content h2{
font-weight:700;
margin-bottom:15px;
}

.quote-content p{
margin-bottom:25px;
}

/* CTA BUTTONS */

.cta-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.cta-buttons .btn i{
margin-right:5px;
}

/* FORM */

.quote-right{
background:#fff;
display:flex;
align-items:center;
padding:40px;
}

.quote-form-box h4{
font-weight:600;
margin-bottom:20px;
}

.quote-form-box .form-control{
border-radius:6px;
padding:12px;
border:1px solid #ddd;
}

.quote-form-box button{
padding:12px;
font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

.quote-left{
padding:30px;
text-align:center;
}

.quote-right{
padding:30px;
}

.cta-buttons{
justify-content:center;
}

}


.contact-section{
background:#f8f9fc;
}

.contact-card{
background:#fff;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
height:100%;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.contact-icon{
width:50px;
height:50px;
background:#0d6efd;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
margin-right:15px;
}

.contact-input .input-group-text{
background:#0d6efd;
color:#fff;
border:none;
}

.contact-input input,
.contact-input textarea{
border-left:0;
}

.btn-contact{
background:#0d6efd;
color:#fff;
border:none;
border-radius:8px;
transition:.3s;
font-weight:500;
}

.btn-contact:hover{
background:#0b5ed7;
transform:translateY(-2px);
}

.social-icons a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
border-radius:50%;
background:#f1f1f1;
margin-right:10px;
color:#333;
transition:.3s;
text-decoration:none;
}

.social-icons a:hover{
background:#0d6efd;
color:#fff;
}

.map-card{
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form .form-group{
position:relative;
width:100%;
}

.contact-form .form-group i{
position:absolute;
top:50%;
left:15px;
transform:translateY(-50%);
color:#0d6efd;
font-size:16px;
}

.contact-form .form-group.textarea i{
top:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px 15px 14px 45px;
border-radius:8px;
border:1px solid #ddd;
font-size:15px;
outline:none;
transition:.3s;
background:#f9f9f9;
}

.contact-form textarea{
resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#0d6efd;
background:#fff;
box-shadow:0 0 0 3px rgba(13,110,253,0.15);
}

.btn-contact{
background:#0d6efd;
color:#fff;
border:none;
border-radius:8px;
padding:14px;
font-size:16px;
font-weight:500;
transition:.3s;
}

.btn-contact:hover{
background:#0b5ed7;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(13,110,253,0.3);
}



/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

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


/*** Footer ***/
.footer {
    color: #7F8499;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7F8499;
    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;
    color: #7F8499;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #7F8499;
    border: 1px solid #7F8499;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

/* Footer Links */
.footer a.btn-link {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer a.btn-link:hover {
    color: #0d6efd; /* Blue hover */
}

/* Social Icons */
.footer .social-icon {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}
.footer .social-icon:hover {
    background-color: #0d6efd; /* Blue background on hover */
    color: #fff;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 99;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    text-decoration: none;
    color: #fff;
}

/* Icon inside button */
.whatsapp-float i {
    margin-top: 15px; /* vertical center */
}


/* product */
.earthing-intro .img-hover-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

.earthing-intro .img-hover-wrapper img {
  transition: transform 0.5s ease, filter 0.5s ease;
  width: 100%;
  display: block;
  
}

.earthing-intro .img-hover-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000; /* Black text */
}

.section-subtitle {
  font-size: 1.25rem;
  color: #000; /* Black text */
}

.justify-text {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
  color: #000; /* Black text */
}

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

.product-features li {
  font-size: 1rem;
  color: #000; /* Black list text */
  margin-bottom: 10px; /* space between items */
  display: flex;
  align-items: center;
}

.product-features .icon {
  color: green;
  margin-right: 8px;
  font-weight: bold;
}


.our-products .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Equal height for all cards */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-img-wrapper:hover .product-img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

/* Product Name centered with light blue background */
.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 15px;
  color: #000;
  background-color: #cce6ff; /* light blue */
  padding: 8px 0;
  border-radius: 5px;
}

.product-desc {
  font-size: 0.95rem;
  color: #333;
  margin: 10px 15px 15px;
  line-height: 1.5;
  text-align: justify;
  flex-grow: 1; /* Ensures equal card height with image & title */
}


 .why-choose {
  position: relative;
  background: linear-gradient(to right, #e0f7ff, #f0f8ff); /* soft gradient */
  border-radius: 15px;
  padding: 60px 0;
}

.why-choose .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 40px;
}

.img-hover-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.img-hover-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.img-hover-wrapper:hover img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.9);
}

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

.choose-features li {
  font-size: 1rem;
  color: #000;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.choose-features li:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  background: #e6f2ff;
}

.choose-features .icon {
  color: green;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.2rem;
}

.earthing-applications .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 10px;
}

.app-card {
  background: linear-gradient(135deg, #cce6ff, #99ccff);
  border-radius: 15px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #99ccff, #66b2ff);
}

.app-icon {
  font-size: 2rem;
  margin-right: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.app-card:hover .app-icon {
  transform: scale(1.3) rotate(10deg);
  color: #004080;
}

.earthing-applications p {
  font-size: 1rem;
  color: #333;
}