:root {
    --primary: #001d3d;
    --red: #a50034;
    --gold: #d4af37;
    --gray: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--gray); overflow-x: hidden; }

/* --- MARQUEE --- */
.top-marquee {
    background: var(--red);
    color: var(--white);
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
}

.marquee-content {
    display: inline-block;
    animation: marqueeMove 20s linear infinite;
}

.marquee-content span {
    margin-right: 50px;
}

.marquee-content i { color: var(--gold); margin-right: 5px; }

@keyframes marqueeMove {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- HEADER & LOGO --- */
header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img-wrapper {
    background: var(--white);
    padding: 5px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 2px solid var(--gold);
}

.logo-img { height: 85px; width: auto; }

.company-name {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    background: linear-gradient(45deg, #fff 30%, var(--gold) 50%, #fff 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
}

.company-name span { color: var(--red); -webkit-text-fill-color: var(--red); }

.tagline {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* --- NAV LINKS --- */
.nav-menu { display: flex; list-style: none; gap: 5px; }

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--red);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after { width: 70%; }

/* --- DROPDOWN --- */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 4px solid var(--red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li a i { margin-right: 10px; color: var(--red); }

.dropdown-menu li a:hover {
    background: var(--gray);
    color: var(--red);
    padding-left: 25px;
}
/* home page start================= */
/* --- HERO SECTION CSS --- */
.hero {
    min-height: 100vh;
    background: var(--gray);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 5;
}

/* Text Animations */
.hero-subtitle {
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    animation: fadeInDown 0.8s ease backwards;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease 0.2s backwards;
}

.highlight { color: var(--red); }
.highlight-gold { color: var(--gold); }

.hero-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
    margin-bottom: 35px;
    animation: fadeInLeft 1s ease 0.4s backwards;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary {
    background: var(--red);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(165, 0, 52, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(165, 0, 52, 0.4);
    background: var(--primary);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Image Styling & Animation */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    animation: zoomIn 1.2s ease;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    z-index: 2;
    animation: floating 4s infinite ease-in-out;
}

.image-bg-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: rotateBlob 10s linear infinite;
}

.stat-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    animation: fadeInUp 1s ease 1s backwards;
}

.stat-card i {
    font-size: 2rem;
    color: var(--gold);
}

/* Keyframes */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { opacity: 0; scale: 0.8; } to { opacity: 1; scale: 1; } }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes rotateBlob { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.about-modern {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Side: Images --- */
.about-visuals {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease-out;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 30px 30px 0px var(--navy);
    transition: var(--transition);
}

.img-main:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 0px var(--red);
}

.floating-exp-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--red);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(165, 0, 52, 0.4);
    animation: float 4s infinite ease-in-out;
}

.exp-num { font-size: 2.5rem; font-weight: 800; font-family: 'Montserrat'; }
.exp-plus { font-size: 1.5rem; color: var(--gold); }
.floating-exp-card p { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; line-height: 1.2; margin-top: 5px;}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Right Side: Content --- */
.about-info {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease-out 0.2s;
}

.tagline {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.title {
    font-size: 2.8rem;
    color: var(--navy);
    margin: 15px 0 25px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.title span { color: var(--red); }

.description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-box:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--red);
    transform: translateX(10px);
}

.f-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.feature-box h4 { font-size: 0.9rem; color: var(--navy); }

/* Button */
.main-cta {
    display: inline-flex;
    align-items: center;
    background: var(--navy);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.main-cta:hover {
    background: var(--red);
    box-shadow: 0 10px 20px rgba(165, 0, 52, 0.3);
}

.main-cta i { margin-left: 10px; transition: 0.3s; }
.main-cta:hover i { transform: translateX(5px); }

/* --- REVEAL CLASS FOR JS --- */
.reveal .about-visuals, .reveal .about-info {
    opacity: 1;
    transform: translate(0);
}

/* --- SERVICES SECTION CSS --- */
.services-modern {
    padding: 80px 0;
    background-color: var(--gray);
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .tagline {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-header-center .title {
    font-size: clamp(28px, 5vw, 40px);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.section-header-center .title span {
    color: var(--gold);
}

.title-line {
    width: 70px;
    height: 4px;
    background: var(--red);
    margin: 15px auto;
    position: relative;
}

/* Grid System */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Card Styling */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Card Image Area */
.card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,29,61,0.7));
}

.card-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: var(--gold);
    transform: rotateY(360deg);
}

