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

:root {
    /* Updated Blue Color System - Swapped */
    --primary-blue: #00224F;
    /* Dark Blue - Primary */
    --deep-blue: #B7E0FF;
    /* Light Blue - Accent */
    --navy-blue: #00224F;
    /* Dark Blue - Text */
    --light-blue: #B7E0FF;
    /* Light Blue Accent */
    --ultra-light-blue: #E3F2FD;
    /* Very Light Blue */
    --cyan-accent: #00BCD4;
    /* Cyan Accent */
    --orange-accent: #FF9800;
    /* Warm Orange - CTA */
    --purple-accent: #7C4DFF;
    /* Purple Accent */

    /* Professional Gradients - Updated */
    --gradient-hero: linear-gradient(135deg, #00224F 0%, #001a3d 50%, #000f26 100%);
    --gradient-primary: linear-gradient(135deg, #00224F 0%, #003366 100%);
    --gradient-secondary: linear-gradient(135deg, #B7E0FF 0%, #90D5FF 100%);
    --gradient-warm: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    --gradient-purple: linear-gradient(135deg, #7C4DFF 0%, #651FFF 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(183, 224, 255, 0.5) 0%, rgba(144, 213, 255, 0.6) 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #B7E0FF 100%);
    --gradient-card: linear-gradient(145deg, rgba(183, 224, 255, 0.15) 0%, rgba(255, 255, 255, 0.8) 100%);

    /* Text Colors */
    --text-dark: #00224F;
    /* Dark Blue for headings */
    --text-body: #424242;
    /* Dark gray for body */
    --text-light: #757575;
    /* Medium gray */
    --text-white: #ffffff;

    /* Background Colors */
    --white: #ffffff;
    --light-bg: #B7E0FF;
    /* Light blue background */
    --card-bg: #ffffff;
    --lighter-bg: #E8F4FF;
    --border-color: #B7E0FF;

    /* Modern Shadows with Blue Tint */
    --shadow-sm: 0 2px 8px rgba(0, 34, 79, 0.12);
    --shadow-md: 0 4px 16px rgba(0, 34, 79, 0.18);
    --shadow-lg: 0 8px 32px rgba(0, 34, 79, 0.22);
    --shadow-xl: 0 16px 48px rgba(0, 34, 79, 0.28);
    --shadow-glow: 0 0 40px rgba(183, 224, 255, 0.35);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    overflow-x: hidden;
    background: var(--gradient-light);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Page Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

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

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

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

.hero-content p {
    font-family: Helvetica, Sans-Serif !important;
    color: #000f26 !important;
    font-weight: 700;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-light);
    animation: slideInLeft 0.6s ease;
    backdrop-filter: blur(10px);
}

.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 25px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 8px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(2, 136, 209, 0.3);
    position: relative;
    overflow: hidden;
}

/* Open hours in top bar */
.contact-info .open-hours {
    margin-right: 18px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    color: var(--text-white);
    font-weight: 600;
}

.contact-info .open-hours i {
    margin-right: 8px;
    font-size: 14px;
}

/* Slight nudge for social icons (keeps them visually separated from contact block) */
.top-bar .social-links {
    transform: translateY(1px);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-links {
    margin-left: 10px;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: var(--dark-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.navbar {
    background: var(--white);
    padding: 5px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 800;
}

.logo h2::first-letter {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.btn-quote {
    background: var(--gradient-warm) !important;
    color: var(--text-white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-quote:hover::before {
    left: 0;
}

.btn-quote:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--orange-accent) !important;
    border-color: var(--orange-accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
/* ===========================
   NEXT-GEN HERO SLIDER
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 133, 244, 0.85);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(13, 71, 161, 0.15) 0%, transparent 50%);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-slide.hero-slide-link {
    cursor: pointer;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite alternate;
    z-index: 2;
    pointer-events: none;
}

/* Hero Controls - Modern Style */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 4;
}

.hero-control-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-control-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-control-btn:hover {
    background: rgba(255, 152, 0, 0.9);
    border-color: rgba(255, 152, 0, 1);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

.hero-control-btn:hover i {
    transform: scale(1.2);
}

.hero-control-btn.prev:hover i {
    transform: translateX(-3px) scale(1.2);
}

.hero-control-btn.next:hover i {
    transform: translateX(3px) scale(1.2);
}

/* Hero Indicators - Modern Style */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.hero-indicators .indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.5);
    transition: all 0.4s ease;
}

.hero-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-indicators .indicator.active {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    border-color: rgba(255, 255, 255, 0.5);
    width: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
}

.hero-indicators .indicator.active::before {
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
    background: linear-gradient(135deg, #ffffff 0%, #b3e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 60px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    animation: fadeInUp 1s ease 0.3s both !important;
    background: linear-gradient(135deg, #ffffff 0%, #b3e0ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 22px !important;
    max-width: 700px;
    margin: 0 auto 30px !important;
    line-height: 1.6 !important;
    animation: fadeInUp 1.2s ease 0.5s both !important;
    font-weight: 400 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease 0.5s both;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 87, 34, 0.2) 100%);
    border: 2px solid rgba(255, 152, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 35px;
    animation: fadeInUp 1.4s ease 0.7s both;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.2);
}

.hero-highlight i {
    color: #FF9800;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-highlight span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease 0.9s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%) !important;
    color: var(--text-white) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2196F3 0%, #00BCD4 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.5);
    border-color: transparent;
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-white) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.btn-secondary:hover {
    color: #0f2027 !important;
    border-color: #ffffff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.image-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.8s ease;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: 0 auto 25px;
    font-size: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.service-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    color: var(--deep-blue);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    margin-left: 15px;
}

/* ===========================
   Projects Section
   =========================== */
.projects-section {
    padding: 100px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover::after {
    opacity: 0.2;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 87, 155, 0.95) 0%, rgba(79, 195, 247, 0.8) 100%);
    color: var(--white);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.15);
}

.project-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 15px;
    color: var(--primary-light);
    font-weight: 600;
}

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

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-hero);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-card i {
    font-size: 48px;
    color: var(--text-white) !important;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.stat-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.95;
}

/* ===========================
   Clients Section
   =========================== */
.clients-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.client-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.client-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.client-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-col ul li {
    padding: 8px 0;
}

.footer-col ul li a {
    font-size: 15px;
    opacity: 0.9;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.scroll-top.active {
    display: flex;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Form Styles
   =========================== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {

    /* Logo emphasis on tablets */
    .logo-image {
        height: 55px;
    }

    .btn-quote {
        padding: 10px 24px;
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        top: 160px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    /* Top bar adjustments for tablets */
    .top-bar {
        padding: 8px 0;
    }

    .contact-info span {
        font-size: 13px;
        margin-right: 15px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    /* Logo for tablets - bigger */
    .logo-image {
        max-height: 60px;
    }

    .btn-quote {
        font-size: 13px;
        padding: 10px 20px;
    }

    /* Grid layouts */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Typography */
    .hero-content h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    /* Updated: Nov 5, 2025 - Logo 70px, Request Quote minimized */

    /* Compact Top Bar - 2 lines max */
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Contact Info - Horizontal layout on one line */
    .contact-info {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        flex-wrap: wrap;
    }

    .contact-info span {
        display: inline-flex;
        align-items: center;
        margin: 0;
        font-size: 11px;
        white-space: nowrap;
    }

    .contact-info i {
        margin-right: 4px;
        font-size: 12px;
    }

    /* Social Links - Inline with contact or separate line */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 6px;
    }

    .social-links a {
        margin: 0;
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }

    /* Navbar - BIGGER logo, minimal button */
    .navbar {
        padding: 12px 0;
    }

    .nav-wrapper {
        padding: 0 12px;
        gap: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex: 1 1 auto;
        max-width: 55%;
        min-width: 0;
    }

    .logo img,
    .logo-image,
    .header .logo-image,
    .navbar .logo-image {
        height: 70px !important;
        max-height: 70px !important;
        min-height: 70px !important;
        width: auto !important;
        transition: all 0.3s ease;
    }

    /* Minimize Request Quote button - ensure text fits */
    .header .btn-quote,
    .navbar .btn-quote,
    a.btn-quote {
        font-size: 11px !important;
        padding: 7px 7px !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        overflow: visible !important;
        text-overflow: clip !important;
        min-width: fit-content !important;
        flex-shrink: 0 !important;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 35px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
    }

    /* Adjust menu position for compact header */
    .nav-menu {
        top: 120px !important;
        max-height: calc(100vh - 120px) !important;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
        color: #000f26 !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
    }

    .hero-highlight {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 24px;
    }
}

/* Extra specific for very small mobiles */
@media (max-width: 480px) {

    .header .logo-image,
    .navbar .logo-image,
    .logo-image {
        height: 70px !important;
        max-height: 70px !important;
    }

    .header .btn-quote,
    .navbar .btn-quote,
    .nav-wrapper .btn-quote {
        font-size: 10px !important;
        padding: 6px 12px !important;
        border-radius: 3px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    .nav-wrapper {
        gap: 6px !important;
        padding: 0 10px !important;
    }

    .logo {
        max-width: 50% !important;
    }
}

/* ===========================
   Page Banner
   =========================== */
.page-banner {
    background: linear-gradient(rgba(0, 43, 91, 0.9), rgba(0, 25, 54, 0.9)),
        url('../images/banner-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 16px;
}

.page-banner a {
    color: var(--primary-color);
    transition: var(--transition);
}

.page-banner a:hover {
    color: var(--white);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 36px;
}

.mv-card h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

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

.choose-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.choose-card:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 30px;
}

.choose-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Detail */
.services-detail {
    padding: 100px 0;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.detail-list li {
    padding: 10px 0;
    font-size: 15px;
}

.detail-list i {
    color: var(--primary-color);
    margin-right: 15px;
}

/* Projects Detail */
.projects-overview {
    padding: 100px 0;
}

.project-detail-card {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.project-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.project-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.project-meta span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* Clients Detail */
.clients-detail {
    padding: 100px 0;
}

.clients-grid-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.client-detail-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-color);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 36px;
    margin-bottom: 25px;
}

.client-projects {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Blog Page */
.blog-section {
    padding: 100px 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-image {
    position: relative;
    height: 250px;
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
}

/* Contact Page */
.contact-info-section {
    padding: 100px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 36px;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.map-section {
    padding: 80px 0;
}

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

.location-card {
    background: rgba(66, 133, 244, 0.95);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(66, 133, 244, 0.4);
}

.location-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-card p {
    color: rgba(255, 255, 255, 0.95);
}

.location-card i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Logo Enhancements */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: block;
}

.logo:hover .logo-text {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* Body Loading Animation */
body {
    opacity: 1;
}

body.loaded {
    opacity: 1;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 10000;
    transition: width 0.1s;
}

/* Dynamic Page Fixes */
.service-card-detailed {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-detailed .service-image {
    height: 250px;
    overflow: hidden;
}

.service-card-detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card-detailed:hover .service-image img {
    transform: scale(1.1);
}

.service-card-detailed .service-content {
    padding: 30px;
}

.service-card-detailed .service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card-detailed h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card-detailed p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card .blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-card h2 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: gap 0.3s;
}

.blog-card .read-more:hover {
    gap: 15px;
}

/* Project Card Details */
.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card .project-content {
    padding: 25px;
}

.project-card .featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.project-card .project-meta {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.project-card .project-meta>div {
    margin-bottom: 10px;
}

.project-card .project-meta strong {
    color: var(--secondary-color);
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.project-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--secondary-color);
    color: #fff;
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    max-width: 400px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e5a612;
}

/* Fix logo sizing */
.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        max-width: 100%;
    }

    .service-card-detailed .service-image {
        height: 200px;
    }
}

/* ========================================
   MODERN HOMEPAGE & ALL PAGES FIXES 2025
   ======================================== */

/* Hero Section - Modern Design */
.hero {
    position: relative;
    min-height: 600px;
    background: #B7E0FF;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #00224F;
    padding: 40px;

    border-radius: 20px;


}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #00224F;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #133a64;
    font-weight: 500;
    text-shadow: none;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--secondary-color) !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-color);
}

.hero-highlight span {
    color: var(--secondary-color) !important;
}

.hero-highlight i {
    font-size: 24px;
    color: var(--primary-color) !important;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

.hero-buttons .btn-primary:hover {
    background: var(--white) !important;
    color: var(--dark-blue) !important;
}

.hero-buttons .btn-secondary {
    background: transparent !important;
    border: 3px solid var(--white) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

.hero-buttons .btn-secondary:hover {
    background: var(--white) !important;
    color: var(--dark-blue) !important;
}

/* Stats Section - Clean Design */
.stats-section {
    background: var(--gradient-hero) !important;
    padding: 80px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: #ffffff !important;
    margin-bottom: 15px;
    display: block;
}

.stat-icon i {
    color: #ffffff !important;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #ffffff !important;
    font-weight: 500;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
}

.about-content {
    padding: 20px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 15px;
}

/* Services Section - Box Design */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.service-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #f5c542);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
}

.service-box h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 15px;
}

/* Projects Section - Card Design */
.projects-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-box:hover .project-image img {
    transform: scale(1.1);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.project-details {
    padding: 25px;
}

.project-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-details h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-details p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
}

.project-value i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #001a35);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-light {
    background: #fff;
    color: var(--secondary-color);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--secondary-color);
}

/* Footer - Modern Clean Design */
.footer {
    background: var(--gradient-hero) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.footer-main {
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-col {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #64B5F6 !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: #ffffff !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #ffffff !important;
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-contact i {
    color: #64B5F6 !important;
    margin-right: 10px;
    width: 20px;
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(100, 181, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: all 0.3s;
}

.footer .social-links a:hover {
    background: #64B5F6;
    color: #0D47A1 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff !important;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    text-align: center;
}

/* Buttons - Consistent Design */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color) !important;
    border-color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--secondary-color) !important;
    border: 2px solid var(--white);
    font-weight: 700;
}

.btn-light:hover {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color) !important;
}

/* Additional button specificity */
a.btn-primary,
a.btn-secondary,
a.btn-light,
a.btn-outline {
    text-decoration: none;
}

a.btn-primary {
    color: var(--white) !important;
}

a.btn-primary:hover {
    color: var(--secondary-color) !important;
}

a.btn-secondary {
    color: var(--white) !important;
}

a.btn-secondary:hover {
    color: var(--secondary-color) !important;
}

a.btn-light {
    color: var(--secondary-color) !important;
}

a.btn-light:hover {
    color: var(--white) !important;
}

a.btn-outline {
    color: var(--white) !important;
}

a.btn-outline:hover {
    color: var(--secondary-color) !important;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px !important;
        line-height: 1.3 !important;
    }

    .hero-subtitle {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    .hero-highlight {
        font-size: 14px;
        padding: 12px 20px;
        margin-bottom: 25px;
    }

    .hero-highlight span {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 35px;
        font-size: 15px;
    }

    .hero-control-btn {
        width: 50px;
        height: 50px;
    }

    .hero-indicators {
        bottom: 20px;
        padding: 10px 15px;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    .hero-highlight {
        font-size: 13px;
        padding: 10px 15px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .hero-highlight i {
        font-size: 18px;
    }

    .hero-highlight span {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 14px;
    }

    .hero-control-btn {
        width: 45px;
        height: 45px;
    }

    .hero-controls {
        padding: 0 10px;
    }

    .stat-number {
        font-size: 36px;
    }

    .badge-number {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}


/* ===================================
   Additional Fixes for Spacing & Layout
   =================================== */

/* Ensure consistent section padding */
section {
    position: relative;
    overflow: hidden;
}

.page-banner {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Fix footer to prevent layout issues */
.footer {
    clear: both;
    width: 100%;
    background: var(--gradient-hero) !important;
    color: #ffffff !important;
    margin-top: 0;
}

.footer-main {
    padding: 60px 0 30px;
}

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

.footer-col {
    padding: 0;
}

.footer-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    background: var(--dark-blue);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Fix social links in footer */
.footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Fix about page layout */
.about-section {
    padding: 80px 0;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
    padding: 20px 0;
}

.about-text h2 {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Fix services page layout */
.services-detail-section {
    padding: 80px 0;
}

.service-item {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-item h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.8;
}

/* Fix projects page layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card .project-content {
    padding: 25px;
}

.project-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.project-card p {
    color: #666;
    line-height: 1.6;
}

/* Fix blog grid spacing */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: #999;
    font-size: 14px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-card h2 a {
    color: var(--secondary-color);
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        min-height: 200px;
    }

    section {
        padding: 50px 0 !important;
    }
}

/* Ensure no duplicate footer styles cause conflicts */
.footer * {
    box-sizing: border-box;
}

/* Fix any spacing issues between sections */
section+section {
    margin-top: 0;
}

section+.footer {
    margin-top: 0;
}

/* Ensure proper clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}


/* ===========================
   Quote Modal
   =========================== */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 91, 0.9);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.quote-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.quote-modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 28px;
}

.quote-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.quote-modal-close:hover {
    color: var(--secondary-color);
}

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

.quote-modal label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.quote-modal input,
.quote-modal select,
.quote-modal textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.quote-modal input:focus,
.quote-modal select:focus,
.quote-modal textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-modal textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-modal .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .quote-modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .quote-modal-content h2 {
        font-size: 24px;
    }
}

/* ===========================
   Layout & Spacing Fixes
   =========================== */

/* Fix page banner spacing */
.page-banner {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    color: #fff;
    text-align: center;
    margin-top: 0;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-banner p {
    font-size: 16px;
    opacity: 0.9;
}

.page-banner a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.page-banner a:hover {
    color: #fff;
}

/* Fix section spacing */
section {
    position: relative;
    overflow: hidden;
}

.about-section,
.services-section,
.projects-section,
.clients-section,
.blog-section {
    padding: 80px 0;
}

/* Fix about grid spacing */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.4);
    text-align: center;
}

.experience-badge h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Fix section tag */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Fix feature list spacing */
.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.features-list li:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.features-list li i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Fix stats section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i,
.stat-icon i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Fix services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-box,
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.service-box:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-color);
}

.service-icon-wrapper,
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.3);
}

