/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #20007a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 55px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #20007a;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #000;
}

.navbar {
    transition: all 0.3s ease;
}

/* ================= HERO ================= */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(32,0,122,0.7), rgba(32,0,122,0.7)),
                url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 18px;
}

/* ================= BUTTONS ================= */
.btn {
    background: #ffffff;
    color: #20007a;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #20007a;
    color: #fff;
}

.btn-outline {
    border: 2px solid #20007a;
    color: #20007a;
    padding: 10px 24px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #20007a;
    color: #fff;
}

/* ================= ABOUT PREVIEW ================= */
.about-preview {
    padding: 80px 0;
    text-align: center;
}

.about-preview p {
    max-width: 700px;
    margin: 20px auto;
}

/* ================= INDUSTRIES ================= */
.industries {
    background: #f8f9fc;
    padding: 80px 0;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card h3 {
    margin: 15px 0 10px;
}

.card:hover {
    transform: translateY(-8px);
}

/* ================= CTA ================= */
.cta {
    background: #20007a;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: #ccc;
    padding-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer img {
    height: 40px;
    margin-bottom: 10px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #333;
    margin-top: 30px;
}

/* ================= GLOBAL ENHANCEMENTS ================= */

html {
    scroll-behavior: smooth;
}

body {
    letter-spacing: 0.2px;
}

/* Smooth fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar shadow on scroll */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Section spacing upgrade */
section {
    margin-bottom: 20px;
}

/* ================= CONTACT PAGE ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h4 {
    color: #20007a;
    margin-bottom: 5px;
}

.contact-highlight {
    background: #f1f3ff;
    padding: 15px;
    border-left: 4px solid #20007a;
    margin-top: 20px;
}

.map-box {
    height: 100%;
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOUNDER IMAGE PERFECT FIT ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* subtle premium overlay */
.map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(32, 0, 122, 0.05),
        rgba(32, 0, 122, 0.2)
    );
}

/* ================= LEADERSHIP SECTION FIX (70-30 LAYOUT) ================= */

.leadership-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* 70% text / 30% image */
    gap: 40px;
    align-items: start;
}

.leadership-image-container {
    display: flex;
    justify-content: flex-end;
}

.leadership-image {
    width: 100%;
    max-width: 280px; /* controls size */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ================= EXTRA ELITE EASE ================= */
.card {
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32,0,122,0.3);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}