/*====================================================
JDS EARTHING INFRA PVT. LTD.
Premium Industrial Website
Version : 1.0
======================================================*/

/*==============================
GOOGLE FONT
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==================================================
ROOT VARIABLES
==================================================*/

:root{
    --primary:#f59e0b;
    --primary-dark:#d97706;
    --secondary:#1f2937;
    --dark:#111827;
    --light:#ffffff;
    --gray:#6b7280;
    --border:#e5e7eb;
    --bg:#f8fafc;
    --transition:all .35s ease;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

.top-bar {
    background: #000;
    padding: 7px 0px;
}
.top-bar ul.top-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
.top-bar ul.top-contact li {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
}
.top-bar ul.top-contact li a {
    color: #fff;
}
.social-icons a {
    color: #fff;
    padding-left: 10px;
}
.logo-cont img {
    width: 35%;
    margin-bottom: 10px;
}
.footer-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}
.footer-link ul li {
    margin-top: 10px;
    font-size: 16px;
}
.footer-link ul li a {
    color: #000;
}
footer.footer-section {
    padding: 60px 0 0;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
}
.footer-link a {
    color: #000;
    margin-right: 10px;
}
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 20px;
}

/*==================================================
GLOBAL
==================================================*/
section.home-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
    background-blend-mode: overlay;
    background-color: #000000ab;
    color: #fff;
}
section.home-banner h2 {
    color: #fff;
}
.bannerHeading {
    width: 50%;
    text-align: left;
}
.page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
    background-blend-mode: overlay;
    background-color: #000000ab;
    color: #fff;
}
.bannerHeading {
    width: 50%;
    text-align: left;
}
.page-banner h2{
    color: #fff;

}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.75),rgba(0,0,0,.45));
}

.banner-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.banner-subtitle{
    display:inline-block;
    color:#f59e0b;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.banner-content h1{
    font-size:54px;
    font-weight:700;
    margin-bottom:20px;
}
.product-card {
    text-align: center;
    padding-bottom: 20px;
}
.banner-content p{
    max-width:650px;
    font-size:18px;
    color:#f1f1f1;
}

.breadcrumb{
    margin-top:25px;
    background:none;
    padding:0;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#fff;
}

.breadcrumb-item.active{
    color:#f59e0b;
}

@media(max-width:768px){

.page-banner{
    min-height:320px;
}

.banner-content h1{
    font-size:34px;
}

.banner-content p{
    font-size:16px;
}

}
html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333;
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

a:hover{
    color:var(--primary);
}

section{
    position:relative;
    padding:80px 0;
}

.container{
    max-width:1320px;
}

/*==================================================
HEADER
==================================================*/

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 20px rgba(0,0,0,.06);
}

.site-header.scrolled{
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.navbar{
    padding:0px 0;
}

.navbar-brand img{
    max-height:88px;
}

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-item{
    position:relative;
}

.navbar-nav .nav-link{
    font-size:18px;
    font-weight:600;
    color:#222;
    padding:14px 16px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--primary);
}

/*==================================================
SERVICES DROPDOWN
==================================================*/

.nav-item.dropdown{
    position:relative;
}

.dropdown-menu{

    border:none;

    border-radius:12px;

    padding:12px 0;

    min-width:340px;

    max-height:75vh;

    overflow-y:auto;

    overflow-x:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    z-index:99999;

    animation:fadeMenu .3s;

}

/* custom scrollbar */

.dropdown-menu::-webkit-scrollbar{
    width:7px;
}

.dropdown-menu::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

.dropdown-item{

    padding:11px 22px;

    font-size:15px;

    font-weight:500;

    transition:.25s;

    white-space:normal;

}

.dropdown-item:hover{

    background:#fff7e8;

    color:var(--primary-dark);

    padding-left:28px;

}

/* desktop hover */

@media(min-width:992px){

.navbar .dropdown:hover>.dropdown-menu{

display:block;

margin-top:0;

}

}

/*==================================================
MEGA MENU (Future Ready)
==================================================*/

.mega-menu{

width:650px;

padding:20px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:10px;

}