.service-icon i {
    font-size: 36px;
    color: #fff;
}

.service-box h3,
.service-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p,
.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Fix projects grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-box,
.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.project-box:hover,
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-box:hover .project-image img,
.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 30px;
}

.project-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-info h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Fix footer spacing */
.footer {
    background: var(--gradient-hero) !important;
    color: #ffffff !important;
    padding: 0;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Fix CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive fixes */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-section,
    .services-section,
    .projects-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   COMPREHENSIVE LAYOUT FIXES
   =========================== */

/* Homepage About Preview Section */
.about-preview-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

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

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: block;
}

.experience-badge-home {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00);
    color: var(--secondary-color);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.5);
    text-align: center;
    z-index: 2;
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.about-preview-content {
    padding: 0;
}

.about-preview-content h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: 800;
}

.about-preview-content>p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    margin: 35px 0;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.3);
}

.about-feature-icon i {
    font-size: 24px;
    color: #fff;
}

.about-feature-text h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.about-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About Page - Building Infrastructure Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00);
    color: var(--secondary-color);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.5);
    text-align: center;
    z-index: 2;
}

.experience-badge h3 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 10px 0;
}

.experience-badge p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content>p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 25px;
    margin-right: 15px;
}

/* Blog Page - Make posts clickable */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-card .blog-content>div[itemprop="description"] p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 15px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Services Page Layout */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-detail-section {
    padding: 80px 0;
    background: #fff;
}

