/********** Template CSS - ORCA Electrical **********/

/* ===== CSS Variables ===== */
:root {
    --primary: #1e1f5f;
    --primary-light: #2a2b7a;
    --accent: #f21f28;
    --accent-light: #ff4757;
    --dark: #0a0b1e;
    --light: #f8f9fa;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #1e1f5f 0%, #3a3b8f 100%);
    --gradient-accent: linear-gradient(135deg, #f21f28 0%, #ff6b6b 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Spinner ===== */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background: var(--gradient-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(242, 31, 40, 0.4);
}

.back-to-top i {
    color: white;
}

/* ===== Buttons ===== */
.btn {
    transition: var(--transition);
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 31, 95, 0.35);
    color: white;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }

/* ===== Header Over Banner ===== */
.header-over-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-top: none !important;
    border: none !important;
}

.navbar-wrapper {
    border-top: none !important;
    border: none !important;
}

.header-over-banner.scrolled {
    position: fixed;
}

/* ===== Top Bar ===== */
.top-bar {
    background: rgba(30, 31, 95, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    transition: all 0.4s ease;
}

.header-over-banner.scrolled .top-bar {
    background: var(--gradient-primary);
    padding: 8px 0;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-item i {
    color: var(--accent);
    font-size: 13px;
}

.top-bar-item:hover {
    color: white;
    transform: translateX(3px);
}

.top-bar-right {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.top-bar-social {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
}

.top-bar-social:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* ===== Navbar ===== */
.navbar-wrapper {
    position: relative;
    top: 0;
    transition: all .4s ease;
    z-index: 999;
}

.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08), 0 -2px 0 rgba(0, 0, 0, 0) !important;
    transition: var(--transition);
    border-bottom: 1px solid rgba(30, 31, 95, 0.1);
    border-top: none !important;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    overflow: visible;
}

/* Ensure no line appears above logo */
.navbar-background::before {
    top: 0 !important;
    border-top: none !important;
    border: none !important;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 31, 40, 0.02) 50%, transparent 100%);
}

/* Remove any visual line above logo area */
.navbar-wrapper .container .navbar .navbar-brand {
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 1 !important;
}

.navbar-wrapper .container .navbar {
    padding-top: 18px;
    padding-bottom: 18px;
}

.navbar-wrapper .container .navbar .navbar-brand img {
    vertical-align: top;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.navbar-background::before {
    border-top: none !important;
    border: none !important;
    top: 0 !important;
}

/* Remove any line above logo specifically */
.navbar-brand,
.navbar-brand img,
.navbar-brand a,
a.navbar-brand {
    position: relative;
    border-top: none !important;
    border: none !important;
}

.navbar-brand::before,
.navbar-brand::after,
.navbar-brand img::before,
.navbar-brand img::after,
.navbar-brand a::before,
.navbar-brand a::after,
a.navbar-brand::before,
a.navbar-brand::after {
    content: none !important;
    display: none !important;
    border: none !important;
    border-top: none !important;
    height: 0 !important;
    width: 0 !important;
}

/* Remove line from navbar-light Bootstrap class */
.navbar-light .navbar-brand,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
    border-top: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any top border or line from navbar container around logo */
.navbar .navbar-brand,
.navbar > .container > .navbar-brand,
.navbar > .container-fluid > .navbar-brand {
    border-top: none !important;
    border: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure no line appears in the logo area */
.navbar-wrapper .container .navbar .navbar-brand {
    border-top: 0 !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Final override - remove any line above logo from all possible sources */
header .navbar-brand,
header .navbar-brand img,
header a.navbar-brand,
.navbar-wrapper .navbar-brand,
.navbar-wrapper .navbar-brand img,
.navbar-wrapper a.navbar-brand {
    border-top: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove any pseudo-element lines */
header .navbar-brand::before,
header .navbar-brand::after,
.navbar-wrapper .navbar-brand::before,
.navbar-wrapper .navbar-brand::after {
    display: none !important;
    content: none !important;
    border: none !important;
    border-top: none !important;
}

.navbar-wrapper.scrolled .navbar-background {
    background: #ffffff;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(242, 31, 40, 0.2);
}

.navbar-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 31, 40, 0.02) 50%, transparent 100%);
    pointer-events: none;
    border-top: none !important;
}

.navbar-background::after {
    border-top: none !important;
    display: none;
}

.navbar-wrapper .container {
    position: relative;
    z-index: 2;
    border-top: none !important;
    border: none !important;
}

.navbar-wrapper .container::before,
.navbar-wrapper .container::after {
    border-top: none !important;
    display: none;
}

a.navbar-brand,
.navbar-brand a {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    display: inline-block;
}

a.navbar-brand::before,
a.navbar-brand::after,
.navbar-brand a::before,
.navbar-brand a::after {
    display: none !important;
    border: none !important;
    border-top: none !important;
    content: none !important;
}

.navbar {
    padding: 18px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
    border-top: none !important;
    border: none !important;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    margin-left: 35px;
    padding: 10px 0;
    outline: none;
    color: var(--text);
    position: relative;
    transition: color .3s ease;
    font-weight: 500;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width .3s ease;
    border-radius: 2px;
}

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

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
    border: none;
    border-radius: 16px;
    background: white;
    margin-top: 20px;
    min-width: 220px;
}

