﻿/*:root {
    --sdk-blue: #004a99;
    --sdk-light-blue: #00a8e8;
    --sdk-dark: #1a1a1a;
    --sdk-gray: #f4f7fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    overflow-x: hidden;
}

.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--sdk-dark) !important;
    margin: 0 10px;
    transition: 0.3s;
}

    .nav-link:hover {
        color: var(--sdk-light-blue) !important;
    }

.hero {
    background: linear-gradient(135deg, rgba(0, 74, 153, 0.9), rgba(0, 168, 232, 0.8)), url('https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    color: white;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.sister-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.service-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--sdk-blue);
        transition: 0.4s;
        z-index: -1;
        opacity: 0.05;
    }

    .service-card:hover::after {
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 2.5rem;
    color: var(--sdk-blue);
    margin-bottom: 20px;
}

.supply-section {
    background: var(--sdk-gray);
    border-radius: 40px;
    padding: 80px 40px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-sdk {
    background: var(--sdk-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

    .btn-sdk:hover {
        background: var(--sdk-light-blue);
        color: white;
        transform: scale(1.05);
    }

footer {
    background: var(--sdk-dark);
    color: #aaa;
    padding: 80px 0 20px;
}

.footer-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}
*/

:root {
    --mt-blue-primary: #0077b6;
    --mt-blue-dark: #023e8a;
    --mt-accent: #00b4d8;
    --mt-gray: #6c757d;
    --mt-light: #f4f9fc;
    --footer-bg: #0a192f;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Slider */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.carousel-item {
    height: 80vh;
    min-height: 600px;
    position: relative;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 62, 138, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.carousel-caption {
    z-index: 10;
    text-align: left;
    left: 10%;
    right: 10%;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

/* Tags below content */
.hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .hero-tag i {
        color: var(--mt-accent);
    }

/* Modern Curve */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 20;
}

    .hero-curve svg {
        display: block;
        width: 100%;
        height: 80px;
    }

    .hero-curve .shape-fill {
        fill: #FFFFFF;
    }

/* Styled About Image Section */
.about-image-container {
    position: relative;
    display: inline-block;
}

    .about-image-container::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 10px solid var(--mt-light);
        top: 30px;
        right: -30px;
        z-index: -1;
        border-radius: 15px;
    }

.cms-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #eee;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border-color: var(--mt-accent);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--mt-light);
    color: var(--mt-blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(244, 249, 252, 0.9), rgba(244, 249, 252, 0.9)), url('https://www.transparenttextures.com/patterns/cubes.png');
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-form-wrapper {
    padding: 50px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
        border-color: var(--mt-blue-primary);
    }

/* Footer */
footer {
    background: var(--footer-bg);
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-logo {
    /*max-height: 55px;*/
    max-height: 170px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: 0.2s;
}

    .footer-link:hover {
        color: var(--mt-accent);
        padding-left: 5px;
    }

.btn-mt {
    background: var(--mt-blue-primary);
    color: #fff;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
}

    .btn-mt:hover {
        background: var(--mt-blue-dark);
        color: #fff;
    }

.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .about-image-container::before {
        display: none;
    }

    .carousel-item {
        height: 60vh;
    }
}