/* BBN Group - Corporate Design System & Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Playball&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0A4DA2;
    --secondary-blue: #114DCC;
    --primary-green: #2FB24A;
    --light-green: #73D44D;
    --accent-pink: #E91E63;
    --white: #FFFFFF;
    --bg-light: #F5F8FD;
    --text-dark: #222222;
    --text-grey: #666666;
    --card-bg: #FFFFFF;
    --border-radius: 18px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(10, 77, 162, 0.05);
    --shadow-hover: 0 20px 40px rgba(10, 77, 162, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.hero-accent-subtitle {
    font-family: 'Playball', cursive;
    color: var(--accent-pink);
    font-size: 2.2rem;
    font-weight: normal;
    display: inline-block;
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.mobile-phone-btn {
    display: none;
    width: 44px;
    height: 44px;
    background-color: var(--accent-pink);
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    z-index: 10;
}

.mobile-phone-btn:hover {
    transform: scale(1.05);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.section {
    padding: 80px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--accent-pink);
    font-family: var(--font-heading);
    font-style: italic;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--accent-pink);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d81557;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    height: 42px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 77, 162, 0.3);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

.header.scrolled .mobile-toggle {
    color: var(--primary-blue);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 77, 162, 0.75), rgba(17, 77, 204, 0.4));
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Statistics Widgets */
.stats-card-container {
    margin-top: -60px;
    position: relative;
    z-index: 50;
    padding: 0 20px;
}