/* Card Content Area */
.card-content {
    padding: 40px 25px 25px;
}

.card-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    gap: 15px;
    color: var(--primary);
}
/* --- DARK COMPACT SECTION CSS --- */
.wcu-dark-section {
    padding: 60px 0;
    background-color: var(--primary); /* Deep Dark Background */
    position: relative;
    overflow: hidden;
}

.white-text { color: var(--white); }
.gold-text { color: var(--gold) !important; }
.highlight-red { color: var(--red); }

/* Grid for Compact Cards */
.wcu-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Very compact cards */
    gap: 15px;
    padding: 10px;
}

/* Card Styling */
.compact-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Hover Effect */
.compact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
}

/* Glowing Background on Hover */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: var(--gold);
    filter: blur(50px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: 0.4s;
    z-index: -1;
}

.compact-card:hover .glow-bg {
    opacity: 0.15;
}

/* Icon Box */
.c-icon-wrap {
    width: 45px;
    height: 45px;
    background: rgba(165, 0, 52, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px;
    border-radius: 10px;
    transition: 0.4s;
}

.compact-card:hover .c-icon-wrap {
    background: var(--gold);
    color: #000;
    transform: scale(1.1) rotate(10deg);
}

/* Text Styling */
.compact-card h3 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.compact-card p {
    color: #999;
    font-size: 11px;
    line-height: 1.4;
}

/* Special Active Card (Optional) */
.active-card {
    border-color: var(--red);
}
/* --- CONTACT V2 SECTION CSS --- */
.contact-v2 {
    padding: 80px 0;
    background-color: var(--gray); /* Light Gray background for the section */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form is slightly wider */
    gap: 30px;
    margin-top: 40px;
}

/* Form Card Styling */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-title {
    margin-bottom: 30px;
}

.form-title h3 {
    color: var(--red);
    font-size: 24px;
    margin-bottom: 8px;
}

.form-title p {
    color: #666;
    font-size: 14px;
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-box {
    margin-bottom: 20px;
}

.input-box label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-box input, 
.input-box textarea {
    width: 100%;
    padding: 12px 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--primary);
    transition: var(--transition);
}

.input-box input:focus, 
.input-box textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Submit Button */
.contact-btn {
    background: var(--red);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-btn:hover {
    background: var(--primary);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Info & Map Side */
.contact-info-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details-compact {
    background: var(--primary);
    padding: 30px;
    border-radius: 20px;
    color: var(--white);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item:last-child { margin-bottom: 0; }

.detail-item i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.detail-item span {
    display: block;
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
}

.detail-item p {
    font-weight: 500;
    font-size: 15px;
}

.map-box {
    flex-grow: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* --- CONTACT HERO V2 CSS --- */
.contact-hero-v2 {
    position: relative;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

/* Dark Gradient Overlay */
.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 29, 61, 0.95) 0%, rgba(0, 29, 61, 0.6) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: contactFadeUp 1s ease;
}

/* Breadcrumb Styling */
.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.contact-breadcrumb a:hover {
    color: var(--red);
}

/* Title & Para */
.contact-hero-title {
    font-size: clamp(32px, 6vw, 55px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.gold-text { color: var(--gold); }

.contact-hero-para {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero Badges */
.contact-quick-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.c-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.c-badge i {
    color: var(--gold);
}

.c-badge:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-5px);
}

/* Animated Divider Bottom */
.hero-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-divider-bottom svg {
    width: 100%;
    height: 60px;
}

/* Animations */
@keyframes contactFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* home apge end===================== */
/* --- FOOTER --- */
.footer-premium {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
    border-top: 6px solid var(--red);
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

/* --- Attractive Company Name --- */
.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff 20%, var(--gold) 50%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
    letter-spacing: 1px;
}

.footer-brand span {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* --- Social Icons Animation --- */
.social-box {
    display: flex;
    gap: 12px;
}

.social-box a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-box a:hover {
    background: var(--red);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(165, 0, 52, 0.4);
}

/* --- Link Section Styles --- */
.col-title {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
}

.col-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -10px;
    width: 40px; height: 3px;
    background: var(--red);
    transition: 0.4s;
}

.footer-col:hover .col-title::after {
    width: 60px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--white);
    padding-left: 10px;
    letter-spacing: 1px;
}

.footer-nav a::before {
    content: '→';
    color: var(--red);
    margin-right: 8px;
    opacity: 0;
    transition: 0.3s;
}

.footer-nav a:hover::before {
    opacity: 1;
}

/* --- Contact Section --- */
.c-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.c-item i {
    color: var(--red);
    font-size: 1.1rem;
    margin-top: 3px;
}

.c-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    margin-top: 60px;
    padding: 30px 20px;
    text-align: center;
}

.bottom-inner p {
    font-size: 0.8rem;
    color: #888;
}

.bottom-inner span {
    color: var(--gold);
    font-weight: 600;
}

.motto {
    color: var(--red) !important;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 10px rgba(165,0,52,0.4); }
}

/* about section start==================== */

/* --- ABOUT HERO SECTION CSS --- */
.about-hero {
    position: relative;
    height: 70vh; /* Professional height for internal pages */
    min-height: 450px;
    background: url('buil2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Dark Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 29, 61, 0.85), rgba(0, 29, 61, 0.6));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Title & Subtitle */
.about-title {
    font-size: clamp(30px, 6vw, 55px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.gold-text {
    color: var(--gold);
}

.about-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

/* Decorative Element */
.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: scaleIn 1.2s ease;
}

.hero-decoration .line {
    width: 50px;
    height: 2px;
    background: var(--red);
}

.hero-decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
/* --- ABOUT TRUSTED CARDS CSS --- */
.about-cards-section {
    padding: 80px 0;
    background-color: var(--primary); /* Navy Dark Background */
    position: relative;
    z-index: 1;
}

/* Reusing your header styles with color tweaks */
.white-text h2{ color: var(--gray); }
.gold-text { color: var(--gold) !important; margin: auto; }

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px 10px;
}

/* Card Styling */
.at-card {
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.at-card:hover {
    background: var(--white);
    transform: translateY(-10px);
}

/* Highlighted Card (Gold Border) */
.highlight-card {
    border: 1px solid var(--gold);
}

/* Icon Wrap */
.at-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.at-card:hover .at-icon-wrap {
    background: var(--primary);
    color: var(--gold);
    transform: rotateY(360deg);
}

/* Floating Number */
.at-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.at-card:hover .at-number {
    color: rgba(0, 0, 0, 0.05);
    top: 10px;
}

/* Typography */
.at-card h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.at-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    transition: 0.3s;
}

.at-card:hover h3 { color: var(--primary); }
.at-card:hover p { color: #555; }

/* Bottom Animated Line */
.at-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--red);
    transition: 0.5s ease;
}

.at-card:hover .at-hover-line {
    width: 100%;
}
/* abpout section end======================== */
/* civil start =================== */
/* --- CIVIL HERO SECTION CSS --- */
.civil-service-hero {
    position: relative;
    padding: 150px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax Effect */
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark Gradient Overlay */
.civil-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 29, 61, 0.9) 0%, rgba(0, 29, 61, 0.5) 100%);
    z-index: 1;
}

.civil-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

/* Breadcrumb */
.civil-breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.civil-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.civil-breadcrumb a:hover { color: var(--red); }

/* Small Badge */
.civil-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(165, 0, 52, 0.2);
    border-left: 3px solid var(--red);
    padding: 8px 15px;
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

/* Title Styling */
.civil-main-title {
    font-size: clamp(32px, 6vw, 55px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.gold-text { color: var(--gold); }

.civil-para {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Action Buttons */
.civil-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main-red {
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.btn-main-red:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-5px);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Bottom Curve Shape */
.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 60px;
}
/* --- CIVIL SERVICES SPECIAL SECTION --- */
.civil-services-section {
    padding: 70px 0;
    background-color: var(--gray);
}

/* Grid setup for 4 cards */
.civil-special-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 15px;
}

/* Card Styling with 270px Base */
.service-card {
    flex: 0 1 270px; /* Force card to stay around 270px */
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-img {
    position: relative;
    height: 180px; /* Compact height for civil cards */
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 29, 61, 0.7));
}

.card-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
    transition: 0.4s;
}

