﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f9fc;
    color: #2b2d42;
    line-height: 1.6;
}

.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

header {
    background: #0d1b2a;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
}

    .logo-section img {
        height: 45px;
        margin-right: 12px;
    }

.company-name {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

    .company-name span {
        color: #00b4d8;
    }

nav a {
    color: #ffffff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

    nav a:hover {
        color: #00b4d8;
    }

.hero {
    background: linear-gradient(135deg, #1d3557, #003566);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        max-width: 750px;
        margin: 0 auto 30px;
        opacity: 0.95;
    }

.btn-primary {
    background: #00b4d8;
    padding: 14px 32px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}

    .btn-primary:hover {
        background: #0096c7;
    }

.container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #1d3557;
}

.services,
.about,
.contact {
    padding: 90px 60px;
}

.services,
.contact {
    background: #ffffff;
}

.about {
    background: #eef3f9;
    text-align: center;
}

.service-grid,
.grid,
.contact-wrapper {
    display: grid;
    gap: 35px;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

.contact-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card,
.service-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

    .service-card:hover {
        transform: translateY(-6px);
        transition: 0.3s;
    }

    .service-card h3,
    h2 {
        color: #1d3557;
        margin-bottom: 15px;
    }

.about {
    padding: 90px 20px;
    background: #eef3f9;
    text-align: center;
}

    .about p {
        max-width: 850px;
        margin: 0 auto 25px;
        font-size: 17px;
        line-height: 1.8;
    }

.contact {
    padding: 90px 20px;
    background: #eef3f9;
    text-align: center;
}

    .contact p {
        max-width: 850px;
        margin: 0 auto 25px;
        font-size: 17px;
        line-height: 1.8;
    }

input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-family: inherit;
}

button {
    background: #00b4d8;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

    button:hover {
        background: #0096c7;
    }

footer {
    background: #0d1b2a;
    color: #ffffff;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

@media(max-width:768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .services,
    .about,
    .contact {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    }

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }

.hero {
    background: linear-gradient(rgba(13,27,42,0.78), rgba(0,53,102,0.82)), url('/Content/Images/BackgroundImagee.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 140px 20px;
    text-align: center;
    position: relative;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 40px;
    align-items: stretch;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-6px);
    }

    .card h2 {
        color: #1d3557;
        margin-bottom: 20px;
    }

/* Founder Profile Page */
.founder-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.founder-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ceo-badge {
    display: inline-block;
    background: #00b4d8;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-buttons {
    margin-top: 25px;
}

.btn-secondary {
    background: #1d3557;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 15px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.metric-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

    .metric-card h2 {
        color: #00b4d8;
        font-size: 36px;
    }

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: 20px;
    margin-top: 30px;
}

    .client-logos div {
        background: white;
        padding: 25px;
        text-align: center;
        border-radius: 12px;
        font-weight: 600;
        box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }

.founder-highlight {
    border-top: 4px solid #00b4d8;
}

@media(max-width:768px) {
    .founder-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
    }
}

.dual-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

    .dual-section > div {
        flex: 1;
        min-width: 320px;
    }

.split-card {
    height: 100%;
    padding: 50px 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

    .split-card .btn-primary {
        margin-top: 20px;
        display: inline-block;
    }
.quick-contact-grid {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.quick-contact-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .quick-contact-btn:hover {
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }

.email-btn {
    background: #1d3557;
}

    .email-btn:hover {
        background: #16304e;
    }

.whatsapp-btn {
    background: #25D366;
}

    .whatsapp-btn:hover {
        background: #1ebe5d;
    }

.linkedin-btn {
    background: #0077b5;
}

    .linkedin-btn:hover {
        background: #005f91;
    }