/* Why Choose Section - Services Page */
.why-choose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.3);
}

.why-choose-icon i {
    font-size: 36px;
    color: #fff;
}

.why-choose-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Footer Layout Fix */
.footer {
    background: var(--gradient-hero) !important;
    color: #ffffff !important;
    margin-top: 0;
    padding: 0;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col {
    margin: 0;
}

.footer-title {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: var(--dark-blue);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Responsive Fixes */
@media (max-width: 1024px) {

    .about-preview-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-preview-content h2,
    .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .about-preview-section,
    .about-section {
        padding: 60px 0;
    }

    .about-preview-content h2,
    .about-content h2 {
        font-size: 32px;
    }

    .experience-badge-home,
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px 30px;
    }

    .badge-number,
    .experience-badge h3 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .about-preview-content h2,
    .about-content h2 {
        font-size: 28px;
    }

    .badge-number,
    .experience-badge h3 {
        font-size: 32px;
    }

    .badge-text,
    .experience-badge p {
        font-size: 14px;
    }
}

/* Remove any conflicting inline styles */
.about-preview-section *,
.about-section * {
    box-sizing: border-box;
}

/* Ensure sections don't overlap */
section {
    position: relative;
    clear: both;
}


/* =============================================
   COMPREHENSIVE FOOTER FIXES - ALL PAGES
   ============================================= */

/* Footer Base Styles - Override any conflicts */
.footer {
    background: var(--gradient-hero) !important;
    color: #ffffff !important;
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100%;
    clear: both;
    position: relative;
}

/* Footer Main Section */
.footer-main {
    padding: 80px 0 40px !important;
    background: transparent !important;
}

/* Footer Grid Layout */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr !important;
    gap: 50px !important;
    align-items: start;
}

/* Footer Columns */
.footer-col {
    margin: 0 !important;
    padding: 0 !important;
}

/* Footer Titles */
.footer-title,
.footer h3 {
    color: var(--primary-color) !important;
    font-size: 22px !important;
    margin-bottom: 25px !important;
    font-weight: 700 !important;
    padding: 0 !important;
}

/* Footer Text */
.footer-text,
.footer p {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    font-size: 15px !important;
}

/* Social Links */
.footer .social-links {
    display: flex !important;
    gap: 12px !important;
    margin-top: 20px !important;
    flex-wrap: wrap;
}

.footer .social-links a {
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
}

.footer .social-links a:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-3px) !important;
}

/* Footer Links */
.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 15px !important;
    padding: 0 !important;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    font-size: 15px !important;
    position: relative;
}

.footer-links li a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-links li a::before {
    content: '→';
    opacity: 0;
    margin-right: 5px;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Footer Contact Info */
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding: 0 !important;
}

.footer-contact li i {
    color: var(--primary-color) !important;
    font-size: 18px !important;
    width: 20px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    background: #001936 !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    font-size: 14px !important;
}

.footer-bottom a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

/* Responsive Footer Fixes */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }

    .footer-main {
        padding: 60px 0 30px !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .footer-main {
        padding: 50px 0 25px !important;
    }

    .footer-title,
    .footer h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    .footer-text,
    .footer p,
    .footer-links li a,
    .footer-contact li {
        font-size: 14px !important;
    }

    .footer .social-links a {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px !important;
    }

    .footer-bottom {
        padding: 20px 0 !important;
    }

    .footer-bottom p {
        font-size: 13px !important;
    }
}

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Remove any margin conflicts */
section:last-of-type {
    margin-bottom: 0 !important;
}

.cta-section {
    margin-bottom: 0 !important;
}

/* Fix for pages with different structures */
.page-content+.footer,
.main-content+.footer,
section:last-child+.footer {
    margin-top: 0 !important;
}

/* About Page Footer Fix */
.about-page .footer,
.services-page .footer,
.projects-page .footer,
.blog-page .footer,
.contact-page .footer {
    margin-top: 0 !important;
}

/* Additional specificity for stubborn inline styles */
body footer.footer {
    background: var(--gradient-hero) !important;
}

body .footer .footer-main {
    background: transparent !important;
}

body .footer .footer-bottom {
    background: #001936 !important;
}

/* Fix footer spacing issues */
.footer * {
    box-sizing: border-box;
}

/* Ensure no overflow issues */
.footer-grid,
.footer-main,
.footer-bottom {
    overflow: visible;
}


/* ===============================================
   SPECIFIC FIXES - WHO WE ARE & CTA SECTIONS
   =============================================== */

/* About Section - WHO WE ARE - Specific Fix */
.about-section .about-grid {
    display: grid !important;
    grid-template-columns: 45% 55% !important;
    gap: 60px !important;
    align-items: center !important;
    margin-top: 40px;
    max-width: 100% !important;
    overflow: hidden !important;
}

.about-section .about-images {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
}

.about-section .image-card {
    position: relative !important;
    width: 100% !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.about-section .image-card img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-width: 100%;
}

.about-section .experience-badge {
    position: absolute !important;
    bottom: 30px !important;
    left: 30px !important;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00) !important;
    color: var(--secondary-color) !important;
    padding: 25px 35px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.5) !important;
    text-align: center !important;
    z-index: 10 !important;
    min-width: 180px;
}

.about-section .experience-badge h3 {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin: 0 0 8px 0 !important;
    color: var(--secondary-color) !important;
}

.about-section .experience-badge p {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin: 0 !important;
    color: var(--secondary-color) !important;
}

