body {
    font-family: system-ui;
    margin: 0;
    line-height: 1.6;
    color: #222;
}

h2 {
    font-size: 28px;
    color: #01415B;
    margin-bottom: 20px;
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.logo {
    height: 40px;
}

header {
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
}

/* hero section starts here */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    z-index: 2;
    margin: auto;
    text-align: center;
}

/* arrows */

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* dots */

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #fff;
}

.nav {
    z-index: 5;
}

.dots {
    z-index: 5;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
    transition: 100ms;
}

.cta:hover {
    background: #01415B;
}

/* hero section ends here */

/* about us section starts here */
.about {
    padding: 60px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-stats {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: #01415B;
    margin: 0;
}

.stat p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

/* about us section ends here */

/* service section starts here */
.services{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* tablet */

@media (max-width:900px){
.services{
grid-template-columns:repeat(2,1fr);
}
}

/* mobile */

@media (max-width:600px){
.services{
grid-template-columns:1fr;
}
}



.service {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #cfcfcf;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background-color: #01415B;
    color: #eee;

}
/* service section ends here */

/* ceo message section starts here */
.ceo-message{
margin-top:80px;
}

.ceo-grid{
display:grid;
grid-template-columns:1fr 1fr;
}

.ceo-image img{
width:100%;
height:100%;
object-fit:cover;
}

.ceo-content{
background:#01415B;
color:#fff;
padding:20px 20px;
display:flex;
flex-direction:column;
justify-content:center;
}

.ceo-content h2{
    color:#dbdbdb;
font-size:40px;
line-height:1.3;
margin-bottom:20px;
}

.ceo-intro{
font-size:18px;
color:#d8e5eb;
}

.ceo-content p{
color:#c7d7de;
}

.ceo-signature img{
height:50px;
margin:15px 0 5px 0;
}

.ceo-name{
color:#ff6a00;
margin:5px 0 2px 0;
}

.ceo-role{
color:#d0dce2;
font-size:14px;
margin:0;
}

@media(max-width:900px){
.ceo-grid{
grid-template-columns:1fr;
}
.ceo-content{
padding:50px 30px;
}
.ceo-content h2{
font-size:32px;
}

}
/* ceo message section ends here */


/* form section starts here */
.contact-section{
padding:60px 20px;
max-width:700px;
margin:auto;
text-align:center;
}

.contact-section h2{
font-size:32px;
margin-bottom:10px;
color:#01415B;
}

.form-message{
color:#555;
margin-bottom:30px;
}

.contact-form{
text-align:left;
}

.form-group{
margin-bottom:18px;
}

.contact-form label{
display:block;
margin-bottom:6px;
font-weight:500;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:4px;
font-size:15px;
}

.contact-form button{
background:#01415B;
color:white;
border:none;
padding:14px 28px;
font-size:16px;
cursor:pointer;
border-radius:4px;
transition:0.3s;
}

.contact-form button:hover{
background:#022c3b;
}

/* form section ends here */

/* Why choose us section starts here */
.why-us{
padding:40px 20px;
background:#01415B;
text-align:center;
}

.why-us h2{
font-size:32px;
color:#d0dce2;
margin-bottom:20px;
}

.why-intro{
max-width:80%;
margin:auto;
color:#d0dce2;
line-height:1.7;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.why-item{
background:white;
padding:25px;
border-radius:6px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
text-align:left;
}

.why-item h3{
color:#01415B;
text-align: center;
font-size:18px;
margin-bottom:10px;
}

.why-item p{
color:#666;
font-size:15px;
line-height:1.6;
}
/* why choose us section ends here */

/* Contact us section starts here */

/* Contact Section */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.contact-us{
background:#f5f5f5;
padding:30px;
width:90%;
height:390px;
border-radius:8px;
border: #022c3b solid 1px;
}

/* Contact Details */

.contact-details{
list-style: disc;
padding-left: 20px;
margin-top: 15px;
}

.contact-details li{
margin-bottom:10px;
}


/* Map */

.map iframe{
width:100%;
height:450px;
border:0;
border-radius:8px;
border: #022c3b solid 1px;

}

/* Responsive */

@media (max-width:768px){
.contact-wrapper{
grid-template-columns:1fr;
}
.contact-details{
justify-content:center;
}
}
/* contact us section ends here */


footer {
    text-align: center;
    padding: 30px;
    background: #f7f7f7;
}