.mega-menu a{

display:block;

padding:10px 15px;

border-radius:8px;

font-weight:500;

color:#333;

}

.mega-menu a:hover{

background:#fff7e8;

color:var(--primary);

}

/*==================================================
CTA BUTTON
==================================================*/

.btn-primary{

background:var(--primary);

border:none;

padding:14px 28px;

font-weight:600;

border-radius:8px;

transition:.3s;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-2px);

}

/*==================================================
ANIMATION
==================================================*/

@keyframes fadeMenu{

from{

opacity:0;

transform:translateY(10px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==================================================
FIXES
==================================================*/

.dropdown-menu{

pointer-events:auto;

}

.navbar{

overflow:visible;

}

.site-header{

overflow:visible;

}

body.menu-open{

overflow:hidden;

}
/*==================================================
INNER PAGE HERO / BANNER
==================================================*/

/* .page-hero{
    position: relative;
    padding: 170px 0 100px;
    background: linear-gradient(rgba(17,24,39,.75),rgba(17,24,39,.75)),
                url("../images/banner/page-banner.webp") center/cover no-repeat;
    color:#fff;
    overflow:hidden;
} */

.page-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
    color: #000;
}

.page-hero p{
    font-size:18px;
    color:#000;
    max-width:700px;
}

.page-hero .btn{
    margin-top:20px;
}

.breadcrumb{
    background:transparent;
    padding:0;
    margin-top:20px;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#fff;
    font-size:15px;
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

/*==================================================
SECTION TITLES
==================================================*/

.section-subtitle{
    display:inline-block;
    color:var(--primary);
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title,
section h2{
    font-size:38px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:20px;
}

.section-description{
    color:#666;
    max-width:750px;
    margin:auto;
}

/*==================================================
SERVICE CARDS
==================================================*/

.service-card,
.feature-card,
.industry-card{

    background:#fff;

    border-radius:14px;

    padding:35px;

    transition:.35s;

    box-shadow:var(--shadow);

    height:100%;

    border:1px solid #f3f4f6;

}

.service-card:hover,
.feature-card:hover,
.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-card img{

    border-radius:12px;

    margin-bottom:20px;

}

.service-card h3,
.feature-card h4,
.industry-card h4{

    font-size:22px;

    margin-bottom:15px;

    color:#1f2937;

}

.service-card p,
.feature-card p,
.industry-card p{

    color:#666;

}

/*==================================================
PRODUCT CARDS
==================================================*/

.product-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.product-content{

    padding:25px;

}

/*==================================================
BUTTONS
==================================================*/

.btn-warning{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

    padding:10px 30px;

    border-radius:8px;

    font-weight:600;

}

.btn-warning:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

    color:#fff;

}
.hero-buttons a {
    margin-right: 15px;
}
.btn-outline-warning{

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

}

.btn-outline-warning:hover{

    background:var(--primary);

    color:#fff;

}

/*==================================================
CTA SECTION
==================================================*/

.cta-section{

    background:linear-gradient(135deg,#111827,#1f2937);

    color:#fff;

}

.cta-section h2{

    color:#fff;

    font-size:40px;

}

.cta-section p{

    color:#e5e7eb;

    font-size:17px;

}

/*==================================================
TABLES
==================================================*/

.table{

    border-radius:10px;

    overflow:hidden;

}

.table thead{

    background:#1f2937;

    color:#fff;

}

.table td,
.table th{

    vertical-align:middle;

    padding:15px;

}

/*==================================================
GALLERY
==================================================*/

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:12px;

}

.gallery-item img{

    width:100%;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*==================================================
PROCESS CARDS
==================================================*/

.process-card{

    background:#fff;

    padding:35px;

    border-radius:14px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-6px);

}

.process-number{

    width:65px;

    height:65px;

    margin:auto auto 20px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:24px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*==================================================
QUOTE BOX
==================================================*/

.quote-box{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:var(--shadow);

    border-left:5px solid var(--primary);

}

/*==================================================
LIST GROUP
==================================================*/

.list-group-item{

    border:none;

    padding:14px 0;

    font-size:16px;

}

/*==================================================
IMAGE EFFECT
==================================================*/

.img-hover{

    overflow:hidden;

    border-radius:12px;

}

.img-hover img{

    transition:.4s;

}

.img-hover:hover img{

    transform:scale(1.08);

}
/*==================================================
FOOTER
==================================================*/

.site-footer{
    background:#111827;
    color:#d1d5db;
    padding:70px 0 20px;
}

.site-footer h3,
.site-footer h4,
.site-footer h5{
    color:#fff;
    margin-bottom:20px;
    font-weight:600;
}

.site-footer p{
    color:#9ca3af;
    line-height:1.8;
}

.site-footer ul{
    margin:0;
    padding:0;
    list-style:none;
}

.site-footer ul li{
    margin-bottom:12px;
}

.site-footer ul li a{
    color:#d1d5db;
    transition:.3s;
}

.site-footer ul li a:hover{
    color:var(--primary);
    padding-left:6px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    font-size:15px;
}

/*==================================================
CONTACT
==================================================*/

.contact-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:var(--shadow);
    height:100%;
}

.contact-box i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:24px;
    margin-bottom:20px;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.contact-form .form-control,
.contact-form .form-select{
    min-height:52px;
    border-radius:8px;
    border:1px solid var(--border);
}

.contact-form textarea{
    min-height:150px;
}

/*==================================================
FAQ
==================================================*/

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:10px !important;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.accordion-button{
    font-weight:600;
    font-size:17px;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#fff7e8;
    color:var(--primary-dark);
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    line-height:1.8;
    color:#555;
}

/*==================================================
FLOATING BUTTONS
==================================================*/

.whatsapp,
.call,
.back-top{
    position:fixed;
    right:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    z-index:9999;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.whatsapp{
    bottom:150px;
    background:#25D366;
}

.call{
    bottom:85px;
    background:#0d6efd;
}

.back-top{
    bottom:20px;
    background:var(--primary);
    opacity:0;
    visibility:hidden;
}

.back-top.show{
    opacity:1;
    visibility:visible;
}

.whatsapp:hover,
.call:hover,
.back-top:hover{
    transform:translateY(-4px);
    color:#fff;
}

/*==================================================
PAGE SPACING
==================================================*/

.py-80{
    padding:80px 0;
}

.mt-40{
    margin-top:40px;
}

.mb-40{
    margin-bottom:40px;
}

/*==================================================
ANIMATION
==================================================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:.6s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.page-hero{
    padding:130px 0 70px;
    text-align:center;
}

.page-hero h1{
    font-size:34px;
}

.section-title,
section h2{
    font-size:30px;
}

.navbar-brand img{
    max-height:55px;
}

.dropdown-menu{
    min-width:100%;
    max-height:400px;
    overflow-y:auto;
    box-shadow:none;
    border-radius:0;
}

.mega-menu{
    width:100%;
    grid-template-columns:1fr;
}

.service-card,
.feature-card,
.industry-card{
    padding:25px;
}

}

@media(max-width:767px){

section{
    padding:60px 0;
}

.page-hero{
    padding:120px 0 60px;
}

.page-hero h1{
    font-size:28px;
}

.page-hero p{
    font-size:16px;
}

.btn{
    width:100%;
    margin-bottom:12px;
}

.whatsapp,
.call,
.back-top{
    width:50px;
    height:50px;
    right:15px;
}

.whatsapp{
    bottom:140px;
}

.call{
    bottom:80px;
}

.back-top{
    bottom:20px;
}

.footer-social{
    justify-content:center;
}

.footer-bottom{
    text-align:center;
}

}

/*==================================================
UTILITY CLASSES
==================================================*/

.shadow-hover{
    transition:.3s;
}

.shadow-hover:hover{
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    transform:translateY(-6px);
}

.rounded-xl{
    border-radius:18px;
}

.bg-light-custom{
    background:#f8fafc;
}

.text-primary-custom{
    color:var(--primary);
}

.text-secondary-custom{
    color:var(--secondary);
}