/* About Content Area */
.about-section .about-content {
    padding: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.about-section .section-tag {
    display: inline-block !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
}

.about-section .about-content h2 {
    font-size: 42px !important;
    color: var(--secondary-color) !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

.about-section .about-content h2 span {
    color: var(--primary-color) !important;
    display: inline !important;
}

.about-section .about-content p {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

.about-section .about-content p strong {
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
}

/* CTA Section Fixes */
.cta-section {
    background: var(--secondary-color) !important;
    color: #fff !important;
    padding: 80px 0 !important;
    text-align: center !important;
    margin-top: 0 !important;
}

.cta-section h2 {
    font-size: 42px !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
}

.cta-section p {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 35px !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.btn-quote,
.cta-section .btn,
.cta-section a.btn-quote {
    display: inline-block !important;
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    padding: 18px 18px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 5px 20px rgba(253, 183, 20, 0.4) !important;
}

.btn-quote:hover,
.cta-section .btn:hover,
.cta-section a.btn-quote:hover {
    background: #ffcc00 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(253, 183, 20, 0.6) !important;
}

/* CTA Content */
.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.cta-buttons .btn {
    margin: 0 !important;
}

/* Button Styling Consistency */
.btn,
a.btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.btn-primary {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.3) !important;
}

.btn-primary:hover {
    background: #ffcc00 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.5) !important;
}

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

.btn-secondary:hover {
    background: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-light {
    background: #fff !important;
    color: var(--secondary-color) !important;
}

.btn-light:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.btn-outline:hover {
    background: #fff !important;
    color: var(--secondary-color) !important;
}

/* Section Tag Styling */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
}

/* ===========================
   Interactive World Map Section
   =========================== */
.india-map-section {
    background: linear-gradient(135deg, #E3F2FD 0%, #B7E0FF 50%, #90C4FF 100%);
    padding: 0;
    position: relative;
    overflow: visible;
}

.india-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 34, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.india-map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.india-map-background {
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.india-map-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.india-map-svg {
    width: 100%;
    max-width: 1000px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 34, 79, 0.15));
    transition: transform 0.3s ease;
}

.india-map-svg:hover {
    transform: scale(1.02);
}

.india-map-svg path {
    transition: all 0.3s ease;
}

.india-map-svg path:hover {
    fill: url(#mapGradient);
    opacity: 1;
}

.state-borders path {
    stroke-dasharray: 5, 5;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -100;
    }
}

.continent {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.map-pin {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -100%);
}

.map-pin:hover {
    transform: scale(1.1);
    z-index: 20;
}

.pin-icon {
    position: relative;
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.map-pin.active .pin-icon {
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.pin-label {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00224F 0%, #003366 100%);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 34, 79, 0.3);
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    min-width: 280px;
    border: 2px solid #B7E0FF;
}

.pin-label::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #003366;
}

.pin-label.red-label {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    font-weight: 500;
    border-color: #FFB74D;
}

.pin-label.red-label::before {
    border-top-color: #F57C00;
}

.map-pin:hover .pin-label,
.map-pin.active .pin-label {
    opacity: 1;
    visibility: visible;
    top: -90px;
}

.pin-label strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.pin-label small {
    font-size: 11px;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .india-map-section {
        padding: 0;
    }

    .india-map-background {
        min-height: 420px;
    }

    .india-map-svg {
        max-width: 700px;
    }

    .pin-label {
        font-size: 11px;
        padding: 12px 15px;
        min-width: 200px;
        white-space: normal;
        max-width: 250px;
    }

    .map-pin .pin-icon svg {
        width: 40px;
        height: 50px;
    }

    .pin-label strong {
        font-size: 13px;
    }

    .map-pin .pin-icon svg {
        width: 30px;
        height: 40px;
    }
}

/* ===========================
   Locations Section
   =========================== */
.locations-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    height: 450px;

    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.location-box {
    background: rgba(66, 133, 244, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(66, 133, 244, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.location-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 1), rgba(33, 150, 243, 1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.location-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.4);
}

.location-box:hover::before {
    opacity: 1;
}

.location-header {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.9) 0%, rgba(25, 118, 210, 0.9) 100%);
    color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.location-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.2)"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
}

.location-header i {
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.location-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-details {
    padding: 30px;
    background: rgba(66, 133, 244, 0.95);
    color: #ffffff;
}

.location-details p {
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 15px;
}

.location-details p strong {
    color: #ffffff;
    font-weight: 600;
}

.location-map {
    width: 100%;
    height: 300px;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
    .locations-section {
        padding: 60px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-header {
        padding: 20px;
    }

    .location-header i {
        font-size: 32px;
    }

    .location-header h3 {
        font-size: 20px;
    }

    .location-details {
        padding: 20px;
    }

    .location-map {
        height: 250px;
    }
}

/* Responsive Fixes for About Section */
@media (max-width: 1024px) {
    .about-section .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-section .about-content h2 {
        font-size: 36px !important;
    }

    .cta-section h2 {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    .about-section .about-grid {
        gap: 30px !important;
    }

    .about-section .about-content h2 {
        font-size: 32px !important;
    }

    .about-section .experience-badge {
        bottom: 20px !important;
        left: 20px !important;
        padding: 20px 25px !important;
    }

    .about-section .experience-badge h3 {
        font-size: 36px !important;
    }

    .cta-section {
        padding: 60px 0 !important;
    }

    .cta-section h2 {
        font-size: 32px !important;
    }

    .cta-section p {
        font-size: 16px !important;
    }

    .btn,
    .btn-quote {
        padding: 14px 28px !important;
        font-size: 14px !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section .about-content h2 {
        font-size: 28px !important;
    }

    .about-section .experience-badge h3 {
        font-size: 32px !important;
    }

    .about-section .experience-badge p {
        font-size: 13px !important;
    }

    .cta-section h2 {
        font-size: 28px !important;
    }
}

/* Ensure no overflow issues */
.about-section,
.cta-section {
    overflow: hidden;
    position: relative;
}


/* ===============================================
   LOGO AND PROJECT CARD FIXES
   =============================================== */

/* Logo Styling - Make Bigger and Ensure Clickability */
.logo {
    display: flex !important;
    align-items: center !important;
    z-index: 100;
}

.logo a {
    display: block !important;
    line-height: 0 !important;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 70px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    cursor: pointer !important;
}

/* Ensure logo link is always clickable */
.logo a {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* Projects Page - Fix Card and Title Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    width: fit-content;
}

.project-card h3 {
    font-size: 22px !important;
    color: var(--secondary-color) !important;
    margin: 15px 0 !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
    display: block !important;
    word-wrap: break-word !important;
}

.project-card h3 a {
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: block;
}

.project-card h3 a:hover {
    color: var(--primary-color) !important;
}

.project-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

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

.info-item .label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item .value {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.project-description {
    color: #666;
    line-height: 1.7;
    margin: 15px 0;
    font-size: 15px;
    flex: 1;
}

.project-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-category {
    font-size: 13px;
    color: #666;
    text-transform: capitalize;
}

.project-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.project-status.completed {
    background: #d4edda;
    color: #155724;
}

.project-status.ongoing {
    background: #fff3cd;
    color: #856404;
}

.project-status.upcoming {
    background: #d1ecf1;
    color: #0c5460;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px !important;
    color: var(--secondary-color) !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
    overflow: visible !important;
    white-space: normal !important;
}

.section-header p {
    font-size: 18px !important;
    color: #666 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Banner Heading Fix */
.page-banner h1 {
    font-size: 48px !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
    overflow: visible !important;
    white-space: normal !important;
}

/* Responsive Logo Sizing */
@media (max-width: 1200px) {
    .logo-image {
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 50px !important;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card h3 {
        font-size: 20px !important;
    }

    .section-header h2 {
        font-size: 32px !important;
    }

    .page-banner h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px !important;
    }

    .project-card h3 {
        font-size: 18px !important;
    }

    .section-header h2 {
        font-size: 28px !important;
    }

    .page-banner h1 {
        font-size: 32px !important;
    }
}

/* Ensure no text truncation */
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
}


/* ===========================
   HEADER & PAGE BANNER FIX
   About page layout fix for overlapping header
   =========================== */

/* Ensure page banner doesn't overlap with sticky header */
.page-banner {
    margin-top: 0 !important;
    padding-top: 120px !important;
}

/* Fix header positioning */
.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
}

/* Ensure body has no negative margins */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Top bar and navbar proper spacing */
.top-bar {
    position: relative !important;
    z-index: 1001 !important;
}

.navbar {
    position: relative !important;
    z-index: 1001 !important;
}

/* Fix any potential overflow issues */
.container {
    position: relative !important;
}

@media (max-width: 768px) {
    .page-banner {
        padding-top: 100px !important;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding-top: 80px !important;
    }
}


/* ===========================
   COMPREHENSIVE FIXES - Nov 5, 2025
   =========================== */

/* Fix button spacing - buttons on same line */
.btn-primary,
.btn-secondary {
    display: inline-block !important;
    white-space: nowrap !important;
    margin-bottom: 10px !important;
}

/* Ensure buttons stay on same line */
.btn-primary+.btn-secondary {
    margin-left: 15px !important;
}

/* Fix logo size - reduce to reasonable size */
.logo-image {
    height: 90px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
}

/* Project card heading fixes */
.project-card h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
    margin-bottom: 15px !important;
}

.project-card h3 a {
    color: var(--secondary-color) !important;
    display: block !important;
    text-decoration: none !important;
}

.project-card h3 a:hover {
    color: var(--primary-color) !important;
}

/* Project page section header */
.section-header h2 {
    font-size: 36px !important;
    line-height: 1.3 !important;
    overflow: visible !important;
    white-space: normal !important;
}

/* Fix Get Quote button colors */
.btn-quote,
a.btn-quote {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--primary-color) !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
}

.btn-quote:hover,
a.btn-quote:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Blog read more button */
.blog-card a,
.blog-card .read-more {
    display: inline-block !important;
    margin-top: 15px !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.blog-card a:hover,
.blog-card .read-more:hover {
    color: var(--secondary-color) !important;
}

/* Make entire blog card clickable but read more button works separately */
.blog-card {
    cursor: pointer !important;
    position: relative !important;
}

.blog-card a {
    position: relative !important;
    z-index: 10 !important;
}

/* Responsive logo sizes */
@media (max-width: 1200px) {
    .logo-image {
        height: 45px !important;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px !important;
    }

    .btn-primary+.btn-secondary {
        margin-left: 0 !important;
        margin-top: 10px !important;
    }

    .section-header h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px !important;
    }

    .project-card h3 {
        font-size: 18px !important;
    }

    .section-header h2 {
        font-size: 24px !important;
    }
}


/* ===========================
   BUTTON LAYOUT FIXES
   Fix buttons appearing on multiple lines
   =========================== */

/* About page button container */
.about-content div[style*="margin-top"] {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap !important;
    align-items: center;
}

.about-content div[style*="margin-top"] a {
    margin-left: 0 !important;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Ensure buttons don't break on mobile */
@media (max-width: 480px) {
    .about-content div[style*="margin-top"] {
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

/* ===========================
   LOGO SIZE FIX
   Reduce logo from 70px to better size
   =========================== */

.logo-image {
    height: 90px !important;
    width: auto !important;
    max-width: 250px !important;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-image {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .logo-image {
        height: 45px !important;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px !important;
    }
}

/* ===========================
   REQUEST QUOTE BUTTON FIX
   Fix color issues on homepage
   =========================== */

.btn-quote,
a.btn-quote {
    background: var(--primary-color) !important;
    color: var(--dark-blue) !important;
    border: 2px solid var(--primary-color) !important;
    font-weight: 700 !important;
    padding: 12px 14px !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.btn-quote:hover,
a.btn-quote:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
}


/* ===========================
   PROJECT CARDS FIX
   Fix heading/subheading layout issues
   =========================== */

.project-card h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin: 15px 0 12px 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
    height: auto !important;
    min-height: 54px;
    display: block !important;
}

.project-card .project-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    overflow: visible !important;
    display: block !important;
    height: auto !important;
    margin-bottom: 15px !important;
}

.project-card .project-meta {
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.project-card .project-meta strong {
    font-size: 13px !important;
    color: var(--text-dark);
}

/* Featured badge positioning */
.featured-badge {
    display: inline-block !important;
    margin-bottom: 10px !important;
}

/* Project status and category badges */
.project-status,
.project-category {
    display: inline-block !important;
    margin-right: 10px !important;
    margin-top: 5px !important;
}


/* ===========================
   BLOG FIX
   Ensure Read More buttons are clickable
   =========================== */

.blog-card .read-more,
a.read-more {
    display: inline-block !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    cursor: pointer !important;
}

.blog-card {
    position: relative;
    cursor: default !important;
}

.blog-content {
    position: relative;
    z-index: 1;
}


/* ===========================
   GET QUOTE BUTTON FIX
   Make it more visible and not faded
   =========================== */

/* Hero section Get Quote button - make it stand out */
.hero-buttons .btn-secondary {
    background: var(--primary-color) !important;
    color: var(--dark-blue) !important;
    border: 2px solid var(--primary-color) !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.4) !important;
}

.hero-buttons .btn-secondary:hover {
    background: var(--white) !important;
    color: var(--dark-blue) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 20px rgba(253, 183, 20, 0.6) !important;
}

/* Ensure no fading/transparency on buttons */
.btn,
.btn-primary,
.btn-secondary {
    opacity: 1 !important;
}

/* ===========================
   ABOUT US PAGE REDESIGN
   Modern hero and section improvements
   =========================== */

/* Enhanced Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(0, 43, 91, 0.95), rgba(0, 25, 54, 0.95)),
        url('../images/banner-bg.jpg') center/cover no-repeat;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(253, 183, 20, 0.1) 100%);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 56px !important;
    margin-bottom: 20px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 18px !important;
    opacity: 0.9;
}

.page-banner p a {
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-banner p a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

/* About Section Improvements */
.about-section {
    padding: 100px 0 !important;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

.about-images {
    position: relative !important;
}

.about-images .image-card {
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.15) !important;
    position: relative;
}

.about-images .image-card img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

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

.experience-badge {
    position: absolute !important;
    bottom: -30px !important;
    right: 30px !important;
    background: var(--primary-color) !important;
    padding: 30px 40px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.4) !important;
    z-index: 10 !important;
}

.experience-badge h3 {
    font-size: 42px !important;
    color: var(--dark-blue) !important;
    margin: 0 !important;
    font-weight: 800 !important;
}

.experience-badge p {
    color: var(--dark-blue) !important;
    margin: 5px 0 0 0 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

/* Section Tag */
.section-tag {
    display: inline-block !important;
    background: rgba(253, 183, 20, 0.1) !important;
    color: var(--primary-color) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
}

.about-content h2 {
    font-size: 42px !important;
    color: var(--secondary-color) !important;
    margin: 20px 0 25px 0 !important;
    line-height: 1.3 !important;
}

.about-content h2 span {
    color: var(--primary-color) !important;
    display: block !important;
}

.about-content p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #666 !important;
    margin-bottom: 20px !important;
}

.about-content p strong {
    color: var(--secondary-color) !important;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0 !important;
    background: var(--secondary-color) !important;
}

.mission-vision-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 50px !important;
    border-radius: 15px !important;
    border: 2px solid rgba(253, 183, 20, 0.3) !important;
    transition: all 0.3s ease !important;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 40px rgba(253, 183, 20, 0.2) !important;
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color) !important;
    font-size: 32px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.mission-card h3 i,
.vision-card h3 i {
    font-size: 38px !important;
}

.mission-card p,
.vision-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
}

/* Values Section */
.values-section {
    padding: 100px 0 !important;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 35px !important;
    margin-top: 50px !important;
}

.value-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border-bottom: 4px solid transparent !important;
}

.value-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.15) !important;
    border-bottom-color: var(--primary-color) !important;
}