.service-card:hover .card-icon {
    background: var(--gold);
    color: var(--primary);
    transform: rotateY(360deg);
}

.card-content {
    padding: 30px 20px 20px;
}

.card-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary);

}
/* --- CIVIL 3-CARD SERVICES CSS --- */
.civil-services-v3 {
    padding: 80px 0;
    background-color: var(--gray);
}

.civil-3grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 10px;
}

/* Individual Card Styling */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition); /* Using your custom cubic-bezier */
    border-bottom: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    border-bottom: 5px solid var(--red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Image Styling */
.card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,29,61,0.6));
}

/* Icon Badge */
.card-icon {
    position: absolute;
    bottom: -20px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 2;
    transition: 0.4s;
}

.service-card:hover .card-icon {
    background: var(--gold);
    color: var(--primary);
    transform: rotateY(360deg);
}

/* Card Content */
.card-content {
    padding: 35px 25px 25px;
}

.card-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Link Button */
.read-more {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.read-more:hover {
    gap: 15px;
    color: var(--primary);
}

/* --- MOBILE RESPONSIVENESS (320px Optimized) --- */
@media (max-width: 480px) {
    .civil-services-v3 {
        padding: 50px 15px;
    }

    .civil-3grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 35px;
        padding: 0;
    }

    .card-img {
        height: 180px; /* Reduced height for small screens */
    }

    .card-content {
        padding: 30px 20px 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }
}
/* --- RR CIVIL ABOUT SECTION CSS --- */
.rr-cvl-about-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.rr-cvl-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rr-cvl-main-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.rr-cvl-visual-col, 
.rr-cvl-content-col {
    flex: 1;
    min-width: 300px;
}