.dropdown-item {
    padding: 12px 24px;
    font-size: 14px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.dropdown-item i {
    width: 18px;
    color: var(--accent);
    font-size: 14px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: white;
    background: var(--gradient-primary);
    padding-left: 30px;
    transform: translateX(5px);
}

.navbar .dropdown-menu .dropdown-item:hover i {
    color: white;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(242, 31, 40, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 31, 40, 0.4);
    color: white;
}

.nav-cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-cta-btn:hover i {
    transform: translateX(5px);
}

img.logo-img {
    width: 280px;
    transition: all .3s ease;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9);
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-brand {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.navbar-brand::before,
.navbar-brand::after {
    display: none !important;
    border: none !important;
    border-top: none !important;
}

img.logo-img::before,
img.logo-img::after {
    display: none !important;
    border: none !important;
    border-top: none !important;
}

.highlight-text {
    color: var(--accent) !important;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-background-slider {
    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 center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    /* Fallback gradient if image doesn't load */
    background-color: #1e1f5f;
    background-image: linear-gradient(135deg, #1e1f5f 0%, #2a2b7a 50%, #1e1f5f 100%);
}

.hero-slide.active {
    opacity: 1;
}

/* Fallback for hero section if no images */
.hero-background-slider:empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1f5f 0%, #2a2b7a 50%, #1e1f5f 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-decorative-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 20 Q120 40 140 20 T180 20' stroke='rgba(255,255,255,0.05)' stroke-width='2' fill='none'/%3E%3Cpath d='M100 60 Q120 80 140 60 T180 60' stroke='rgba(255,255,255,0.05)' stroke-width='2' fill='none'/%3E%3Cpath d='M100 100 Q120 120 140 100 T180 100' stroke='rgba(255,255,255,0.05)' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}


.hero-section .container {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-section .row {
    width: 100%;
    margin: 0;
}

.hero-section .col-lg-8,
.hero-section .col-xl-7 {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding-right: 20px;
}

/* Hero Badge Text */
.hero-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge-text i {
    color: var(--accent);
    font-size: 16px;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Hero Title - Attractive Design */
.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
    position: relative;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    padding: 0;
}

.hero-line {
    display: block;
    position: relative;
    opacity: 0;
    animation: fadeInUpAttractive 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.25),
                 0 6px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    text-overflow: clip;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
}

.hero-line:nth-child(1) {
    color: #ffffff;
    animation-delay: 0.3s;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-line:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f21f28 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.5s;
    position: relative;
    font-weight: 900;
    font-size: 1.15em;
    animation: fadeInUpAttractive 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, gradientShiftText 4s ease infinite;
    animation-delay: 0.5s, 1.7s;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}


.hero-line:nth-child(3) {
    color: #ffffff;
    animation-delay: 0.7s;
    font-weight: 700;
    font-size: 0.95em;
}

@keyframes fadeInUpAttractive {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    60% {
        transform: translateY(-3px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShiftText {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Hover Effect */
.hero-title:hover .hero-line {
    text-shadow: 0 4px 25px rgba(242, 31, 40, 0.3),
                 0 8px 35px rgba(242, 31, 40, 0.2);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 40px;
    max-width: 100%;
    width: 100%;
    opacity: 0;
    animation: fadeInUpAttractive 1s ease forwards;
    animation-delay: 0.9s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Outfit', sans-serif;
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUpAttractive 1s ease forwards;
    animation-delay: 1.1s;
}

.hero-cta-btn {
    background: var(--gradient-accent);
    box-shadow: 0 8px 30px rgba(242, 31, 40, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    box-shadow: 0 12px 40px rgba(242, 31, 40, 0.5);
    transform: translateY(-3px);
}

.hero-secondary-btn {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Modern Badge */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-accent);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
    box-shadow: 0 0 10px rgba(242, 31, 40, 0.6);
}

.badge-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

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

/* Modern Title */
.hero-title-modern {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 25px 0;
    letter-spacing: -1.5px;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.title-line-1,
.title-line-3 {
    display: block;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUpModern 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.title-line-1 {
    animation-delay: 0.3s;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.title-line-2 {
    display: block;
    opacity: 0;
    animation: fadeInUpModern 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
    margin: 8px 0;
}

.gradient-word {
    background: linear-gradient(135deg, #ffffff 0%, #f21f28 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
    font-weight: 900;
    animation: gradientShift 3s ease infinite;
    display: inline-block;
}

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

.title-accent {
    color: #ffffff;
    font-weight: 700;
    margin-left: 8px;
}

.title-line-3 {
    animation-delay: 0.7s;
    font-size: 0.9em;
    font-weight: 700;
}

@keyframes fadeInUpModern {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Description */
.hero-description-modern {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 580px;
    opacity: 0;
    animation: fadeInUpModern 1s ease forwards;
    animation-delay: 0.9s;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-description-modern strong {
    color: #ffffff;
    font-weight: 600;
    position: relative;
}

.hero-description-modern strong::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.5;
}

/* Mini Stats */
.hero-stats-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUpModern 1s ease forwards;
    animation-delay: 1.1s;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number-mini {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-mini {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

/* Modern Buttons */
.hero-buttons-modern {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUpModern 1s ease forwards;
    animation-delay: 1.3s;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(242, 31, 40, 0.35);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 31, 40, 0.45);
    color: white;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
}

.scroll-chevrons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.scroll-chevrons i {
    color: #ffffff;
    font-size: 20px;
    animation: bounceDown 2s infinite;
}

.scroll-chevrons i:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounceDown {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.animate-float {
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.min-vh-100 {
    min-height: 100vh;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e1f5f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 31, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-accent);
    color: white;
}

.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ===== About Section ===== */
.about-us-section {
    padding: 120px 0;
    background: #ffffff;
}

.about-us-section .row {
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    width: 90%;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-accent);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(242, 31, 40, 0.3);
}

.about-experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.heading-span-text {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.heading-span-text .line {
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
}

h1.heading-text,
h2.heading-text {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--dark);
}

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

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(242, 31, 40, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gradient-accent);
    color: white;
    transform: rotate(10deg);
}

.feature-item span {
    font-weight: 600;
    color: var(--dark);
}

.read-more-btn {
    margin-top: 20px;
}

/* ===== Vision & Mission ===== */
.vision-mission-div {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .heading-span-text {
    justify-content: center;
}

.vm-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

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

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.vm-icon.vision {
    background: var(--gradient-accent);
}

.vm-icon.mission {
    background: var(--gradient-primary);
}

.vm-card h4 {
    font-weight: 700;
    font-size: 26px;
    color: var(--dark);
    margin: 0;
}

.accent-line {
    height: 4px;
    width: 60px;
    border-radius: 4px;
}

.accent-line.vision-line {
    background: var(--gradient-accent);
}

.accent-line.mission-line {
    background: var(--gradient-primary);
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 0;
}

.vm-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.vm-card:hover .vm-card-glow {
    opacity: 0.15;
}

.vision-glow {
    background: var(--accent);
    top: -100px;
    right: -100px;
}

.mission-glow {
    background: var(--primary);
    top: -100px;
    right: -100px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 120px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.service-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

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

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.service-link:hover {
    color: var(--primary);
    gap: 15px;
}

.service-card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

/* ===== Projects Section ===== */
.projects-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 31, 95, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Project Filters */
.project-filters {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid #e8ecef;
    border-radius: 50px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 31, 95, 0.2);
}

.filter-btn.active::before,
.filter-btn:hover::before {
    left: 0;
}

/* Project Cards */
.project-card-wrapper {
    position: relative;
    z-index: 1;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(10, 11, 30, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.project-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.project-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
    justify-content: center;
}

.project-view-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateX(5px);
}

.project-link-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.project-link-btn:hover {
    background: var(--accent);
    transform: rotate(45deg) scale(1.1);
}

.view-all-projects-btn {
    padding: 18px 45px;
    font-size: 16px;
}

/* ===== Leadership Team Section ===== */
.leadership-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: var(--transition);
    border: none;
    height: 100%;
}

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

.leadership-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.leadership-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.leadership-card:hover .leadership-image-wrapper img {
    transform: scale(1.02);
}

.leadership-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 30px 25px 25px 25px;
    color: white;
    z-index: 2;
}

.leadership-name {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
    text-align: left;
}

.leadership-position {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 1.4;
}

/* ===== Contact Section ===== */
.contact-us-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 31, 95, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-description {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.contact-info-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    padding: 80px 0;
    position: relative;
}

.contact-wrapper .row {
    align-items: stretch;
}

.contact-wrapper .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.contact-left-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
}

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

.contact-hours {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-hours h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-hours h5 i {
    color: var(--accent);
    font-size: 20px;
}

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

.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e8ecef;
    color: var(--text-light);
    font-size: 15px;
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-hours li span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.contact-hours li.emergency {
    background: rgba(242, 31, 40, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: none;
}

.contact-hours li.emergency span:first-child {
    color: var(--accent);
}

.contact-hours li.emergency a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-form-wrapper {
    background: white;
    padding: 50px 45px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e8ecef;
}

.form-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-form label i {
    color: var(--accent);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    background: #f8f9fa;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 31, 95, 0.1);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #adb5bd;
}

.contact-form .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
    font-size: 16px;
    margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0a0b1e 0%, #131830 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

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

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    filter: brightness(1.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-widget-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
        left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 10px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

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

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

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

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

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(242, 31, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
}

.footer-contact-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--accent);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours .day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-hours .time {
    color: rgba(255, 255, 255, 0.6);
}

.footer-hours .time.closed {
    color: var(--accent);
    font-weight: 600;
}

.footer-hours .emergency-hours {
    background: rgba(242, 31, 40, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(242, 31, 40, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-hours .emergency-hours i {
    color: var(--accent);
    font-size: 18px;
}

.footer-hours .emergency-hours span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-media-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.social-link:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(242, 31, 40, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.copyright-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.credits-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.credits-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 52px;
    }
    .hero-title-modern {
        font-size: 58px;
    }
    h1.heading-text,
    h2.heading-text {
        font-size: 42px;
    }
    .stat-number {
        font-size: 48px;
    }
    .projects-info-card h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-badge-text {
        margin: 0 auto;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    /* Center about section on tablets */
    .about-us-img {
        text-align: center;
        margin-bottom: 40px;
    }
    .about-img-wrapper {
        margin: 0 auto;
    }
    .about-us-content {
        text-align: center;
    }
    .about-us-content .heading-span-text {
        justify-content: center;
    }
    .about-us-content .read-more-btn {
        justify-content: center;
    }
    .hero-title-modern {
        font-size: 42px;
    }
    .hero-description-modern {
        font-size: 16px;
    }
    .hero-stats-mini {
        gap: 20px;
    }
    .stat-number-mini {
        font-size: 28px;
    }
    .hero-buttons-modern {
        flex-direction: column;
    }
    .hero-buttons-modern a {
        width: 100%;
        justify-content: center;
    }
    .hero-scroll-indicator {
        left: 30px;
        bottom: 30px;
    }
    .project-filters {
        gap: 10px;
    }
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .project-image-wrapper {
        height: 250px;
    }
    .margin-left-style {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    .hero-section .container {
        height: 80vh;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    .hero-badge-text {
        margin: 0 auto;
    }
    .hero-title {
        font-size: 34px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .hero-line {
        width: 100%;
        max-width: 100%;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        max-width: 100%;
        width: 100%;
    }
    .hero-badge-text {
        padding: 10px 22px;
        font-size: 12px;
    }
    .hero-title-modern {
        font-size: 36px;
    }
    .hero-description-modern {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .hero-badge-modern {
        padding: 8px 18px;
    }
    .badge-text {
        font-size: 11px;
    }
    .hero-stats-mini {
        gap: 15px;
    }
    .stat-number-mini {
        font-size: 24px;
    }
    .stat-label-mini {
        font-size: 11px;
    }
    .hero-decorative-pattern {
        width: 100%;
        opacity: 0.1;
    }
    .hero-scroll-indicator {
        left: 20px;
        bottom: 20px;
    }
    .scroll-chevrons i {
        font-size: 16px;
    }
    h1.heading-text,
    h2.heading-text {
        font-size: 32px;
    }
    .stat-number {
        font-size: 40px;
    }
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: block;
        margin: 20px auto 0;
        width: fit-content;
    }
    .about-img-wrapper {
        text-align: center;
        margin: 0 auto;
    }
    .about-us-img {
        text-align: center;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .about-us-content {
        text-align: center;
    }
    .about-us-content .heading-span-text {
        justify-content: center;
    }
    .about-us-content .read-more-btn {
        justify-content: center;
    }
    .vm-card {
        padding: 30px;
    }
    .service-card {
        padding: 30px 25px;
    }
    .project-image-wrapper {
        height: 220px;
    }
    .project-title {
        font-size: 20px;
    }
    .project-view-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .project-link-btn {
        width: 40px;
        height: 40px;
    }
    .contact-form-wrapper {
        padding: 40px 25px;
    }
    .form-header h4 {
        font-size: 24px;
    }
    .contact-left-section {
        margin-bottom: 30px;
        height: auto;
    }
    .map-wrapper {
        height: 400px;
    }
    .contact-hours {
        padding: 25px 20px;
    }
    .contact-info-card {
        padding: 30px 25px;
    }
    .contact-wrapper {
        padding: 60px 0;
    }
    img.logo-img {
        width: 200px;
    }
    .navbar-light .navbar-toggler {
        border-color: var(--primary);
        border-radius: 8px;
    }
    .navbar-light .navbar-toggler:focus {
        outline: 0;
        box-shadow: none;
    }
    .about-us-section,
    .vision-mission-div,
    .services-section,
    .projects-section,
    .contact-us-section {
        padding: 80px 0;
    }
    /* Center section headers in responsive */
    .section-header {
        text-align: center;
    }
    .section-header .heading-span-text {
        justify-content: center;
    }
    /* Ensure proper spacing for vision-mission cards */
    .vm-card {
        margin-bottom: 30px;
    }
    /* Center project filters */
    .project-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    /* Center contact info cards */
    .contact-info-card {
        text-align: center;
        margin-bottom: 30px;
    }
    /* Ensure hero content is centered */
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
    .hero-badge-text {
        padding: 8px 18px;
        font-size: 11px;
    }
    .hero-title-modern {
        font-size: 30px;
    }
    .title-line-1 {
        font-size: 0.8em;
    }
    .gradient-word {
        font-size: 1em;
    }
    .hero-description-modern {
        font-size: 14px;
    }
    .hero-badge-modern {
        padding: 8px 16px;
    }
    .badge-text {
        font-size: 10px;
    }
    .hero-stats-mini {
        gap: 12px;
    }
    .stat-number-mini {
        font-size: 22px;
    }
    .stat-label-mini {
        font-size: 10px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }
    .stat-card {
        padding: 30px 20px;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 14px 24px;
        font-size: 14px;
    }
    /* Additional responsive fixes for small screens */
    .about-img-wrapper {
        width: 100%;
    }
    .about-experience-badge {
        padding: 20px;
    }
    .about-experience-badge .years {
        font-size: 36px;
    }
    .about-experience-badge .text {
        font-size: 12px;
    }
    .section-description {
        text-align: center;
    }
    .project-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===== About Us Page Styles ===== */
/* Hero Banner Section */
.about-hero-banner {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #1e1f5f 0%, #2a2b7a 100%);
    overflow: hidden;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 31, 40, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.about-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(242, 31, 40, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 31, 40, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.about-hero-logo {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Main Content */
.about-main-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

/* About Cards */
.about-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleY(1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
}

.vision-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.safety-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.about-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.about-card-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 4px;
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

.about-card:hover .about-card-divider {
    width: 100px;
}

.about-card-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* What We Do Section */
.about-what-we-do-section {
    margin: 80px 0;
}

.about-section-header {
    margin-bottom: 50px;
}

.about-section-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3b8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(30, 31, 95, 0.3);
}

.about-section-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.about-section-subtitle {
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Service Cards */
.about-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.about-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.about-service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.service-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* Chairman Section */
.about-chairman-section {
    margin: 80px 0;
}

.chairman-message-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.chairman-message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}

.chairman-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 100px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.chairman-header-section {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.chairman-badge i {
    font-size: 18px;
}

.chairman-name-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chairman-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.chairman-title {
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.chairman-image-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.chairman-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.chairman-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 4px;
    margin-bottom: 30px;
}

.chairman-message {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
}

.chairman-message p {
    margin-bottom: 20px;
}

.chairman-message p:last-child {
    margin-bottom: 0;
}

.chairman-signature {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e8ecef;
}

.chairman-signature strong {
    color: var(--dark);
    font-weight: 700;
}

.chairman-role {
    color: var(--accent);
    font-weight: 600;
}

/* Project Manager Section */
.about-project-manager-section {
    margin: 80px 0;
}

.project-manager-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.project-manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #3a3b8f 100%);
}

.project-manager-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(30, 31, 95, 0.1) 0%, rgba(242, 31, 40, 0.1) 100%);
    border-radius: 100px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.project-manager-header-section {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.project-manager-badge i {
    font-size: 18px;
}

.project-manager-name-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-manager-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.project-manager-title {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.project-manager-image-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-manager-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.project-manager-image-wrapper:hover .project-manager-image {
    transform: scale(1.05);
}

.project-manager-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #3a3b8f 100%);
    border-radius: 4px;
    margin-bottom: 30px;
}

.project-manager-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.about-section-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-section-icon:hover::before {
    width: 200px;
    height: 200px;
}

.about-section-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.vision-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mission-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
}

.quality-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.services-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #3a3b8f 100%);
    margin: 0 auto 25px;
}

.team-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.safety-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.about-title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 4px;
    margin: 20px 0 25px;
    transition: width 0.3s ease;
}

.about-info-block:hover .about-title-underline {
    width: 100px;
}

.about-title-underline-center {
    margin: 20px auto 25px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    max-height: 400px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.about-image-wrapper:hover::after {
    opacity: 1;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.05) 0%, rgba(30, 31, 95, 0.05) 100%);
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
}

.about-content-image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}

.about-image-wrapper:hover .about-content-image {
    transform: scale(1.1);
}

.about-info-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
}

.about-info-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.about-services-list {
    list-style: none;
    padding: 0;
    margin: 35px 0 0;
}

.about-services-list li {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 70px;
}

.about-services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    transition: width 0.3s ease;
}

.about-services-list li:hover::before {
    width: 50px;
}

.about-services-list li:hover {
    padding-left: 80px;
    color: var(--dark);
}

.about-services-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 25px;
}

.about-services-list li:hover .service-item-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.service-item-content {
    flex: 1;
}

.about-services-list li strong {
    color: var(--dark);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.about-content-section {
    padding: 100px 0;
    position: relative;
}

.about-content-section.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    position: relative;
}

.about-content-section.bg-light::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 31, 95, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.content-block {
    position: relative;
    z-index: 1;
}

.welcome-block {
    padding: 60px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.welcome-icon-wrapper {
    margin-bottom: 30px;
}

.welcome-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary);
    margin: 0 auto;
    transition: var(--transition);
}

.welcome-block:hover .welcome-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.title-underline,
.title-underline-center,
.title-underline-left {
    height: 4px;
    width: 80px;
    background: var(--gradient-accent);
    border-radius: 4px;
    margin: 20px auto 30px;
}

.title-underline-left {
    margin: 20px 0 30px;
}

.title-underline-center {
    margin: 20px auto 30px;
}

.section-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin-bottom: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.section-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.section-icon:hover::before {
    width: 200px;
    height: 200px;
}

.section-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.mission-icon {
    background: linear-gradient(135deg, #f21f28 0%, #ff6b6b 100%);
}

.vision-icon {
    background: linear-gradient(135deg, #1e1f5f 0%, #3a3b8f 100%);
}

.team-icon {
    background: linear-gradient(135deg, #f21f28 0%, #ff6b6b 100%);
}

.safety-icon {
    background: linear-gradient(135deg, #1e1f5f 0%, #3a3b8f 100%);
}

.content-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.content-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    text-align: left;
}

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

.section-header-block {
    margin-bottom: 50px;
}

.section-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin: 0 auto 30px;
    transition: var(--transition);
}

.section-header-block:hover .section-header-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.content-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 31, 95, 0.1) 0%, rgba(242, 31, 40, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.content-image-wrapper:hover::after {
    opacity: 1;
}

.image-overlay-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    filter: blur(40px);
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    max-height: 400px;
}

.content-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.content-image-wrapper:hover .content-image {
    transform: scale(1.08);
}

.service-feature-card {
    background: white;
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    border-color: rgba(242, 31, 40, 0.2);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
}

.service-feature-card:hover .service-feature-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(242, 31, 40, 0.3);
}

.service-feature-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.service-feature-card p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Styles for About Us Page */
@media (max-width: 1199px) {
    .about-hero-title {
        font-size: 42px;
    }
    .about-hero-logo-img {
        max-height: 350px;
    }
}

@media (max-width: 991px) {
    .about-hero-banner {
        padding: 100px 0 80px;
    }
    .about-hero-title {
        font-size: 36px;
    }
    .about-hero-description {
        font-size: 17px;
    }
    .about-hero-logo {
        margin-top: 40px;
    }
    .about-hero-logo-img {
        max-height: 300px;
    }
    .about-main-content {
        padding: 80px 0;
    }
    .about-card {
        padding: 35px;
        margin-bottom: 30px;
    }
    .about-card-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    .about-card-title {
        font-size: 26px;
    }
    .about-card-text {
        font-size: 16px;
    }
    .about-section-icon-large {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }
    .about-section-main-title {
        font-size: 36px;
    }
    .about-what-we-do-section {
        margin: 60px 0;
    }
    .about-chairman-section,
    .about-project-manager-section {
        margin: 60px 0;
    }
    .chairman-message-card,
    .project-manager-card {
        padding: 40px;
    }
    .chairman-header-section,
    .project-manager-header-section {
        gap: 25px;
    }
    .chairman-image-wrapper,
    .project-manager-image-wrapper {
        width: 130px;
        height: 130px;
    }
    .chairman-name,
    .project-manager-name {
        font-size: 32px;
    }
    .chairman-message,
    .project-manager-description {
        font-size: 16px;
    }
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .service-card-title {
        font-size: 22px;
    }
    .service-card-text {
        font-size: 15px;
    }
    .about-chairman-section,
    .about-project-manager-section {
        margin: 50px 0;
    }
    .chairman-message-card,
    .project-manager-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    .chairman-header-section,
    .project-manager-header-section {
        flex-direction: column;
        gap: 20px;
    }
    .chairman-image-wrapper,
    .project-manager-image-wrapper {
        width: 100px;
        height: 100px;
        align-self: flex-start;
    }
    .chairman-name,
    .project-manager-name {
        font-size: 26px;
    }
    .chairman-title,
    .project-manager-title {
        font-size: 16px;
    }
    .chairman-message,
    .project-manager-description {
        font-size: 15px;
    }
}

/* ===== Contact Us Page Styles ===== */
/* Hero Banner Section */
.contact-hero-banner {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1e1f5f 0%, #2a2b7a 100%);
    overflow: hidden;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 31, 40, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(242, 31, 40, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 31, 40, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* Main Content */
.contact-main-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.1) 0%, rgba(30, 31, 95, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent);
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.contact-info-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
    font-family: 'Outfit', sans-serif;
}

.contact-info-card a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary);
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(242, 31, 40, 0.3);
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.contact-form label i {
    color: var(--accent);
    font-size: 16px;
}

.contact-form .required {
    color: var(--accent);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 31, 40, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    margin-top: 10px;
}

/* Contact Side Section */
.contact-side-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-hours-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8ecef;
}

.hours-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3b8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.hours-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Outfit', sans-serif;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.hours-list .time {
    font-size: 15px;
    color: var(--text-light);
}

.hours-list .time a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hours-list .time a:hover {
    color: var(--primary);
}

.hours-list li.emergency {
    background: linear-gradient(135deg, rgba(242, 31, 40, 0.05) 0%, rgba(30, 31, 95, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: none;
}

.hours-list li.emergency .day {
    color: var(--accent);
}

.hours-list li.emergency .day i {
    margin-right: 8px;
}

/* Responsive Styles for Contact Us Page */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 42px;
    }
    .contact-hero-description {
        font-size: 17px;
    }
    .contact-main-content {
        padding: 80px 0;
    }
    .contact-form-card {
        padding: 40px;
        margin-bottom: 30px;
    }
    .contact-side-section {
        gap: 25px;
    }
    .map-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-hero-banner {
        padding: 120px 0 80px;
    }
    .contact-hero-title {
        font-size: 36px;
    }
    .contact-hero-description {
        font-size: 16px;
    }
    .contact-main-content {
        padding: 60px 0;
    }
    .contact-form-card {
        padding: 35px;
    }
    .form-title {
        font-size: 28px;
    }
    .contact-info-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    .contact-info-card h5 {
        font-size: 20px;
    }
    .map-wrapper {
        height: 200px;
    }
    .contact-hours-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-hero-banner {
        padding: 100px 0 60px;
    }
    .contact-hero-title {
        font-size: 30px;
    }
    .contact-hero-description {
        font-size: 15px;
    }
    .contact-main-content {
        padding: 50px 0;
    }
    .contact-form-card {
        padding: 30px;
    }
    .form-header-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    .form-title {
        font-size: 24px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 80px 0 60px;
    }
    .about-hero-badge {
        padding: 8px 20px;
        font-size: 12px;
    }
    .about-hero-title {
        font-size: 32px;
    }
    .about-hero-description {
        font-size: 16px;
    }
    .about-hero-logo-img {
        max-height: 250px;
    }
    .about-main-content {
        padding: 60px 0;
    }
    .about-card {
        padding: 30px;
    }
    .about-card-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        margin-bottom: 20px;
    }
    .about-card-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .about-card-text {
        font-size: 15px;
        line-height: 1.8;
    }
    .about-section-icon-large {
        width: 80px;
        height: 80px;
        font-size: 38px;
        margin-bottom: 25px;
    }
    .about-section-main-title {
        font-size: 32px;
    }
    .about-section-subtitle {
        font-size: 16px;
    }
    .about-what-we-do-section {
        margin: 50px 0;
    }
    .about-service-card {
        padding: 30px;
        margin-bottom: 25px;
    }
    .service-card-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 20px;
    }
    .service-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .service-card-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-hero-banner {
        padding: 70px 0 50px;
    }
    .about-hero-title {
        font-size: 28px;
    }
    .about-hero-description {
        font-size: 15px;
    }
    .about-hero-logo-img {
        max-height: 200px;
    }
    .about-main-content {
        padding: 50px 0;
    }
    .about-card {
        padding: 25px;
    }
    .about-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 18px;
    }
    .about-card-title {
        font-size: 22px;
    }
    .about-card-text {
        font-size: 14px;
    }
    .about-section-icon-large {
        width: 70px;
        height: 70px;
        font-size: 34px;
        margin-bottom: 20px;
    }
    .about-section-main-title {
        font-size: 28px;
    }
    .about-section-subtitle {
        font-size: 14px;
    }
    .about-what-we-do-section {
        margin: 40px 0;
    }
    .about-service-card {
        padding: 25px;
    }
    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 18px;
    }
    .service-card-title {
        font-size: 18px;
    }
    .service-card-text {
        font-size: 13px;
    }
    .about-chairman-section,
    .about-project-manager-section {
        margin: 50px 0;
    }
    .chairman-message-card,
    .project-manager-card {
        padding: 35px;
    }
    .chairman-header-section,
    .project-manager-header-section {
        flex-direction: column;
        gap: 20px;
    }
    .chairman-image-wrapper,
    .project-manager-image-wrapper {
        width: 120px;
        height: 120px;
        align-self: flex-start;
    }
    .chairman-name,
    .project-manager-name {
        font-size: 28px;
    }
    .chairman-message,
    .project-manager-description {
        font-size: 15px;
    }

    .wpcf7-submit:disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}

}

/* ===== Contact Form 7 Toast Notifications ===== */
.cf7-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-left: 4px solid;
}

.cf7-toast-show {
    opacity: 1;
    transform: translateX(0);
}

.cf7-toast-success {
    border-left-color: #28a745;
}

.cf7-toast-error {
    border-left-color: #dc3545;
}

.cf7-toast-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 15px;
}

.cf7-toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cf7-toast-success .cf7-toast-icon {
    color: #28a745;
}

.cf7-toast-error .cf7-toast-icon {
    color: #dc3545;
}

.cf7-toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
}

.cf7-toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    transition: color 0.2s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cf7-toast-close:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.05);
}

.cf7-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    width: 100%;
    animation: cf7-toast-progress 5s linear forwards;
}

.cf7-toast-success .cf7-toast-progress {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.cf7-toast-error .cf7-toast-progress {
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
}

@keyframes cf7-toast-progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Responsive Toast */
@media (max-width: 768px) {
    .cf7-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .cf7-toast-show {
        transform: translateX(0);
    }
}