.value-card .icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, var(--primary-color), #ffd700) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px auto !important;
    font-size: 36px !important;
    color: var(--dark-blue) !important;
}

.value-card h4 {
    font-size: 22px !important;
    color: var(--secondary-color) !important;
    margin-bottom: 15px !important;
}

.value-card p {
    color: #666 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-banner h1 {
        font-size: 42px !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }

    .about-content h2 {
        font-size: 34px !important;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 80px 0 !important;
    }

    .page-banner h1 {
        font-size: 32px !important;
    }

    .experience-badge {
        bottom: 20px !important;
        right: 20px !important;
        padding: 20px 25px !important;
    }

    .experience-badge h3 {
        font-size: 32px !important;
    }
}

/* ===============================================
   FINAL COMPLETE REDESIGN - ABOUT PAGE
   November 2025 - Clean Override
   =============================================== */

/* About Section - Complete Reset and Redesign */
.about-section {
    padding: 80px 0 !important;
    background: #fff !important;
    overflow: hidden !important;
}

.about-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.about-section .about-grid {
    display: grid !important;
    grid-template-columns: 45% 1fr !important;
    gap: 60px !important;
    align-items: start !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.about-section .about-images {
    position: relative !important;
    width: 100% !important;
    height: fit-content !important;
}

.about-section .image-card {
    position: relative !important;
    width: 100% !important;
    height: 500px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 43, 91, 0.15) !important;
}

.about-section .image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.about-section .experience-badge {
    position: absolute !important;
    bottom: 40px !important;
    left: 40px !important;
    background: linear-gradient(135deg, #FDB714 0%, #ffcc00 100%) !important;
    padding: 30px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 40px rgba(253, 183, 20, 0.4) !important;
    text-align: center !important;
    z-index: 10 !important;
    min-width: 200px !important;
}

.about-section .experience-badge h3 {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #002B5B !important;
    margin: 0 0 8px 0 !important;
    line-height: 1 !important;
}

.about-section .experience-badge p {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #002B5B !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.about-section .about-content {
    padding: 20px 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.about-section .section-tag {
    display: inline-block !important;
    background: rgba(253, 183, 20, 0.1) !important;
    color: #FDB714 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    margin-bottom: 20px !important;
}

.about-section .about-content h2 {
    font-size: 36px !important;
    color: #002B5B !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    margin: 0 0 25px 0 !important;
    max-width: 100% !important;
    word-break: normal !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
}

.about-section .about-content h2 span {
    color: #FDB714 !important;
    display: inline !important;
}

.about-section .about-content p {
    font-size: 17px !important;
    color: #555 !important;
    line-height: 1.9 !important;
    margin: 0 0 20px 0 !important;
    text-align: justify !important;
}

.about-section .about-content p strong {
    color: #002B5B !important;
    font-weight: 700 !important;
}

.about-section .about-content div[style*="margin-top"] {
    margin-top: 35px !important;
}

/* Services Section - Fix Feature Items */
.services-section .features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
}

.services-section .feature-item {
    background: #fff !important;
    border-radius: 15px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid transparent !important;
}

.services-section .feature-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.15) !important;
    border-color: #FDB714 !important;
}

.services-section .feature-item div[style*="font-size: 48px"] {
    margin-bottom: 25px !important;
}

.services-section .feature-item h3 {
    font-size: 22px !important;
    color: #002B5B !important;
    font-weight: 700 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
}

