/* Design System Tokens */
:root {
    /* Colors derived from Logo */
    --color-primary: #313968; /* Dark Blue */
    --color-primary-light: #444f8f;
    --color-primary-dark: #212646;
    --color-secondary: #3ca4c5; /* Cyan */
    --color-secondary-light: #52bde0;
    --color-secondary-dark: #2a829e;
    
    --color-bg: #f8fafc;
    --color-bg-light: #ffffff;
    --color-text: #334155;
    --color-heading: #0f172a;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 5rem;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }
.gap-1 { gap: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }

/* Utility Classes */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(60, 164, 197, 0.1);
    color: var(--color-secondary-dark);
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(60, 164, 197, 0.2);
}

.badge-primary {
    background: rgba(49, 57, 104, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(49, 57, 104, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:active {
    transform: translateY(2px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height var(--transition-normal);
}

.navbar.scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-primary);
    gap: 0.2rem;
}

.logo-amp {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: block;
    }
}

.nav-links {
    display: none;
    gap: 2rem;
    height: 100%;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        align-items: center;
    }
}

.nav-links > a, .dropbtn {
    font-weight: 500;
    color: var(--color-heading);
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links > a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-normal);
}

.nav-links > a:hover::after, .nav-links > a.active::after {
    width: 100%;
}

.nav-links > a:hover, .dropbtn:hover {
    color: var(--color-primary);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-light);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 20px;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(60, 164, 197, 0.05);
    color: var(--color-primary);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-btn {
    display: none;
}

@media (min-width: 992px) {
    .nav-btn {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-primary);
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--color-bg-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-slow);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-heading);
}
.mobile-dropdown-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}
.sub-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: transparent;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.glow-1 {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
}

.glow-2 {
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(49, 57, 104, 0.2) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.hero-graphic:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
}

/* Page Header (for internal pages) */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color-bg);
    transform: skewY(-2deg);
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(60, 164, 197, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--color-heading);
}

/* Service Detail Page Layout */
.service-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .service-detail-container {
        grid-template-columns: 2fr 1fr;
    }
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin-bottom: 2rem;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.service-content li i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.service-sidebar {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.service-sidebar h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    color: var(--color-primary);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    background: var(--color-bg);
    color: var(--color-text);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: var(--color-primary);
    color: white;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1.5fr 1fr;
    }
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-secondary);
}

.mv-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mv-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.features-box {
    background: var(--color-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.features-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.features-list-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.features-list-box li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.features-list-box li i {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

/* CTA Section */
.cta {
    position: relative;
    background-color: var(--color-primary);
    color: white;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right center, var(--color-primary-light) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    background-color: var(--color-secondary);
    color: white;
}

.cta .btn-primary:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: white;
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-col a, .footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-col p i {
    color: var(--color-secondary);
    margin-right: 0.5rem;
}

.footer-socials a {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-socials a:hover {
    background: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* New Layout Classes for Full Screen Background */

.bg-image-dark {
    background-image: url('images/WhatsApp Image 2026-08-19 at 07.45.51 (1).jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.global-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Dark blue/slate overlay */
    z-index: -1;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px); /* Minus footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.transparent-footer {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.text-white { color: white !important; }
.text-light { color: rgba(255,255,255,0.7) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.font-bold { font-weight: bold; }
.d-block { display: block; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.justify-center { justify-content: center; }
.opacity-90 { opacity: 0.9; }

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .contact-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    padding: 2.5rem 1.5rem;
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.badge-light {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Fix for background visibility */
body.bg-image-dark {
    background-color: transparent !important;
}

/* Expanded Homepage Layout Utilities */
.min-h-screen { min-height: 100vh; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
.m-0 { margin: 0; }
.mt-3 { margin-top: 1rem; }
.pt-3 { padding-top: 1rem; }
.text-xl { font-size: 2.5rem; font-weight: 700; }
.text-sm { font-size: 0.9rem; }
.title-large { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; }
.hover-underline:hover { text-decoration: underline; }
.border-secondary { border-color: var(--color-secondary) !important; }
.border-top-light { border-top: 1px solid rgba(255,255,255,0.1); }
.d-flex { display: flex; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 576px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media(min-width: 992px) { .grid-4 { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.services-grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 768px) { .services-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.icon-medium { font-size: 1.5rem; }
.icon-large { font-size: 3rem; }
.icon-huge { font-size: 4.5rem; }

/* Modern Footer Styles */
.modern-footer {
    background-color: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
}
.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

/* Animations */
.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(60, 164, 197, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(60, 164, 197, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(60, 164, 197, 0); }
}

/* Make Nicer Overrides */

/* 1. Fix Background: Blur the logo image so it doesn't clash with text */
body.bg-image-dark {
    background-image: none !important; /* Remove from body */
    background-color: var(--color-primary-dark) !important;
}
.global-bg-overlay {
    background: transparent !important; /* The before element will handle darkness */
}
.global-bg-overlay::before {
    content: '';
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('images/WhatsApp Image 2026-08-19 at 07.45.51 (1).jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.3); /* Heavy blur and darken */
    z-index: -1;
}

/* 2. Fix Contact Us Button Visibility */
.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white !important;
}
.btn-outline-light:hover {
    background-color: white;
    color: var(--color-primary-dark) !important;
    border-color: white;
}

/* 3. Increase Nav Logo Size */
.nav-logo-img {
    height: 65px !important;
}

/* Gallery Section */
.gallery-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Clients Section */
.clients-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-grid {
    display: none;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

/* Gradient fade effect on edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.05) 0%, transparent 100%);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 0.05) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
    gap: 2rem;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.client-logo-wrapper {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    width: 200px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.client-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(60, 164, 197, 0.2);
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.client-logo-wrapper:hover .client-logo {
    transform: scale(1.05);
}
