
html,
body{
    width:100%;
    overflow-x:hidden;
}
body{
    padding-top:90px;
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
.text-justify{
    text-align: justify;
}
.w-50{
        width: 50%
}

.bg-aliceblue{
    background-color: aliceblue !important;
}
body{
       margin: auto;
   
}
a{
        text-decoration:none !important;

}
nav{
     padding: 0px 3em;
    /* background-color: red; */
    padding: 15px;
}
.nav-list{
    list-style: none;
    margin: auto;
}

ul>li{
    padding: 0px 10px;
}

.hero-section{
    width: auto;
    height: 650px;
    background-color: lightblue;
}

.about{
    padding:0 20px;
}

.col-blue{
        color: #046ab0 !important;

}


/* ==========================
   GOOGLE FONT RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
scroll-behavior: smooth;
    
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.7;
    color:#333;
    background:#fff;
}

.navbar-brand{
    display: flex;
    align-items: center;
}

/* ==========================
   COMMON
========================== */

/* .container{
    width:90%;
    max-width:1200px;
    margin:auto;
} */

section{
      padding: 20px 0
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#0c4da2;
    margin-bottom:15px;
    position:relative;
}

.section-title h2::after{
    content:'';
    width:80px;
    height:4px;
    background:#083978;
    display:block;
    margin:12px auto;
    border-radius:20px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.primary-btn{
    background:#0c4da2;
    color:#fff;
}

.primary-btn:hover{
    background:#083978;
    transform:translateY(-3px);
    color: black !important;
}

.secondary-btn{
    background:#19a84a;
    color:#fff;
}

.secondary-btn:hover{
    background:#14853b;
    transform:translateY(-3px);
        color: black !important;

}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    top:0;
    z-index:9999;
    width:100%;
    left:0;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}



/* .nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
} */

.logo h2{
    color:#0c4da2;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#0c4da2;
}

/* ==========================
   HERO SECTION
========================== */

.hero{
    height:100vh;
    background:
    url(./src/img/hero\ sec1.jpg);
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    transition: background-image 0.8s ease-in-out;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Dark overlay */
}


.hero-content{
    max-width:850px;
    padding:20px;
      position: relative;
    z-index: 1;
}

.hero h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* ==========================
   ABOUT
========================== */

.about{
    background:#ffffff;
}

.about p{
    font-size:17px;
    margin-bottom:20px;
    color:#555;
}
#contact{

    background-color: aliceblue !important
}

/* ==========================
   PRODUCTS
========================== */
 


.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid #0c4da2;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card h3{
    color:#0c4da2;
    font-size:22px;
}

.catalog-btn{
    text-align:center;
    margin-top:50px;
}

/* ==========================
   LEADERSHIP
========================== */

.leadership{
    background:#fff;
}

.leader-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.leader-card{
    background:#ffffff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.leader-card:hover{
    transform:translateY(-8px);
}

.leader-card h3{
    color:#0c4da2;
    margin-bottom:20px;
}

.leader-card p{
    color:#555;
    margin-bottom:15px;
}

#readBtn, #viceBtn, #mdBtn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #0b4ea2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* ==========================
   CONTACT
========================== */

.contact{
    background:#f8fbff;

}

.contact-box{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-box p{
    margin-bottom:20px;
    font-size:18px;
}

.contact-box strong{
    color:#0c4da2;
}
.contact-buttons>button>a{
   color: white;
}
.map-section{
    padding:60px 0;
    background:#fff;
}

.map-container{
    width:100%;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.map-container iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}
/* ==========================
   FOOTER
========================== */

footer{
    background:#0c4da2;
    color:#fff;
    text-align:center;
    padding:25px 0;
}

footer p{
    margin:0;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }
 .about{
        padding:0 60px;
    }
}

@media(max-width:768px){

    /* .nav-container{
        flex-direction:column;
    } */

    nav ul{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav ul li{
        margin:10px;
    }

    .hero{
        padding-top:100px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
.about-section{
        flex-direction: column;
    gap: 2em;
    text-align: justify;
}
    .section-title h2{
        font-size:32px;
    }

    section{
        padding:70px 0;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:30px;
    }

    .section-title h2{
        font-size:28px;
    }

    .product-card,
    .leader-card,
    .contact-box{
        padding:25px;
    }
    .contact-box{
        text-align: center;
    }
}