.services-section .feature-item p {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
    .about-section .about-grid {
        grid-template-columns: 42% 1fr !important;
        gap: 50px !important;
    }

    .about-section .about-content h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 1024px) {
    .about-section .about-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .about-section .image-card {
        height: 400px !important;
    }

    .about-section .about-content h2 {
        font-size: 34px !important;
    }

    .about-section .container {
        padding: 0 30px !important;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0 !important;
    }

    .about-section .container {
        padding: 0 25px !important;
    }

    .about-section .about-grid {
        gap: 40px !important;
    }

    .about-section .image-card {
        height: 350px !important;
    }

    .about-section .experience-badge {
        bottom: 30px !important;
        left: 30px !important;
        padding: 25px 35px !important;
    }

    .about-section .experience-badge h3 {
        font-size: 40px !important;
    }

    .about-section .experience-badge p {
        font-size: 14px !important;
    }

    .about-section .about-content h2 {
        font-size: 28px !important;
    }

    .about-section .about-content p {
        font-size: 16px !important;
        text-align: left !important;
    }

    .services-section .features-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0 !important;
    }

    .about-section .image-card {
        height: 300px !important;
        border-radius: 15px !important;
    }

    .about-section .experience-badge {
        bottom: 20px !important;
        left: 20px !important;
        padding: 20px 25px !important;
        min-width: 160px !important;
    }

    .about-section .experience-badge h3 {
        font-size: 36px !important;
    }

    .about-section .experience-badge p {
        font-size: 13px !important;
    }

    .about-section .about-content h2 {
        font-size: 26px !important;
    }

    .about-section .about-content p {
        font-size: 15px !important;
    }

    .services-section .feature-item {
        padding: 30px 25px !important;
    }

    .services-section .feature-item h3 {
        font-size: 20px !important;
    }
}

/* ===============================================
   ULTIMATE ABOUT PAGE FIX - NOVEMBER 2025
   Ultra-specific selectors to override all conflicts
   =============================================== */

section.about-section {
    padding: 80px 0 !important;
    background: #ffffff !important;
    overflow: visible !important;
}

section.about-section>div.container {
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 50px !important;
    padding-right: 50px !important;
}

section.about-section div.about-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 70px !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
}

section.about-section div.about-images {
    flex: 0 0 480px !important;
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
}

section.about-section div.about-content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 10px 0 !important;
}

section.about-section div.image-card {
    width: 100% !important;
    height: 520px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative !important;
}

section.about-section div.image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

section.about-section div.experience-badge {
    position: absolute !important;
    bottom: 35px !important;
    left: 35px !important;
    background: linear-gradient(135deg, #FDB714, #ffcc00) !important;
    padding: 28px 38px !important;
    border-radius: 12px !important;
    text-align: center !important;
    z-index: 5 !important;
}

section.about-section div.experience-badge h3 {
    font-size: 46px !important;
    font-weight: 900 !important;
    color: #002B5B !important;
    margin: 0 0 6px 0 !important;
    line-height: 1 !important;
}

section.about-section div.experience-badge p {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #002B5B !important;
    margin: 0 !important;
}

section.about-section span.section-tag {
    display: inline-block !important;
    background: rgba(253, 183, 20, 0.12) !important;
    color: #FDB714 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    padding: 9px 22px !important;
    border-radius: 25px !important;
    margin-bottom: 22px !important;
}

section.about-section div.about-content h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #002B5B !important;
    line-height: 1.45 !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: keep-all !important;
    white-space: normal !important;
    hyphens: manual !important;
}

section.about-section div.about-content h2 span {
    color: #FDB714 !important;
    font-weight: 800 !important;
}

section.about-section div.about-content p {
    font-size: 16.5px !important;
    color: #555555 !important;
    line-height: 1.85 !important;
    margin: 0 0 18px 0 !important;
    text-align: justify !important;
}

section.about-section div.about-content p strong {
    color: #002B5B !important;
    font-weight: 700 !important;
}

/* Responsive for Ultimate Fix */
@media screen and (max-width: 1199px) {
    section.about-section div.about-images {
        flex: 0 0 420px !important;
        width: 420px !important;
        min-width: 420px !important;
        max-width: 420px !important;
    }

    section.about-section div.about-content h2 {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 1024px) {
    section.about-section div.about-grid {
        flex-direction: column !important;
        gap: 45px !important;
    }

    section.about-section div.about-images {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    section.about-section div.image-card {
        height: 420px !important;
    }

    section.about-section div.about-content h2 {
        font-size: 32px !important;
    }
}

@media screen and (max-width: 768px) {
    section.about-section {
        padding: 60px 0 !important;
    }

    section.about-section>div.container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    section.about-section div.about-grid {
        gap: 35px !important;
    }

    section.about-section div.image-card {
        height: 350px !important;
        border-radius: 15px !important;
    }

    section.about-section div.experience-badge {
        bottom: 25px !important;
        left: 25px !important;
        padding: 22px 30px !important;
    }

    section.about-section div.experience-badge h3 {
        font-size: 38px !important;
    }

    section.about-section div.about-content h2 {
        font-size: 27px !important;
    }

    section.about-section div.about-content p {
        font-size: 15.5px !important;
        text-align: left !important;
    }
}

@media screen and (max-width: 480px) {
    section.about-section {
        padding: 50px 0 !important;
    }

    section.about-section>div.container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    section.about-section div.image-card {
        height: 280px !important;
    }

    section.about-section div.experience-badge {
        bottom: 18px !important;
        left: 18px !important;
        padding: 18px 24px !important;
    }

    section.about-section div.experience-badge h3 {
        font-size: 32px !important;
    }

    section.about-section div.experience-badge p {
        font-size: 12px !important;
    }

    section.about-section div.about-content h2 {
        font-size: 24px !important;
    }

    section.about-section div.about-content p {
        font-size: 15px !important;
    }
}

/* ===============================================
   CRITICAL FIXES - Title Visibility & Spacing
   =============================================== */

/* Ensure title is always visible and properly formatted */
section.about-section div.about-content h2,
.about-section .about-content h2,
section.about-section h2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #002B5B !important;
    line-height: 1.45 !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-transform: none !important;
}

/* Fix button container spacing */
section.about-section div.about-content div[style*="margin-top"],
.about-section .about-content>div:last-child {
    margin-top: 35px !important;
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

/* Fix button styling */
section.about-section a.btn,
.about-section .btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

section.about-section a.btn-primary,
.about-section .btn-primary {
    background: #FDB714 !important;
    color: #002B5B !important;
    border: none !important;
}

section.about-section a.btn-secondary,
.about-section .btn-secondary {
    background: transparent !important;
    color: #002B5B !important;
    border: 2px solid #002B5B !important;
}

/* Fix section spacing - reduce whitespace */
section.about-section {
    padding: 70px 0 60px 0 !important;
}

section.about-section+section,
.about-section+section {
    margin-top: 0 !important;
    padding-top: 70px !important;
}

/* Ensure Major Projects section has proper spacing */
section[style*="padding: 80px 0"] {
    padding: 70px 0 !important;
    margin-top: 0 !important;
}

/* Fix section header spacing */
.section-header {
    text-align: center !important;
    margin-bottom: 45px !important;
}

.section-header h2 {
    font-size: 36px !important;
    color: #002B5B !important;
    margin-bottom: 12px !important;
    margin-top: 12px !important;
    font-weight: 700 !important;
}

.section-header p {
    color: #666 !important;
    font-size: 17px !important;
    margin: 0 !important;
}

.section-header .section-tag {
    margin-bottom: 15px !important;
}

/* Remove excessive padding/margin */
*+.about-section {
    margin-top: 0 !important;
}

.page-banner+.about-section {
    margin-top: 0 !important;
}

/* ===============================================
   COMPLETE ABOUT PAGE REDESIGN - MODERN LAYOUT
   Next-Gen Design - November 2025
   =============================================== */

/* Kill all previous about section styles */
section.about-section,
section.about-section * {
    all: revert !important;
}

/* Fresh Start - About Section Container */
section.about-section {
    padding: 0 0 80px 0 !important;
    background: #ffffff !important;
    overflow: visible !important;
    display: block !important;
}

section.about-section .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
}

/* Modern Grid Layout - Side by Side */
section.about-section .about-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 100px !important;
    margin: 0 !important;
    padding: 60px 0 0 0 !important;
}

/* Left Side - Image Area */
section.about-section .about-images {
    flex: 0 0 550px !important;
    width: 550px !important;
    position: relative !important;
}

section.about-section .image-card {
    width: 100% !important;
    height: 600px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 80px rgba(0, 43, 91, 0.12) !important;
    position: relative !important;
}

section.about-section .image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

