*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#222;
    margin:0;
    padding-top:0;
}

header{
    background:rgba(0,43,92,0.95);
    color:white;
    padding:10px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    box-sizing:border-box;
    z-index:1000;
    backdrop-filter:blur(8px);
}

.logo{
    font-size:30px;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:#00bfff;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
width:70px;
height:70px;
object-fit:contain;
}

.logo-area h2{
font-size:28px;
margin:0;
color:white;
}

.logo-area p{
margin:0;
font-size:13px;
color:#d9e8ff;
letter-spacing:1px;
}

header{
background:#082b5c;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:999;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

nav a:hover{
color:#45c7ff;
}

.hero{
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
                url("../images/hero.png");
    background-size: cover;
    background-position: center;
    height: 100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:40px;
    box-sizing:border-box;

    color:white;
}

.hero-text h1{
    font-size:64px;
    font-weight:700;
    margin-bottom:20px;
    text-shadow:0 4px 15px rgba(0,0,0,0.5);
}

.hero-text p{
    font-size:24px;
    margin-bottom:35px;
    text-shadow:0 2px 10px rgba(0,0,0,0.5);
}

.btn{
    display:inline-block;
    background:#00bfff;
    color:#fff;
    padding:16px 38px;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(0,191,255,.35);
}

.btn:hover{
    background:#0099cc;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,191,255,.45);
}

.hero-text{
    max-width:900px;
    margin:auto;
}

.hero-text h1{
    line-height:1.2;
}

.hero-text p{
    line-height:1.7;
    max-width:800px;
    margin:0 auto 35px;
}

.about{
    padding:100px 8%;
    background:#ffffff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:42px;
    color:#003366;
    margin-bottom:25px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.about-text ul{
    list-style:none;
    padding:0;
}

.about-text li{
    font-size:18px;
    margin-bottom:15px;
    color:#003366;
    font-weight:600;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:500px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ===== SERVICES PAGE ===== */

.services-hero{
    background:#0d2c5a;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.services-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.services-hero p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.services{
    padding:80px 10%;
    background:#f8f9fc;
}

.services h2{
    text-align:center;
    font-size:36px;
    color:#0d2c5a;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#0d2c5a;
    margin-bottom:15px;
}

.service-card p{
    color:#555;
    line-height:1.8;
}

/* ===== GALLERY PAGE ===== */

.gallery-hero{
    background:linear-gradient(135deg,#001a4d,#0088cc);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.gallery-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.gallery-hero p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.gallery{
    padding:80px 8%;
    background:#f8f9fc;
}

.gallery h2{
    text-align:center;
    font-size:38px;
    color:#002c5a;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.gallery-item{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.gallery-item h3{
    padding:20px;
    color:#002c5a;
    text-align:center;
}

/* CONTACT PAGE */

.contact-hero{
    background:linear-gradient(135deg,#002c5a,#00b7ff);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.contact-hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.contact-hero p{
    font-size:20px;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.contact-section{
    max-width:1200px;
    margin:70px auto;
    padding:20px;
}

.contact-section h2{
    text-align:center;
    color:#002c5a;
    font-size:38px;
    margin-bottom:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card h3{
    color:#002c5a;
    margin-bottom:20px;
}

.contact-card p{
    margin:12px 0;
    color:#555;
    font-size:17px;
    line-height:1.7;
}

/* Office Information Section */

.office-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.office-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.office-card:hover{
    transform:translateY(-8px);
}

.office-card h3{
    color:#002c5a;
    margin-bottom:20px;
}

.office-card p{
    color:#555;
    line-height:1.8;
}

/* ===========================
   Office Information Section
=========================== */

.office-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.office-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.office-card:hover{
    transform:translateY(-8px);
}

.office-card h3{
    color:#002c5a;
    margin-bottom:20px;
    font-size:22px;
}

.office-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* Contact Form */

.contact-form-section{
    max-width:800px;
    margin:70px auto;
    padding:40px;
    background:#ffffff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-section h2{
    text-align:center;
    color:#002c5a;
    margin-bottom:30px;
    font-size:34px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    font-family:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#00b8ff;
    box-shadow:0 0 8px rgba(0,184,255,0.25);
}

.contact-form textarea{
    resize:vertical;
    min-height:160px;
}

.contact-form button{
    background:#002c5a;
    color:#fff;
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#00b8ff;
}

.form-subtitle{
    text-align:center;
    color:#666;
    font-size:16px;
    margin-bottom:30px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

/* Send Enquiry Button */

.contact-form button{
    width:100%;
    padding:16px;
    background:linear-gradient(135deg,#002c5a,#00b4d8);
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.contact-form button:hover{
    background:linear-gradient(135deg,#00b4d8,#002c5a);
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Clickable Email Links */

.contact-card a,
.office-card a{
    color:#555;
    text-decoration:none;
    transition:0.3s;
}

.contact-card a:hover,
.office-card a:hover{
    color:#00b4d8;
    text-decoration:underline;
}

/* ===========================
   Google Map Section
=========================== */

.map-section{
    padding:70px 10%;
    background:#f8f9fb;
    text-align:center;
}

.map-section h2{
    font-size:36px;
    color:#002c5a;
    margin-bottom:30px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Google Map Section */

.map-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
    text-align:center;
}

.map-section h2{
    font-size:36px;
    color:#002c5a;
    margin-bottom:30px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* Get Directions Button */

.map-button{
    margin-top:25px;
    text-align:center;
}

.map-button a{
    display:inline-block;
    padding:14px 30px;
    background:linear-gradient(135deg,#002c5a,#00b4d8);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.map-button a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* ================= FOOTER ================= */

.footer{
    background:#0b1b2b;
    color:#ffffff;
    margin-top:60px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-section{
    flex:1;
    min-width:250px;
}

.footer-section h3{
    color:#00b4d8;
    margin-bottom:20px;
    font-size:22px;
}

.footer-section p{
    line-height:1.8;
    color:#d6d6d6;
}

.footer-section a{
    color:#d6d6d6;
    text-decoration:none;
    transition:0.3s;
}

.footer-section a:hover{
    color:#00b4d8;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.15);
    padding:20px;
    font-size:14px;
    color:#cfcfcf;
}

.logo-area h2 a {
    color: white;
    text-decoration: none;
}

.logo-area h2 a:hover {
    color: #00d4ff;
}

.logo-area a img {
    cursor: pointer;
}

.logo-area h2 a {
    cursor: pointer;
}

.logo-area h2 a:visited {
    color: white;
}

/* WHY CHOOSE SECTION */

.why-choose{
    padding:80px 10%;
    background:#f8fbfd;
    text-align:center;
}

.why-choose h2{
    font-size:38px;
    color:#0b2b5b;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#ffffff;
    padding:35px 25px;
    border-radius:15px;
    border:1px solid #e5e5e5;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.why-card h3{
    color:#00b4d8;
    margin-bottom:15px;
}

.why-card p{
    color:#555;
    line-height:1.7;
}

/* HOME SERVICES */

.services-home{
    padding:80px 10%;
    background:#ffffff;
    text-align:center;
}

.services-home h2{
    font-size:38px;
    color:#0b2b5b;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:#ffffff;
    border-radius:15px;
    padding:35px 30px;
    border:1px solid #e5e5e5;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 35px rgba(0,0,0,0.15);
}

.service-box h3{
    color:#00b4d8;
    margin-bottom:15px;
    font-size:24px;
}

.service-box p{
    color:#555;
    line-height:1.8;
}

/* ================= GLOBAL NETWORK ================= */

.network{
    padding:80px 8%;
    background:#f8fbff;
}

.network-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.network-text{
    flex:1;
    min-width:320px;
}

.network-text h2{
    font-size:38px;
    color:#0b1b2b;
    margin-bottom:20px;
}

.network-text p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.network-text ul{
    list-style:none;
    padding:0;
}

.network-text li{
    margin-bottom:15px;
    font-size:18px;
    color:#0b1b2b;
}

.network-image{
    flex:1;
    text-align:center;
}

.network-image img{
    max-width:100%;
    border-radius:12px;
}

/* ================= STATS ================= */

.stats{
    background:#0b1b2b;
    color:#fff;
    padding:70px 8%;
    display:flex;
    justify-content:space-around;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
    text-align:center;
}

.stat-box{
    flex:1;
    min-width:180px;
}

.stat-box h2{
    font-size:42px;
    color:#00b4d8;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#ffffff;
}

/* ================= Industries Section ================= */

.industries{
    padding:80px 20px;
    background:#f7f9fc;
}

.industries h2{
    text-align:center;
    font-size:40px;
    color:#0b2b5b;
    margin-bottom:50px;
}

.industries-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.industry-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.industry-card h3{
    color:#0099cc;
    margin-bottom:15px;
    font-size:24px;
}

.industry-card p{
    color:#555;
    line-height:1.8;
}

/* GLOBAL PRESENCE */

.presence{
    padding:80px 20px;
    background:#f8fbff;
    text-align:center;
}

.presence h2{
    font-size:38px;
    color:#0b1b4b;
    margin-bottom:50px;
}

.presence-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.presence-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
    color:#0b1b4b;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.presence-box:hover{
    transform:translateY(-5px);
    color:#00b4d8;
}

/* ================= CTA ================= */

.cta{
    background:#0b1b3b;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta h2{
    font-size:38px;
    margin-bottom:20px;
}

.cta p{
    max-width:750px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    color:#d8d8d8;
}

.cta .btn{
    display:inline-block;
    background:#00b4d8;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.cta .btn:hover{
    background:#0096c7;
    transform:translateY(-3px);
}

/* ================= FOOTER ================= */

.footer{
    background:#08152d;
    color:#ffffff;
    margin-top:0;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-section{
    flex:1;
    min-width:250px;
}

.footer-section h3{
    color:#00b4d8;
    margin-bottom:20px;
}

.footer-section p{
    color:#d6d6d6;
    line-height:1.8;
}

.footer-section a{
    color:#d6d6d6;
    text-decoration:none;
    line-height:2;
    transition:0.3s;
}

.footer-section a:hover{
    color:#00b4d8;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.15);
    padding:20px;
    font-size:14px;
    color:#cfcfcf;
}

.founder {
    padding: 80px 10%;
    background: #fff;
}

.founder-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.founder h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1d3557;
}

.founder h3 {
    font-size: 28px;
    color: #00bcd4;
    margin-bottom: 5px;
}

.founder h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.founder p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Founder Section */

.founder{
    padding:60px 10%;
    background:#f4f8fb;
}

.founder-card{

    max-width:1200px;
    margin:auto;

    background:white;

    border-radius:18px;

    padding:60px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    text-align:center;

    border-top:6px solid #00bcd4;

}

.founder h2{

    font-size:42px;

    color:#12345b;

    margin-bottom:10px;

}

.founder h3{

    font-size:32px;

    color:#00bcd4;

    margin-bottom:8px;

}

.founder h4{

    color:#777;

    margin-bottom:45px;

    font-weight:500;

}

.founder-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.founder-box{

    background:#f8fbfd;

    padding:30px;

    border-radius:15px;

    text-align:left;

}

.founder-box h5{

    font-size:24px;

    color:#12345b;

    margin-bottom:18px;

}

.founder-box p{

    color:#555;

    line-height:1.9;

    font-size:17px;

}

@media(max-width:768px){

.founder-grid{

grid-template-columns:1fr;

}

.founder-card{

padding:35px;

}

}

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float:hover{
    background: #1ebe5d;
    transform: scale(1.1);
}