.stats-card {
    background: linear-gradient(135deg, #093470, #0a4da2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    color: var(--white);
    box-shadow: 0 15px 45px rgba(9, 52, 112, 0.2);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    height: 100%;
}

.stat-icon {
    font-size: 28px;
    color: var(--light-green);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-pink);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-sub {
    font-size: 9px;
    opacity: 0.7;
    margin-top: 2px;
}

.stat-val-text {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Welcome Intro & About */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.intro-icon-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--accent-pink);
    font-size: 50px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card.vision {
    background-color: var(--primary-blue);
}

.vm-card.mission {
    background-color: var(--primary-green);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vm-icon {
    font-size: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-card h3 {
    color: var(--white);
    font-size: 24px;
}

/* Business Divisions Grid */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title-wrap {
    text-align: left;
}

.section-link {
    font-weight: 600;
    color: var(--accent-pink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-link:hover {
    color: var(--primary-blue);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.division-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.div-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.div-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.division-card:hover .div-img-wrap img {
    transform: scale(1.1);
}

.div-icon-floating {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(10, 77, 162, 0.3);
}

.div-body {
    padding: 30px 20px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.div-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.div-desc {
    color: var(--text-grey);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.div-read-more {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.div-read-more:hover {
    color: var(--accent-pink);
}

/* Why Choose Us & Core Values */
.choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.check-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.choose-target-icon {
    font-size: 120px;
    color: rgba(10, 77, 162, 0.1);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(10, 77, 162, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Ongoing Projects & Latest Updates */
.project-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.project-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.project-item:hover {
    transform: translateX(10px);
}

.proj-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.proj-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.proj-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.proj-desc {
    color: var(--text-grey);
    font-size: 14px;
}

.proj-arrow {
    font-size: 20px;
    color: var(--accent-pink);
}

/* Certifications & Clients */
.certifications-wrap {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.cert-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-item {
    text-align: center;
    background-color: var(--white);
    padding: 15px 10px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    width: 150px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cert-item img {
    height: 55px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    filter: none;
    opacity: 1;
    transition: var(--transition-smooth);
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.cert-item:hover img {
    transform: scale(1.05);
}

.cert-title {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-grey);
    text-transform: uppercase;
}

.client-swiper {
    padding: 20px 0;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: var(--transition-smooth);
}

.client-logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    filter: none;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.client-logo:hover {
    transform: translateY(-3px);
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Leadership Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 4px solid rgba(10, 77, 162, 0.1);
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-name {
    font-size: 20px;
    margin-bottom: 6px;
}

.team-design {
    font-size: 14px;
    color: var(--text-grey);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(10, 77, 162, 0.05);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.team-socials a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Testimonials Glass Cards */
.testimonials-slider-container {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius);
    padding: 60px 40px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(10, 77, 162, 0.3);
}

.testimonial-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 35px;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.test-author-name {
    font-size: 16px;
    font-weight: 600;
}

.test-author-meta {
    font-size: 12px;
    opacity: 0.8;
}

/* Gallery Masonry & Lightbox */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(10, 77, 162, 0.15);
    background-color: var(--white);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    break-inside: avoid;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 77, 162, 0.8);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay i {
    font-size: 24px;
    margin-bottom: 10px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 18px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 3px solid var(--white);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

/* Let's Grow Together CTA Banner */
.grow-banner {
    background: linear-gradient(rgba(10, 77, 162, 0.85), rgba(9, 52, 112, 0.9)), url('../images/grow-bg.jpg') no-repeat center center / cover;
    border-radius: var(--border-radius);
    padding: 80px 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.grow-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.grow-content p {
    font-size: 16px;
    max-width: 600px;
    opacity: 0.9;
}

/* Presence Map Section */
.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.presence-map-svg {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.state-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 15px;
}

.state-marker {
    color: var(--accent-pink);
}

/* Contact Details & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(233, 30, 99, 0.08);
    color: var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card-desc {
    color: var(--text-grey);
    font-size: 14px;
}

.contact-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid rgba(10, 77, 162, 0.15);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(10, 77, 162, 0.08);
}

textarea.form-control {
    border-radius: 18px;
    resize: none;
}

.alert-message {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
}

.alert-success {
    background-color: rgba(47, 178, 74, 0.12);
    color: var(--primary-green);
    border: 1px solid rgba(47, 178, 74, 0.2);
}

.alert-danger {
    background-color: rgba(233, 30, 99, 0.12);
    color: var(--accent-pink);
    border: 1px solid rgba(233, 30, 99, 0.2);
}

/* Map Embed */
.map-container {
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Style */
.footer {
    background-color: #051A38;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    font-size: 14px;
    border-radius: 40px 40px 0 0;
    margin-top: 50px;
}

.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-socials a:hover {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--light-green);
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
}

/* Mobile Sticky Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #051A38;
    z-index: 998;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.mobile-bottom-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 500;
}

.mobile-bottom-item i {
    font-size: 18px;
    margin-bottom: 3px;
}

.mobile-bottom-item.active, .mobile-bottom-item:hover {
    color: var(--accent-pink);
}

.mobile-bottom-item.mobile-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.mobile-bottom-item.mobile-toggle i {
    font-size: 18px;
    margin-bottom: 3px;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #051A38;
    z-index: 1001;
    transition: var(--transition-smooth);
    padding: 30px 20px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    font-size: 24px;
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-link:hover {
    color: var(--accent-pink);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

/* Responsive Queries */
@media (max-width: 1200px) {
    .divisions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stats-card .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    .stats-card .stat-item.full-width {
        grid-column: span 2;
        border-bottom: none;
        padding-top: 15px;
    }
    .about-grid, .intro-grid, .presence-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    .section {
        padding: 50px 0;
    }
    .header-btn {
        display: none;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block !important;
        order: 1;
        font-size: 24px;
        color: var(--white);
        cursor: pointer;
    }
    .header.scrolled .mobile-toggle {
        color: var(--primary-blue);
    }
    .logo {
        order: 2;
        margin: 0 auto;
    }
    .mobile-phone-btn {
        display: flex !important;
        order: 3;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .grow-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        gap: 30px;
    }
    .grow-content p {
        margin-bottom: 0;
    }
    .vision-mission-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 2;
    }
    .cert-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-items: center;
    }
    .cert-item {
        width: 100%;
        max-width: 140px;
        height: 100px;
        padding: 10px 5px;
    }
    .cert-item img {
        height: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .floating-whatsapp {
        bottom: 75px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .mobile-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 60px; /* Spacer for bottom nav */
    }
    .logo img {
        height: 42px;
    }
}

@media (max-width: 480px) {
    .divisions-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 1;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .stats-card {
        grid-template-columns: 1fr;
    }
    .stats-card .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    .stats-card .stat-item.full-width {
        grid-column: span 1;
        border-bottom: none;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .proj-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .proj-img {
        width: 60px;
        height: 60px;
    }
    .proj-arrow {
        align-self: flex-end;
    }
}

/* Responsive Grid Classes for Subpages */
.responsive-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.responsive-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Media Division Card */
.media-post-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}
.media-post-img-wrap {
    height: 100%;
    min-height: 220px;
    position: relative;
}
.media-post-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.media-post-content {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsiveness overrides for subpages */
@media (max-width: 992px) {
    .responsive-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .responsive-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .responsive-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .responsive-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .media-post-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .media-post-img-wrap {
        height: 220px;
        min-height: auto;
    }
    .media-post-img-wrap img {
        position: relative;
    }
    .media-post-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .responsive-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* News Section Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.news-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}
.news-card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.news-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    font-size: 11px;
    color: var(--accent-pink);
    font-weight: 600;
    margin-bottom: 8px;
}
.news-title {
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary-blue);
    margin-bottom: 8px;
    flex-grow: 1;
}
.news-summary {
    font-size: 12px;
    color: var(--text-grey);
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Styled Premium Section Headers */
.section h3[style*="accent-pink"],
.section-header h3,
.section h3[style*="color: var(--accent-pink)"] {
    display: inline-block !important;
    background: rgba(226, 27, 90, 0.06) !important;
    color: var(--accent-pink) !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    border: 1px solid rgba(226, 27, 90, 0.12) !important;
}

.section h2[style*="font-size: 32px"],
.section-header h2,
.section h2[style*="font-size:32px"] {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
}

/* Section Links Styling with Hover underline slide & arrow slide */
.section-link {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--accent-pink) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    position: relative !important;
    padding-bottom: 4px !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
}

.section-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background-color: var(--accent-pink) !important;
    transform: scaleX(0.2) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
}

.section-link:hover::after {
    transform: scaleX(1) !important;
}

.section-link i {
    transition: transform 0.3s ease !important;
}

.section-link:hover i {
    transform: translateX(4px) !important;
}

@media (max-width: 768px) {
    .section h2[style*="font-size: 32px"],
    .section-header h2,
    .section h2[style*="font-size:32px"] {
        font-size: 24px !important;
    }
}