section.about-section .experience-badge {
    position: absolute !important;
    bottom: 50px !important;
    left: 50px !important;
    background: linear-gradient(135deg, #FDB714 0%, #FFA500 100%) !important;
    padding: 35px 45px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(253, 183, 20, 0.5) !important;
    z-index: 10 !important;
    text-align: center !important;
}

section.about-section .experience-badge h3 {
    font-size: 52px !important;
    font-weight: 900 !important;
    color: #002B5B !important;
    margin: 0 0 8px 0 !important;
    line-height: 1 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

section.about-section .experience-badge p {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #002B5B !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Right Side - Content Area */
section.about-section .about-content {
    flex: 1 !important;
    padding: 30px 0 !important;
    min-width: 0 !important;
}

section.about-section .section-tag {
    display: inline-block !important;
    background: linear-gradient(135deg, rgba(253, 183, 20, 0.15), rgba(255, 204, 0, 0.15)) !important;
    color: #FDB714 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    margin: 0 0 25px 0 !important;
    border: 2px solid rgba(253, 183, 20, 0.3) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

section.about-section .about-content h2 {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #002B5B !important;
    line-height: 1.25 !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    letter-spacing: -0.5px !important;
}

section.about-section .about-content h2 span {
    background: linear-gradient(135deg, #FDB714, #FFA500) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900 !important;
}

section.about-section .about-content p {
    font-size: 18px !important;
    color: #4a5568 !important;
    line-height: 1.8 !important;
    margin: 0 0 22px 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    text-align: left !important;
}

section.about-section .about-content p strong {
    color: #002B5B !important;
    font-weight: 700 !important;
}

/* Button Container */
section.about-section .about-content>div:last-child {
    display: flex !important;
    gap: 18px !important;
    margin-top: 40px !important;
    flex-wrap: wrap !important;
}

/* Modern Button Styles */
section.about-section .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 38px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    letter-spacing: 0.5px !important;
}

section.about-section .btn-primary {
    background: linear-gradient(135deg, #FDB714, #FFA500) !important;
    color: #002B5B !important;
    box-shadow: 0 8px 24px rgba(253, 183, 20, 0.35) !important;
}

section.about-section .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(253, 183, 20, 0.45) !important;
}

section.about-section .btn-secondary {
    background: #002B5B !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 43, 91, 0.25) !important;
}

section.about-section .btn-secondary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(0, 43, 91, 0.35) !important;
    background: #001936 !important;
}

/* Services Page - Modern Feature Cards */
.services-section .features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 35px !important;
    margin-top: 20px !important;
}

.services-section .feature-item {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 45px 35px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.services-section .feature-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(135deg, #FDB714, #FFA500) !important;
    transform: scaleX(0) !important;
    transition: transform 0.4s ease !important;
}

.services-section .feature-item:hover::before {
    transform: scaleX(1) !important;
}

.services-section .feature-item:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 50px rgba(0, 43, 91, 0.15) !important;
    border-color: rgba(253, 183, 20, 0.3) !important;
}

.services-section .feature-item i {
    font-size: 54px !important;
    color: #FDB714 !important;
    margin-bottom: 25px !important;
    display: block !important;
    transition: all 0.4s ease !important;
}

.services-section .feature-item:hover i {
    transform: scale(1.15) rotate(5deg) !important;
}

.services-section .feature-item h3 {
    font-size: 22px !important;
    color: #002B5B !important;
    font-weight: 800 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.services-section .feature-item p {
    font-size: 16px !important;
    color: #4a5568 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
    section.about-section .container {
        max-width: 1200px !important;
        padding: 0 50px !important;
    }

    section.about-section .about-grid {
        gap: 80px !important;
    }

    section.about-section .about-images {
        flex: 0 0 480px !important;
        width: 480px !important;
    }

    section.about-section .about-content h2 {
        font-size: 42px !important;
    }
}

@media screen and (max-width: 1200px) {
    section.about-section .about-grid {
        gap: 60px !important;
    }

    section.about-section .about-images {
        flex: 0 0 420px !important;
        width: 420px !important;
    }

    section.about-section .image-card {
        height: 520px !important;
    }

    section.about-section .about-content h2 {
        font-size: 38px !important;
    }

    .services-section .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media screen and (max-width: 1024px) {
    section.about-section .about-grid {
        flex-direction: column !important;
        gap: 50px !important;
    }

    section.about-section .about-images {
        flex: 1 !important;
        width: 100% !important;
        max-width: 700px !important;
        margin: 0 auto !important;
    }

    section.about-section .image-card {
        height: 480px !important;
    }

    section.about-section .about-content {
        text-align: left !important;
    }

    section.about-section .about-content h2 {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 768px) {
    section.about-section {
        padding: 0 0 60px 0 !important;
    }

    section.about-section .container {
        padding: 0 30px !important;
    }

    section.about-section .about-grid {
        padding: 40px 0 0 0 !important;
        gap: 40px !important;
    }

    section.about-section .image-card {
        height: 400px !important;
        border-radius: 20px !important;
    }

    section.about-section .experience-badge {
        bottom: 30px !important;
        left: 30px !important;
        padding: 28px 35px !important;
    }

    section.about-section .experience-badge h3 {
        font-size: 44px !important;
    }

    section.about-section .experience-badge p {
        font-size: 15px !important;
    }

    section.about-section .about-content h2 {
        font-size: 34px !important;
    }

    section.about-section .about-content p {
        font-size: 17px !important;
    }

    .services-section .features-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .services-section .feature-item {
        padding: 38px 30px !important;
    }
}

@media screen and (max-width: 480px) {
    section.about-section .container {
        padding: 0 20px !important;
    }

    section.about-section .about-grid {
        padding: 30px 0 0 0 !important;
    }

    section.about-section .image-card {
        height: 320px !important;
        border-radius: 16px !important;
    }

    section.about-section .experience-badge {
        bottom: 20px !important;
        left: 20px !important;
        padding: 22px 28px !important;
    }

    section.about-section .experience-badge h3 {
        font-size: 38px !important;
    }

    section.about-section .experience-badge p {
        font-size: 14px !important;
    }

    section.about-section .about-content h2 {
        font-size: 28px !important;
    }

    section.about-section .about-content p {
        font-size: 16px !important;
    }

    section.about-section .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ===============================================
   PROJECTS PAGE - MODERN LAYOUT
   =============================================== */

.projects-section {
    padding: 70px 0 !important;
    background: #f8f9fa !important;
}

.projects-section .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
}

.projects-section .section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.projects-section .section-header h2 {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #002B5B !important;
    margin: 0 0 15px 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.projects-section .section-header p {
    font-size: 18px !important;
    color: #4a5568 !important;
    margin: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
    margin: 0 !important;
}

.project-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid transparent !important;
    position: relative !important;
}

.project-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(135deg, #FDB714, #FFA500) !important;
    transform: scaleX(0) !important;
    transition: transform 0.4s ease !important;
}

.project-card:hover::before {
    transform: scaleX(1) !important;
}

.project-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0, 43, 91, 0.15) !important;
    border-color: rgba(253, 183, 20, 0.2) !important;
}

.project-card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

.project-card:hover img {
    transform: scale(1.05) !important;
}

.project-card .project-content {
    padding: 30px !important;
}

.project-card .featured-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #FDB714, #FFA500) !important;
    color: #002B5B !important;
    padding: 8px 18px !important;
    border-radius: 25px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    letter-spacing: 1px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.project-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #002B5B !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 3 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    min-height: 58px !important;
}

.project-card>.project-content>p {
    font-size: 15px !important;
    color: #4a5568 !important;
    line-height: 1.7 !important;
    margin: 0 0 20px 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.project-card .project-meta {
    margin-top: 20px !important;
    border-top: 2px solid #f0f0f0 !important;
    padding-top: 20px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.project-card .project-meta>div {
    display: grid !important;
    grid-template-columns: auto 1fr !important;

}

.project-card .project-meta strong {
    color: #002B5B !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    min-width: 90px !important;
}

.project-card .project-meta i {
    color: #FDB714 !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
}

.project-card .project-meta>div>span:last-child {
    color: #4a5568 !important;
    word-break: break-word !important;
    line-height: 1.5 !important;
}

.project-card .project-category,
.project-card .project-status {
    display: inline-block !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    letter-spacing: 0.5px !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002B5B, #001936) !important;
    color: #ffffff !important;
    padding: 70px 0 !important;
    text-align: center !important;
}

.cta-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 50px !important;
}

.cta-section h2 {
    font-size: 40px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.cta-section p {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0 35px 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.cta-section .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 40px !important;
    background: linear-gradient(135deg, #FDB714, #FFA500) !important;
    color: #002B5B !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 24px rgba(253, 183, 20, 0.35) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.cta-section .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(253, 183, 20, 0.45) !important;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    .projects-section .container {
        padding: 0 50px !important;
    }
}

@media screen and (max-width: 768px) {
    .projects-section {
        padding: 60px 0 !important;
    }

    .projects-section .container {
        padding: 0 30px !important;
    }

    .projects-section .section-header h2 {
        font-size: 36px !important;
    }

    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .project-card img {
        height: 220px !important;
    }

    .project-card .project-content {
        padding: 25px !important;
    }

    .cta-section {
        padding: 60px 0 !important;
    }

    .cta-section h2 {
        font-size: 32px !important;
    }

    .cta-section .btn {
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .projects-section .container {
        padding: 0 20px !important;
    }

    .projects-section .section-header h2 {
        font-size: 30px !important;
    }

    .project-card img {
        height: 200px !important;
    }

    .project-card .project-content {
        padding: 20px !important;
    }

    .project-card h3 {
        font-size: 20px !important;
    }

    .cta-section h2 {
        font-size: 28px !important;
    }
}

/* ===============================================
   FIX PROJECT CARD CONTENT OVERFLOW
   =============================================== */

.project-card .project-content p {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    max-height: 77px !important;
}

.project-card .project-meta>div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.6 !important;
}

/* ===========================
   CRITICAL VISIBILITY FIXES
   Maximum Specificity Overrides
   =========================== */

/* Force all buttons to have proper text contrast */
.btn,
a.btn,
button.btn,
.btn-primary,
a.btn-primary,
button.btn-primary,
.hero-buttons .btn-primary,
.cta-buttons .btn-primary,
.about-content .btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%) !important;
}

.btn-secondary,
a.btn-secondary,
button.btn-secondary,
.hero-buttons .btn-secondary,
.cta-buttons .btn-secondary {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Force button hover states */
.btn:hover,
a.btn:hover,
button.btn:hover,
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
.hero-buttons .btn-primary:hover,
.cta-buttons .btn-primary:hover,
.about-content .btn-primary:hover {
    color: #0288D1 !important;
    background: #ffffff !important;
}

.btn-secondary:hover,
a.btn-secondary:hover,
button.btn-secondary:hover,
.hero-buttons .btn-secondary:hover,
.cta-buttons .btn-secondary:hover {
    color: #0288D1 !important;
    background: #ffffff !important;
}

/* Force stats section visibility */
.stats-section,
.stats-section .stat-item,
.stats-section .stat-number,
.stats-section .stat-label,
.stats-section .stat-icon,
.stats-section .stat-card h3,
.stats-section .stat-card p {
    color: #ffffff !important;
}

/* Force all form inputs to be visible */
input,
textarea,
select,
.form-control {
    color: #424242 !important;
    background: #ffffff !important;
    border: 2px solid #2196F3 !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    border-color: #1565C0 !important;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2) !important;
}

input::placeholder,
textarea::placeholder {
    color: #757575 !important;
}

/* Force footer text visibility */
.footer,
.footer *:not(.btn):not(a.btn) {
    color: #ffffff !important;
}

/* Service cards should have dark text on white background */
.service-card h3 {
    color: #0D47A1 !important;
}

.service-card p {
    color: #424242 !important;
}

/* Project overlay should have white text */
.project-overlay h3,
.project-overlay p {
    color: #ffffff !important;
}

/* ===========================
   FINAL COMPREHENSIVE OVERRIDES
   =========================== */

/* Ensure hero text is always white */
.hero h1,
.hero h2,

.hero span,
.hero .hero-title {

    color: #ffbc07 !important;
}

/* Hero highlight badge - Rs. 500+ Crores */
.hero-highlight,
.hero .hero-highlight,
section.hero .hero-highlight {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 12px !important;
    background: #ffffff !important;
    color: #0D47A1 !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4) !important;
    margin-bottom: 30px !important;
    border: 3px solid #2196F3 !important;
}

.hero-highlight span,
.hero .hero-highlight span {
    color: #0D47A1 !important;
}

.hero-highlight i,
.hero .hero-highlight i {
    color: #FF9800 !important;
    font-size: 24px !important;
}

/* Hero buttons with extreme specificity */
.hero-buttons,
.hero .hero-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-top: 40px !important;
}

.hero .hero-buttons .btn,
.hero .hero-buttons a.btn,
.hero-buttons .btn-primary,
.hero .hero-buttons .btn-primary,
.hero .hero-buttons a.btn-primary,
section.hero .hero-buttons .btn-primary,
section.hero .hero-buttons a.btn.btn-primary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%) !important;
    color: #ffffff !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3) !important;
}