/* Visual Side: Unique Classes */
.rr-cvl-image-stack {
    position: relative;
    padding-bottom: 50px;
}

.rr-cvl-main-img {
    width: 100%;
    border-radius: 25px 0 25px 0; /* Stylish corner radius */
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    display: block;
}

.rr-cvl-experience-badge {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    border-bottom: 6px solid var(--gold);
    box-shadow: 0 15px 35px rgba(0,29,61,0.4);
    z-index: 5;
    animation: rrCvlFloat 4s infinite ease-in-out;
}

@keyframes rrCvlFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.rr-cvl-exp-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rr-cvl-exp-plus {
    font-size: 24px;
    color: var(--gold);
}

.rr-cvl-exp-inner p {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 8px;
    line-height: 1.4;
}

/* Content Side: Unique Classes */
.rr-cvl-tagline-text {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.rr-cvl-main-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.rr-cvl-main-title span {
    color: var(--gold);
}

.rr-cvl-paragraph {
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 15px;
}

/* Matrix Grid: Unique Classes */
.rr-cvl-features-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

.rr-cvl-feature-unit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rr-cvl-icon-sphere {
    min-width: 50px;
    height: 50px;
    background: var(--gray);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
}

.rr-cvl-feature-unit:hover .rr-cvl-icon-sphere {
    background: var(--red);
    color: var(--white);
    transform: rotateY(360deg);
}

.rr-cvl-feature-unit h4 {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

/* CTA: Unique Classes */
.rr-cvl-btn-action {
    background: var(--red);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(165,0,52,0.2);
}

.rr-cvl-btn-action:hover {
    background: var(--primary);
    color: var(--gold);
    transform: translateY(-5px);
}

/* --- RR DARK CIVIL TRUSTED SECTION --- */
.rr-dk-cvl-trust {
    padding: 100px 0;
    background: #000d1a; /* Deeper Dark Navy */
    position: relative;
    overflow: hidden;
}

.rr-dk-cvl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.rr-dk-cvl-header {
    text-align: center;
    margin-bottom: 60px;
}

.rr-dk-cvl-tag {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.rr-dk-cvl-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--white);
    margin: 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.rr-dk-cvl-title span {
    color: var(--gold);
}

.rr-dk-cvl-line {
    width: 80px;
    height: 4px;
    background: var(--red);
    margin: 0 auto;
}

/* Grid & Cards */
.rr-dk-cvl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.rr-dk-cvl-card {
    background: rgba(255, 255, 255, 0.03); /* Glass Effect */
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    transition: var(--transition); /* Using your custom cubic-bezier */
    overflow: hidden;
}

/* Hover Effect: Card Glow */
.rr-dk-cvl-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-10px);
}

