
        :root {
            --navy: #093903;
            --orange: #FF6B00;
        }

        body {
            font-family: 'Poppins', system-ui, sans-serif;
            color: #093903;
            line-height: 1.7;
        }
h2, h3, h4, h5, h6 {
    color: #093903 !important;
}
        .navbar {
            background: rgba(255, 255, 255, 0.97) !important;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 25px rgba(10, 37, 64, 0.1);
        }

        li.nav-item {
            padding: 0px 12px;
        }

        .logo {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #0b9b25 !important;
}

        .logo-accent {
            color: var(--orange);
        }

        /* Hero */
       /* .carousel-item {
  /* height: 100vh; 
} */

.carousel-item img {
  height: 100%;
  object-fit: cover;
}
/* .carousel-item {
    height: 600px !important;
} */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

        /* Featured Carousel under Hero */
        .featured-carousel {
            /* margin-top: -90px; */
            position: relative;
            z-index: 20;
        }

        .featured-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(10, 37, 64, 0.12);
            transition: all 0.4s;
        }

        /* .featured-card:hover {
            transform: translateY(-12px);
        } */

        .featured-img {
            height: 240px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--navy);
        }

        .badge {
            background: var(--navy);
            color: white;
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* Service Cards */
        .service-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(255, 107, 0, 0.2);
        }

        .service-img {
            height: 220px;
            object-fit: cover;
        }

        /* Special Cargo */
        .special-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 320px;
        }

        .special-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .special-card:hover img {
            transform: scale(1.08);
        }
        .special-overlay h5{
            color: #fff !important;
        }
        .special-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 37, 64, 0.9));
            padding: 2rem 1.5rem;
            color: white;
        }

        /* Why Choose Us */
        .why-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .why-card:hover {
            transform: translateY(-10px);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange), #FFB366);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: white;
            margin: 0 auto 1.5rem;
        }

        /* Testimonials */
        .testimonial-card {
            border: none;
            border-radius: 20px;
            background: #f8f9fa;
        }

        /* CTA */
       .cta-section {
    background: linear-gradient(135deg, #05380700, #073810);
    color: white;
}
        .btn-primary {
            background-color: var(--orange);
            border: none;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: #e55a00;
            transform: translateY(-4px);
        }

        .logo img.img-fluid {
            width: 79px;
        }
        .active-nav {
    color: var(--orange) !important;
    text-decoration:overline #e55a00 2px;
        }
        a.btn.btn_ser.btn-primary.btn-lg {
    width: 14% !important;
    font-size: 11px;
}
/* TOP BAR */
.topbar {
    background: #FF6B00;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 9999999999999999999999999999999;
}

.topbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.topbar-left a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.topbar-left a:hover {
    opacity: 0.8;
}

/* RIGHT SIDE */
.topbar-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: 0.3s;
    text-decoration: none;
}

.topbar-right a:hover {
    background: #fff;
    color: #FF6B00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .topbar-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}




/* FOOTER */
.footer {
    background: #0a2540;
    color: #fff;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3{
    color: #fff !important;
}
/* LOGO */
.footer-logo {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FF6B00;
}

/* TEXT */
.footer-address,
.footer-contact,
.footer-email,
.footer-location {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FF6B00;
    padding-left: 5px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;

}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}



/* about.css */
/* ============== ROOT VARIABLES ============== */
:root {
    --navy: #053807;
    --orange: #FF6B00;
    --light-bg: #F8FAFC;
    --text: #093903;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============== GLOBAL TYPOGRAPHY ============== */
body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text);
}

h1, h2, h3, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ============== SECTION 1 - ABOUT INTRO ============== */
.about-intro {
    background: var(--light-bg);
    padding: 100px 0 120px;
}

.about-intro__content {
    max-width: 520px;
}

.about-intro__badge {
    display: inline-block;
    background: var(--navy);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.about-intro__heading {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    color: var(--navy);
    margin-bottom: 28px;
}

.about-intro__text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 28px;
}

.about-intro__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.85rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.highlight-item h6 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.about-intro__cta {
    background: var(--orange);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.25);
}

.about-intro__cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.35);
    color: white;
}

/* Image */
.about-intro__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 30px 30px 0 -15px rgba(255, 107, 0, 0.15);
    transition: var(--transition);
}

.about-intro__image-wrapper:hover {
    transform: scale(1.03);
}

.about-intro__image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-intro__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(10, 37, 64, 0.25) 100%);
    pointer-events: none;
}

/* ============== SECTION 2 - VISION & MISSION ============== */
.about-vision-mission {
    background: #ffffff;
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: var(--navy);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 3rem);
    color: var(--navy);
    margin-bottom: 0;
}

.vision-mission-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.vision-mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.2);
}

.card-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #FF6B00, #FFB366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.card-title {
    font-size: 1.65rem;
    color: var(--navy);
    margin-bottom: 18px;
}

.card-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.75;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
    .about-intro {
        padding: 80px 0 90px;
    }
    .about-vision-mission {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .about-intro__highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        gap: 14px;
    }
}


.content-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: 0.3s;
}
.content-card h5 {
    color: #e55a00 !important;
}
.smart-card h3 {
    color: #e55a00 !important;
}






 
/* ================================= about page =============================== */
/* --- Global Reset & Variables --- */
/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #F8FAFC;
    color: #0A2540;
}

