*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

/* HEADER */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#03445e;
    z-index:1000;
    padding:15px 0;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
}

.logo-section img{
    width:100px;
}

.logo-section h2{
    font-size:22px;
}

.logo-section p{
    font-size:12px;
}

.vertical-line{
    width:2px;
    height:30px;
    background:rgba(255,255,255,0.35);
}

.navbar{
    display:flex;
    gap: 20px;
    align-items: center;
}

.navbar a{
    text-decoration:none;
    color:#fff;
    font-weight:bold;
}

.btn{
    display:inline-block;
    padding:12px 22px;
    background:#00c7b7;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#00a89a;
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgb(12, 12, 12);
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center; /* Center text */
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #fff;
    text-align: center; /* Center link text */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* HERO */
.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    color: #02172d;
    padding-top: 100px;
}

/* Background Image */
.hero-bg{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image:
linear-gradient(
rgba(0,0,0,0.55),
rgba(0,0,0,0.55)
),
url("assets/images/index/bg.png");


    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index:-1;
}

/* Overlay Optional */
.overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Content */
.hero-content{
    position: relative;
    z-index: 3;

    width: 100%;
}

/* Text */
.hero-text{
    max-width: 700px;
}

.hero-text h1{
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text span{
    color:#00d7c8;
}

.hero-text p{
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

/* Buttons */
.hero-buttons{
    display:flex;
    gap:15px;
}

/* SERVICES */
.special-services,
.about,
.contact{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:10px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    padding:30px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

.special-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.special-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.special-content{
    padding:20px;
}



/* WHY CHOOSE */
.why-choose {
    background: linear-gradient(135deg, #021c3a, #042c54);
    padding: 80px 0px;
    color: #fff;
    text-align: center;
}

.section-title h2 {
    color: #62d5ce;
    margin-bottom: 10px;

}

.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-box {
    padding: 20px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.icon {
    font-size: 40px;
    color: #62d5ce;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
    color : black;
}


/* =========================
   SERVICE CARD
========================= */

/* SERVICES SECTION */
.services{
    padding: 100px 0;
    background: #f7f7f7;
}

/* Section Title */
.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title .sub-title{
    color: #62d5ce;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title h2{
    font-size: 38px;
    color: #0b1c39;
    margin-bottom: 20px;
}

.section-title p{
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Grid */
.service-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.service-card{
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-10px);
}

/* Icon Box */
.service-icon{
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #f3f4f6;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Size */
.service-icon i{
    font-size: 40px;
}

/* Individual Icon Colors */
.house-icon i{
    color: #2ec4b6;
}

.hardhat-icon i{
    color: #3b82f6;
}

.warning-icon i{
    color: #22c55e;
}

.leaf-icon i{
    color: #38bdf8;
}

/* Card Title */
.service-card h3{
    font-size: 22px;
    line-height: 1.4;
    color: #001b5e;
    margin-bottom: 20px;
}

/* Card Text */
.service-card p{
    color: #6b7280;
    line-height: 1.8;
    font-size: 17px;
}

/* Responsive */
@media(max-width: 992px){

    .service-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 768px){

    .service-grid{
        grid-template-columns: 1fr;
    }

    .section-title h1{
        font-size: 36px;
    }
}

/* Hover Effect */
.service-card:hover{
    transform:translateY(-6px);

    box-shadow:0 12px 24px rgba(0,0,0,0.12);
}

/* Learn More Link */
.service-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: #16c2b8;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
}

/* Arrow Animation */
.service-link i{
    transition: 0.3s;
}

/* Hover */
.service-link:hover{
    color: #081b3a;
}

.service-link:hover i{
    transform: translateX(5px);
}
/* =========================
   CREDENTIALS SECTION
========================= */

.credentials-section{
    background:#eaf4ff; /* Light Blue Background */
    padding:70px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Title Center */
.credentials-title{
    font-size:34px;
    font-weight:700;
    color:#031c4b;
    margin-bottom:40px;
    letter-spacing:1px;

    text-align:center;   /* Center Title */
}

/* Large Image */
.credentials-image{
    width:100%;
    border-radius:18px;
    overflow:hidden;

    background:#ffffff;
    padding:15px;

    box-shadow:0 8px 25px rgba(3, 28, 75, 0.08);
}

/* Image */
.credentials-image img{
    width:100%;
    display:block;
    border-radius:22px;
    object-fit:cover;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .credentials-section{
        padding:50px 0;
    }

    .credentials-title{
        font-size:28px;
        margin-bottom:30px;
    }

    .credentials-image{
        padding:10px;
    }

}

/* Responsive */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ABOUT */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
}

/* =========================
   CLOSING SECTION
========================= */

.closing-section{
    background:#eaf4ff; /* Light Blue */
    padding:30px 10px;
    text-align:center;
}

.closing-section .container{
    max-width:900px;
    margin:auto;
}

/* Heading */
.closing-section h4{
    font-size:30px;
    font-weight:700;
    color:#031c4b;
    margin-bottom:25px;
    line-height:1.3;
}

/* Paragraph */
.closing-section p{
    font-size:20px;
    line-height:1.8;
    color:#4a5b78;
    margin-bottom:40px;
}

/* Button */
.closing-btn{
    display:inline-block;
    background:#031c4b;
    color:#ffffff;
    text-decoration:none;

    padding:10px 20px;
    border-radius:30px;

    font-size:15px;
    font-weight:600;

    transition:0.3s ease;
}

/* Hover */
.closing-btn:hover{
    background:#0a2f73;
    transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .closing-section{
        padding:70px 20px;
    }

    .closing-section h2{
        font-size:34px;
    }

    .closing-section p{
        font-size:18px;
    }

}

@media(max-width:480px){

    .closing-section h2{
        font-size:28px;
    }

    .closing-section p{
        font-size:16px;
    }

}

/* CONTACT */
.contact{
    background:#f7f7f7;
}

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:5px;
}

.success-msg{
    background:green;
    color:#fff;
    padding:15px;
 
   margin-bottom:20px;
    text-align:center;
}
/* =========================
   FOOTER
========================= */

.footer{
    background:rgb(3, 48, 71);
    color:#ffffff;
    padding:50px 0 0;
    font-family:Arial, sans-serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   GRID
========================= */

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
    align-items:flex-start;
}

/* =========================
   LOGO
========================= */

.footer-logo img{
    width:180px;
    margin-bottom:25px;
}

/* =========================
   HEADINGS
========================= */
.footer-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-col h4{
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
    color:#fff;
}

/* =========================
   TEXT
========================= */

.footer-col p{
    color:#c6d0e0;
    line-height:1.8;
    font-size:16px;
    margin-bottom:15px;
    justify-content:center;

}

/* =========================
   LISTS
========================= */

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
    text-align:center;
}

.footer-col ul li{
    margin-bottom:18px;
    color:#c6d0e0;
    font-size:16px;
}

.footer-col ul li a{
    color:#c6d0e0;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#ffffff;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    margin-top:25px;
    display:flex;
    gap:15px;
    align-items:center;
    justify-content:center;
}

.social-icons a{
    width:60px;
    height:40px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#031c4b;
}

/* =========================
   PRIVACY LINKS
========================= */

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:0;
    text-align:right;
}


.footer-links a{
    color:#c6d0e0;
    text-decoration:none;
    font-size:14px;
}


.footer-links a:hover{
    color:#fff;
}

/* =========================
   CONTACT ICONS
========================= */

.footer-col p i{
    margin-right:12px;
    color:#ffffff;
    width:18px;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    margin-top:50px;
    padding-bottom:25px;
}

.footer-line{
    width:90%;
    height:1px;
    background:rgba(255,255,255,0.15);
    margin:0 auto 25px;
}

.footer-bottom-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center; /* Important */
}


.footer-bottom-content p{
    color:#9aa8bf;
    font-size:15px;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media(max-width:768px){

    .footer-bottom-content{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}

@media(max-width:576px){

    .footer{
        padding-top:50px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-col h4{
        margin-bottom:18px;
    }

    .footer-logo img{
        width:150px;
    }

}

/* MOBILE */
@media(max-width:992px){

    .hero-content,
    .about-grid,
    .service-grid,
    .special-grid,
    .why-grid,
    .feature-grid,
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .navbar{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:#031b38;
        flex-direction:column;
        padding:20px;
        transition:0.3s;
    }

    .navbar.active{
        left:0;
    }

    .menu-toggle{
        display:block;
    }

    .nav-btn{
        display:none;
    }

    .hero-content,
    .about-grid,
    .service-grid,
    .special-grid,
    .why-grid,
    .feature-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:38px;
    }

    .section-title h2,
    .about-content h2{
        font-size:32px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}