/* Watermark Text */
.rr-dk-cvl-watermark {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    transition: 0.4s;
}

.rr-dk-cvl-card:hover .rr-dk-cvl-watermark {
    color: rgba(212, 175, 55, 0.05);
}

/* Icon & Glow Box */
.rr-dk-cvl-icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rr-dk-cvl-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold);
    filter: blur(25px);
    opacity: 0.1;
    z-index: -1;
}

.rr-dk-cvl-card:hover .rr-dk-cvl-glow {
    opacity: 0.4;
    filter: blur(15px);
}

/* Card Text Content */
.rr-dk-cvl-info h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.rr-dk-cvl-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Special Active Card (Glow by default) */
.rr-dk-cvl-active {
    border-color: rgba(165, 0, 52, 0.5); /* Red hint */
}

/* Stats Section */
.rr-dk-cvl-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    background: rgba(212, 175, 55, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px dashed rgba(212, 175, 55, 0.2);
}

.rr-dk-gold { color: var(--gold); font-size: 38px; font-weight: 800; }
.rr-dk-stat-item p { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

.rr-dk-stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

/* civil end======================= */
@media (max-width: 992px) {
    .mobile-btn { display: block; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 80px 30px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        display: none; background: rgba(255,255,255,0.05);
        box-shadow: none; width: 100%;
    }
    .has-dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu li a { color: white; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-description { margin: 0 auto 30px; }
    .hero-title { font-size: 2.5rem; }
    .hero-btns { justify-content: center; width: 100%; }
     .about-grid { grid-template-columns: 1fr; gap: 80px; text-align: center; }
    .about-visuals { padding: 0 20px; }
    .title { font-size: 2.2rem; }
    .about-features-grid { text-align: left; }
}
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-box {
        justify-content: center;
    }

    .c-item {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer-brand {
        font-size: 1.4rem;
    }
     .contact-v2 {
        padding: 50px 10px;
    }

    .contact-form-card {
        padding: 30px 15px;
    }

    .form-grid {
        grid-template-columns: 1fr; /* Stack inputs on mobile */
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .form-title h3 {
        font-size: 20px;
    }

    .contact-details-compact {
        padding: 20px 15px;
    }
     .about-hero {
        height: 60vh;
        min-height: 400px;
        padding: 0 15px;
    }

    .about-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .about-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .hero-decoration .line {
        width: 30px;
    }
      .about-cards-section {
        padding: 60px 15px;
    }

    .about-card-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
    }

    .at-card {
        padding: 30px 20px;
    }

    .at-card h3 {
        font-size: 20px;
    }
    
    .at-number {
        font-size: 30px;
    }
 .civil-service-hero {
        padding: 120px 15px 80px;
        background-attachment: scroll; /* Mobile smooth scrolling */
    }

    .civil-main-title {
        font-size: 30px;
    }

    .civil-actions {
        flex-direction: column;
    }

    .btn-main-red, .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .civil-breadcrumb {
        font-size: 12px;
    }
    .civil-special-grid {
        gap: 20px;
        padding: 10px;
    }

    .service-card {
        flex: 1 1 100%; /* Take full width on mobile */
        max-width: 300px; /* But keep it neat */
    }

    .card-content h3 {
        font-size: 17px;
    }
     .rr-cvl-about-section {
        padding: 50px 0;
    }

    .rr-cvl-main-grid {
        gap: 40px;
    }

    .rr-cvl-experience-badge {
        padding: 15px;
        right: 0;
        bottom: -30px;
    }

    .rr-cvl-exp-number { font-size: 30px; }

    .rr-cvl-main-title {
        font-size: 28px;
    }

    .rr-cvl-features-matrix {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .rr-cvl-btn-action {
        width: 100%;
        justify-content: center;
    }
     .rr-dk-cvl-trust {
        padding: 60px 0;
    }

    .rr-dk-cvl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rr-dk-cvl-card {
        padding: 30px 20px;
    }

    .rr-dk-cvl-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .rr-dk-stat-divider {
        width: 60px;
        height: 2px;
    }

    .rr-dk-cvl-title {
        font-size: 26px;
    }

}
/* responsive================== */
@media (max-width: 480px) {
    .services-modern {
        padding: 50px 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 40px; /* More gap for clear separation */
        padding: 10px;
    }

    .service-card {
        max-width: 100%;
    }

    .card-img {
        height: 180px; /* Reduced height for small screens */
    }

    .section-header-center .title {
        font-size: 24px;
    }
      .wcu-compact-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Cards in one row even on small mobile */
        gap: 10px;
    }

    .compact-card {
        padding: 20px 10px;
    }

    .compact-card h3 {
        font-size: 13px;
    }

    .compact-card p {
        font-size: 10px;
    }

    .c-icon-wrap {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .contact-hero-v2 {
        padding: 110px 15px 70px;
        text-align: center;
    }

    .contact-breadcrumb {
        justify-content: center;
        font-size: 12px;
    }

    .contact-hero-title {
        font-size: 30px;
    }

    .contact-hero-para {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-quick-badges {
        justify-content: center;
        gap: 10px;
    }

    .c-badge {
        width: 100%;
        justify-content: center;
        padding: 8px 15px;
    }
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    
}

.service-card {
    animation: fadeInUp 0.6s ease backwards;
}

/* Staggered animation for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
@media (max-width: 350px) {
    .company-name { font-size: 1.1rem; }
    .logo-img { height: 35px; }
    .tagline { font-size: 0.55rem; letter-spacing: 1px; }
    .nav-container { padding: 0 10px; }
     .hero { padding-top: 140px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 1px; }
    .hero-description { font-size: 0.85rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; width: 100%; }
    .hero-img { max-width: 250px; }
    .stat-card { display: none; } /* Hide on very small screens to save space */
    .about-modern { padding: 60px 0; }
    .title { font-size: 1.6rem; }
    .about-visuals { padding: 0 10px; }
    .img-main { box-shadow: 15px 15px 0 var(--navy); }
    .floating-exp-card { padding: 15px; bottom: -20px; right: 0; min-width: 120px; }
    .exp-num { font-size: 1.8rem; }
    .about-features-grid { grid-template-columns: 1fr; } /* Stack on tiny screens */
    .main-cta { width: 100%; justify-content: center; padding: 14px 20px; }
 .footer-container {
        padding: 0 10px;
    }
    .footer-desc, .footer-nav a, .c-item p {
        font-size: 0.8rem;
    }
    .detail-item p {
        font-size: 13px;
    }
    
    .input-box input, 
    .input-box textarea {
        padding: 10px;
    }
     .about-title {
        font-size: 24px;
    }
    
    .about-hero {
        padding-top: 50px;
    }
.at-card {
        padding: 25px 15px;
    }
    .at-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
     .civil-main-title {
        font-size: 26px;
    }
    
    .civil-para {
        font-size: 14px;
    }

    .civil-badge {
        font-size: 11px;
    }
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-content p {
        font-size: 13px;
    }

    .card-img {
        height: 160px;
    }
     .rr-cvl-wrapper {
        padding: 0 15px;
    }
    .rr-cvl-main-title {
        font-size: 24px;
    }
    .rr-cvl-paragraph {
        font-size: 14px;
    }
    .rr-cvl-feature-unit h4 {
        font-size: 14px;
    }
     .rr-dk-cvl-container {
        padding: 0 10px;
    }
    .rr-dk-cvl-info h3 {
        font-size: 18px;
    }
    .rr-dk-cvl-info p {
        font-size: 13px;
    }
    .rr-dk-gold {
        font-size: 30px;
    }
     .contact-hero-title {
        font-size: 26px;
    }
    
    .contact-hero-v2 {
        padding-top: 100px;
    }
}

/* Placeholder section */
.main-content { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.hero-text h2 { font-size: 2.5rem; color: var(--primary); }