/* ================= HERO ================= */
.hero-section {
    height: 500px;
    background: linear-gradient(180deg, #00000096 70%, rgb(2 19 37 / 75%) 100%), url('../img/about_page.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
}

.hero1-content {
    position: relative;
    z-index: 2;
    /* animation: fadeIn 1.5s ease; */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-title span {
    color: #FF6B00;
}

.hero-subtitle {
    margin: 15px 0 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-btn {
    background: #FF6B00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #e65c00;
    transform: translateY(-3px);
}

/* ================= ABOUT ================= */
.about-section {
    padding: 100px 0;
}

.about-badge {
    background: rgba(255, 107, 0, 0.1);
    color: #FF6B00;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.about-title {
    margin: 20px 0;
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.about-list i {
    color: #FF6B00;
    margin-right: 8px;
}

.about-btn {
    background: #0A2540;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #081c33;
    transform: translateY(-2px);
}

/* IMAGE */
.about-image-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.08);
}

/* ================= VISION MISSION ================= */
.vm-section {
    padding: 100px 0;
}

.vm-heading {
    margin-bottom: 50px;
    font-weight: 600;
}

.vm-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.vm-icon {
    font-size: 30px;
    color: #FF6B00;
    margin-bottom: 15px;
}

/* ================= ANIMATION ================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}





/* ==========================services page============================ */


/* --- CORE STYLES --- */
/* :root {
    --primary: #0A2540;
    --accent: #FF6B00;
    --bg-light: #F8FAFC;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary);
    overflow-x: hidden;
} */

.py-large { padding: 100px 0; }
.mb-100 { margin-bottom: 120px; }
.text-accent { color: var(--accent); }

/* --- HERO SECTION --- */
.services-hero {
    height: 500px;
    background:  linear-gradient(180deg, #00000096 70%, rgb(2 19 37 / 75%) 100%), url('../img/about_page.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(7, 64, 120, 0.606), rgba(10, 37, 64, 0.195));
} */

.max-w-600 { max-width: 600px; }

/* --- SERVICE BLOCKS --- */
.service-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transform: perspective(1000px) rotateY(0deg);
    transition: var(--transition);
}

.service-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.service-block:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-icon-sm {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.btn-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-link:hover {
    color: var(--primary);
    transform: translateX(10px);
}

/* --- SPECIALIZED CARGO (GLASSMORPHISM) --- */
/* .special-cargo {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.special-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:linear-gradient(to bottom, rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.4)) url('../img/about_page.jpg');
    opacity: 0.1;
    filter: blur(5px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.glass-card.highlight {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
} */






/* --- SPECIALIZED CARGO SECTION --- */
.special-cargo {
    background-color: #000408; /* Deep Navy */
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Subtle background image overlay */
.special-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519451241324-20b4ec2c4220?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Keeps it very subtle */
    filter: grayscale(100%) brightness(50%);
    z-index: 1;
}

.special-cargo .container {
    z-index: 2; /* Ensures content is above the image */
}

/* Glass Card Design */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-card span {
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.glass-card small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Hover Interaction */
.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #FF6B00; /* Orange Accent */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 107, 0, 0.2);
}

/* Highlighted Card (Hazardous) */
.glass-card.highlight {
    border: 1px solid rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.glass-card.highlight span {
    color: #FF6B00;
}

/* Title Styling */
.display-5 {
    letter-spacing: -1px;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .special-cargo {
        padding: 80px 0;
    }
    .glass-card {
        padding: 30px 15px;
    }
}
/* --- CTA --- */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1c4977 100%);
    color: white;
    border-radius: 30px;
}

.btn-accent-lg {
    background: var(--accent);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-accent-lg:hover {
    background: #e66000;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* --- MOUSE INDICATOR --- */
.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: '';
    position: absolute;
    width: 4px; height: 8px;
    background: white;
    left: 50%; translate: -50%;
    top: 8px;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .service-img-wrapper img { height: 300px; }
    .mb-100 { margin-bottom: 60px; }
}

@media (max-width: 425px){
a.navbar-brand.logo {
    font-size: 15px !important;
    color: #0b9b25 !important;
}
.topbar {
    display: none;
}

}







/* ================= HERO ================= */
.contact-hero {
    height: 500px;
    background:  linear-gradient(180deg, #00000096 70%, rgb(2 19 37 / 75%) 100%), url('../img/about_page.jpg') center/cover no-repeat;
    position: relative;
}

.contact-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgba(10,37,64,0.7); */
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* ================= CONTACT ================= */
.contact-section {
    padding: 100px 0;
    background: #F8FAFC;
}

/* FORM */
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #FF6B00;
    box-shadow: none;
}

.submit-btn {
    background: #FF6B00;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

/* INFO */
.contact-info-box {
    background: #0A2540;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: #FF6B00;
    margin-right: 15px;
    margin-top: 5px;
}

/* ================= MAP ================= */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ================= CTA ================= */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A2540, #081c33);
    color: #fff;
}

.cta-btn {
    background: #FF6B00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
}


/* ================= WHY SECTION ================= */
.why-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.section-title {
    font-weight: 600;
    font-size: 2.2rem;
}

.section-subtitle {
    color: #6c757d;
    margin-top: 10px;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.why-card i {
    font-size: 28px;
    color: #ffffff;
    /* margin-bottom: 15px; */
}

.why-card h5 {
    font-weight: 600;
}

.why-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* ================= TEAM ================= */
.team-section {
    padding: 100px 0;
    background: #0A2540;
}

.team-content {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #fff;
    line-height: 1.7;
}






.contact-info-box  h3{
    color: #fff !important;
}