.hero-buttons .btn-secondary,
.hero .hero-buttons .btn-secondary,
.hero .hero-buttons a.btn-secondary,
section.hero .hero-buttons .btn-secondary,
section.hero .hero-buttons a.btn.btn-secondary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
}

/* Headings in light sections should be navy */
.services-section h2,
.services-section h3,
.about-section h2,
.about-section h3 {
    color: #0D47A1 !important;
}

/* Body text in light sections */
.services-section p,
.about-section p {
    color: #424242 !important;
}

/* All CTA buttons with warm gradient */
.cta-section .btn,
.cta-section a.btn,
.cta-buttons .btn,
header .btn-quote,
nav .btn-quote {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%) !important;
    color: #ffffff !important;
}

/* ===========================
   STATS & FOOTER CRITICAL FIXES
   =========================== */

/* Force stats section visibility */
.stats-section {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #1A237E 100%) !important;
}

.stat-item,
.stat-item *,
.stats-section .stat-item,
.stats-section .stat-icon,
.stats-section .stat-icon i,
.stats-section .stat-number,
.stats-section .stat-label {
    color: #ffffff !important;
}

/* Force footer dark background and white text */
footer,
.footer,
footer.footer {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #1A237E 100%) !important;
}

.footer *,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer p,
.footer li,
.footer a,
.footer span,
.footer-text,
.footer-links a,
.footer-contact li,
.footer-bottom p {
    color: #ffffff !important;
}

.footer-title,
.footer h3,
.footer h4 {
    color: #64B5F6 !important;
}

.footer i,
.footer-contact i,
.social-links i {
    color: #64B5F6 !important;
}

/* Ensure all icons display properly - CRITICAL */
i,
.fas,
.far,
.fab,
.fa,
i.fas,
i.far,
i.fab,
i.fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    line-height: 1 !important;
}

.fab,
i.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Service Icons - Force Display */
.service-icon-wrapper i,
.service-icon-wrapper .fas,
.service-icon-wrapper .far,
.service-box i,
.service-card i,
.service-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 36px !important;
    display: inline-block !important;
    color: #ffffff !important;
}

body>section:nth-child(5)>div>div:nth-child(2)>div>div,
.about-feature-icon {
    background: #90c4ff !important;
}

.about-feature-icon {
    background: #90c4ff !important;
}

.service-icon-wrapper {
    background: #90c4ff !important;
}

.newsletter-section {
    background: #0a79f8 !important;
}

/* About Feature Icons */
.about-feature-icon i,
.about-feature-icon .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
}

/* Stats Icons */
.stat-icon i,
.stat-item i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 48px !important;
    display: inline-block !important;
}

/* ===========================
   ICON FALLBACK & VISIBILITY FIX
   Universal Icon Solution
   =========================== */

/* Override any conflicting font settings */
* [class^="fa-"],
* [class*=" fa-"] {
    font-family: "Font Awesome 6 Free" !important;
}

/* Specific icon containers must display flex */
.service-icon-wrapper,
.service-box .service-icon-wrapper,
.service-card .service-icon,
.about-feature-icon,
.stat-icon,
.stat-item .stat-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Icon elements - comprehensive selectors */
.service-icon-wrapper>i,
.service-box>.service-icon-wrapper>i,
.service-card>.service-icon>i,
.about-feature-icon>i,
.stat-icon>i,
i[class^="fa-"],
i[class*=" fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

/* Brand icons specific */
i[class^="fab "],
i[class*=" fab "] {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Force visibility for all service icons */
.services-section i,
.service-box i,
.service-card i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===========================
   ASSOCIATES PAGE RESPONSIVE
   =========================== */
@media screen and (max-width: 1024px) {

    /* Make grids single column on tablets */
    section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Adjust image heights */
    section img[style*="height: 600px"] {
        height: 400px !important;
    }

    /* Adjust padding */
    section[style*="padding: 100px 0"] {
        padding: 60px 0 !important;
    }

    /* Container padding */
    div[style*="padding: 0 60px"] {
        padding: 0 40px !important;
    }
}

@media screen and (max-width: 768px) {

    /* Font sizes */
    h2[style*="font-size: 48px"] {
        font-size: 36px !important;
    }

    h2[style*="font-size: 42px"] {
        font-size: 32px !important;
    }

    h3[style*="font-size: 32px"] {
        font-size: 24px !important;
    }

    h3[style*="font-size: 24px"] {
        font-size: 20px !important;
    }

    /* Adjust padding */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }

    div[style*="padding: 0 40px"] {
        padding: 0 20px !important;
    }

    /* Make 2-column grids single column */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Badge positions */
    div[style*="position: absolute; bottom: 40px; left: 40px"],
    div[style*="position: absolute; bottom: 40px; right: 40px"],
    div[style*="position: absolute; top: 40px; left: 40px"] {
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
        top: 20px !important;
        padding: 20px 25px !important;
    }
}

@media screen and (max-width: 480px) {

    /* Further reduce font sizes */
    h2[style*="font-size: 36px"],
    h2[style*="font-size: 32px"] {
        font-size: 28px !important;
    }

    p[style*="font-size: 18px"] {
        font-size: 16px !important;
    }

    /* Reduce image heights on mobile */
    section img[style*="height: 400px"] {
        height: 300px !important;
    }

    /* Smaller gaps */
    section div[style*="gap: 80px"] {
        gap: 30px !important;
    }
}