:root {
    --primary-navy: #123D82;      /* AKSV Blue */
    --accent-red: #F4B400;        /* AKSV Yellow */
    --light-gray: #FFD95A;        /* Light Yellow */
    --white: #ffffff;
    --dark-text: #2B2B2B;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Same theme aliases - root color apply everywhere */
    --dn-navy: var(--primary-navy);
    --dn-red: var(--accent-red);
    --dn-white: var(--white);
    --accent-green: var(--accent-red);
    --highlight-yellow: var(--light-gray);
    --gray-text: var(--dark-text);

    /* RGB helpers for transparent backgrounds/shadows */
    --primary-navy-rgb: 18, 61, 130;
    --accent-red-rgb: 244, 180, 0;
    --dark-text-rgb: 43, 43, 43;
}


/* For helper usage */
.text-accent { color: var(--light-gray); }
.text-red { color: var(--accent-red); }
.bg-navy { background-color: var(--primary-navy); }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
}

/* --- Enhanced Top Bar --- */
.top-bar {
    background: var(--primary-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 3px solid var(--accent-red);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee-slide 30s linear infinite;
}

.marquee-content span {
    padding: 0 40px;
}

.marquee-content i {
    color: var(--accent-red);
    margin-right: 8px;
}

@keyframes marquee-slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- Header & Navbar --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

/* --- Logo & Brand Animation --- */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-wrapper {
    width: 100px;
    height: 100px;
    /* background: var(--white); */
    /* border-radius: 12px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    transition: var(--transition);
}

/* .brand:hover .logo-wrapper {
    transform: rotate(10deg) scale(1.1);
} */

.main-logo {
    width: 90%;
    object-fit: contain;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 1200;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-navy), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: color-pulse 4s infinite;
}

.company-sub {
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: var(--dark-text);
    font-weight: 600;
}

/* --- Navigation Links --- */
.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Dropdown Style --- */
.dropdown-item {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 150%;
    left: -20px;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    list-style: none;
    padding: 15px 0;
    border-top: 4px solid var(--accent-red);
}

.dropdown-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown li a {
    padding: 12px 25px;
    display: block;
    text-decoration: none;
    color: var(--dark-text);
    font-size: 14px;
    transition: 0.3s;
}

.mega-dropdown li a i {
    width: 25px;
    color: var(--accent-red);
}

.mega-dropdown li a:hover {
    background: #fdf2f2;
    padding-left: 35px;
    color: var(--accent-red);
}

/* --- CTA Button --- */
.cta-btn {
    background: var(--accent-red);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-red);
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-red) !important;
    box-shadow: 0 5px 15px rgba(var(--accent-red-rgb), 0.3);
}

/* --- Mobile Styles --- */
.mobile-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 5px;
    transition: 0.4s;
}
/* --- Footer Styling --- */
.main-footer {
    background: var(--primary-navy);
    color: var(--white);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Wave Effect */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: var(--dn-white); 
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Columns Styling */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.f-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: white;
    padding: 5px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.col-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-red);
}

/* Social & Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-5px);
}

.f-links {
    list-style: none;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    text-decoration: none;
    color: #cbd5e0;
    font-size: 0.9rem;
    transition: 0.3s;
}

.f-links a:hover {
    color: var(--accent-red);
    padding-left: 8px;
}

/* Contact Info */
.f-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.f-contact i {
    color: var(--accent-red);
    margin-top: 5px;
}

.f-contact a {
    color: #cbd5e0;
    text-decoration: none;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-red);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

#scrollToTop:hover {
    transform: translateY(-5px);
    background: var(--primary-navy);
}
/* home start======================= */
/* --- Hero Section Styling --- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--primary-navy);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-effect 20s linear infinite alternate;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--primary-navy-rgb), 0.95) 30%, rgba(var(--primary-navy-rgb), 0.2) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.badge {
    background: var(--accent-red);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.text-accent {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e2e8f0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* Typing Animation Color */
.typewriter {
    color: var(--white);
    border-right: 3px solid var(--accent-red);
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
    border: 2px solid var(--accent-red);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 10px 20px rgba(var(--accent-red-rgb), 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-red);
}

.stat-label {
    font-size: 0.8rem;
    color: #cbd5e0;
}

/* Floating Icon Animation */
.floating-icon {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 100px;
    color: rgba(255,255,255,0.05);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* Keyframes */
@keyframes zoom-effect {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* --- About Section CSS --- */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Styling */
.about-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 25px 25px 0px -5px var(--primary-navy);
    transition: 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: translate(10px, 10px);
    box-shadow: 15px 15px 0px -5px var(--accent-red);
}

.exp-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-red);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(var(--accent-red-rgb), 0.4);
    animation: bounce 3s infinite;
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-card p {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Content Styling */
.about-text-content {
    flex: 1.2;
}

.section-tag {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-red {
    color: var(--accent-red);
}

.about-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.f-icon {
    width: 35px;
    height: 35px;
    background: rgba(var(--primary-navy-rgb), 0.05);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.95rem;
}

.read-more-btn {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.btn-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--accent-red);
    transition: 0.3s ease;
}

.read-more-btn:hover .btn-line {
    width: 100%;
}

/* --- Animations --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease;
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0) !important;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* --- Compact Services Styles --- */
.compact-services {
    padding: 80px 0;
    background: #ffffff;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.tag {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-section .title {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-top: 10px;
    font-weight: 800;
}

.red-text { color: var(--accent-red); }

/* Grid for Compact Cards */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row for better height control */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-card {
    display: flex; /* Horizontal Layout */
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 160px; /* FIXED SHORT HEIGHT */
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.c-img-box {
    position: relative;
    width: 40%; /* Reduced width for image */
    height: 100%;
}

.c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.c-icon-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(var(--accent-red-rgb), 0.9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: 0.3s;
}

.c-content {
    width: 60%;
    padding: 20px;
}

.c-content h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.c-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
}

.c-link {
    font-size: 0.8rem;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Hover Effects --- */
.c-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-red);
    box-shadow: 0 10px 25px rgba(var(--accent-red-rgb), 0.1);
}

.c-card:hover .c-img-box img {
    transform: scale(1.1);
    filter: grayscale(0.5);
}

.c-card:hover .c-icon-float {
    opacity: 1;
}
/* --- Balanced Moderate Service Style --- */
.mod-services {
    padding: 70px 0;
    background: #f9f9f9;
}

.mod-header {
    text-align: center;
    margin-bottom: 40px;
}

.mod-tag {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.mod-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    font-weight: 800;
}

.mod-title .accent { color: var(--accent-red); }

/* Compact Grid */
.mod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns Desktop */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.mod-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mod-thumb {
    height: 140px; /* Reduced height for image */
    position: relative;
    overflow: hidden;
}

.mod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.mod-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--accent-red);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(var(--accent-red-rgb), 0.3);
}

.mod-body {
    padding: 20px 15px;
    text-align: center;
}

.mod-body h3 {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.mod-body p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

/* --- Hover State --- */
.mod-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 25px rgba(var(--primary-navy-rgb), 0.1);
}

.mod-card:hover .mod-thumb img {
    transform: scale(1.1);
}

.mod-card:hover .mod-icon {
    background: var(--primary-navy);
    transform: rotateY(180deg);
}

/* --- Extra Content Specific Styles --- */

.mod-subtitle {
    max-width: 600px;
    margin: 10px auto 0;
    color: #64748b;
    font-size: 0.95rem;
}

.mod-body .main-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    height: 40px; /* Limits text height to keep cards uniform */
    overflow: hidden;
}

.card-list {
    list-style: none;
    padding: 0;
    text-align: left; /* Better readability for lists */
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: 10px;
}

.card-list li {
    font-size: 0.8rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.card-list li i {
    color: var(--accent-red);
    font-size: 0.7rem;
}
/* --- Why Choose Us Dark Mode Styles --- */
.dark-choose-section {
    background-color: var(--primary-navy); /* var(--primary-navy) */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dark-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.dark-tag {
    color: var(--accent-red); /* var(--accent-red) */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.dark-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}

.red-span {
    color: var(--accent-red);
}

.red-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Dark Card Grid */
.dark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choose-card {
    background: rgba(255, 255, 255, 0.03); /* Glassmorphism Base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--accent-red-rgb), 0.1);
    color: var(--accent-red);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    transition: 0.5s;
    border: 1px solid rgba(var(--accent-red-rgb), 0.2);
}

.choose-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.choose-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Hover Effects --- */
.choose-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-red);
}

.choose-card:hover .card-icon {
    background: var(--accent-red);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(var(--accent-red-rgb), 0.4);
}

/* Background Glow on Hover */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--accent-red-rgb), 0.15), transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
    border-radius: 20px;
}

.choose-card:hover .card-glow {
    opacity: 1;
}
/* --- Contact & Map Section Styles --- */
.contact-map-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Form is slightly wider */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(var(--primary-navy-rgb), 0.08);
}

/* Details & Form Side */
.contact-details {
    padding: 50px;
}

.sec-head .tag {
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.sec-head h2 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin: 10px 0 20px;
}

.red-text { color: var(--accent-red); }

.quick-info {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.q-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    font-size: 0.95rem;
}

.q-item i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

/* Compact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f8fafc;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--accent-red);
    background: #fff;
}

.send-btn {
    background: var(--primary-navy);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.send-btn:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

/* Map Side */
.map-wrapper {
    position: relative;
    min-height: 450px;
    background: #eee;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-navy);
}

.map-overlay i { color: var(--accent-red); }

/* home end========================= */
/* about start============= */
/* --- Unique Hero Styles (Prefix: dn-) --- */
/* dn colors are mapped in main :root above */

.dn-hero-area {
    position: relative;
    height: 70vh;
    min-height: 450px;
    background-color: var(--dn-navy);
    background-image: url('build1.jpg'); /* Professional Construction BG */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Dark Mask with Animation */
.dn-hero-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(var(--primary-navy-rgb), 0.9), rgba(var(--primary-navy-rgb), 0.7));
    z-index: 1;
}

.dn-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Badge Styling */
.dn-hero-tag {
    color: var(--dn-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Heading with Reveal Effect */
.dn-hero-title {
    color: var(--dn-white);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.dn-red-text {
    color: var(--dn-red);
}

.dn-hero-divider {
    width: 0; /* Animated to 80px */
    height: 4px;
    background: var(--dn-red);
    margin: 20px auto;
    border-radius: 2px;
    transition: width 1s ease 0.8s;
}

.dn-hero-subtext {
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Animations --- */
.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.dn-hero-area.dn-loaded .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Delays for Staggered Effect */
.dn-hero-area.dn-loaded .dn-hero-tag { transition-delay: 0.2s; }
.dn-hero-area.dn-loaded .dn-hero-title span:nth-child(1) { transition-delay: 0.4s; }
.dn-hero-area.dn-loaded .dn-hero-title span:nth-child(2) { transition-delay: 0.5s; }
.dn-hero-area.dn-loaded .dn-hero-title span:nth-child(3) { transition-delay: 0.6s; }
.dn-hero-area.dn-loaded .dn-hero-divider { width: 80px; }
.dn-hero-area.dn-loaded .dn-hero-subtext { transition-delay: 1s; }

/* --- About Section Unique Styles (dn-about-) --- */


/* --- About Section Unique Styles (dn-about-) --- */
.dn-about-sec {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.dn-about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.dn-about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Box Styling */
.dn-about-img-box {
    flex: 1;
    position: relative;
}

.dn-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--highlight-yellow); /* Root light border accent */
    box-shadow: 0 15px 35px rgba(var(--primary-navy-rgb), 0.2);
}

.dn-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.dn-year-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--accent-green); /* Root accent color */
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(var(--accent-red-rgb), 0.3);
}

.dn-year-badge .dn-big { font-size: 2rem; font-weight: 800; }
.dn-year-badge .dn-small { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; line-height: 1.2; }

/* Content Styling */
.dn-about-text { flex: 1.2; }
.dn-sub-title { color: var(--accent-green); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; }
.dn-main-title { font-size: 2.2rem; color: var(--primary-navy); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.dn-accent { color: var(--accent-green); }
.dn-description { color: var(--gray-text); font-size: 1rem; line-height: 1.7; margin-bottom: 30px; }

/* Mission Vision Cards */
.dn-vision-mission { display: flex; flex-direction: column; gap: 20px; }
.dn-vm-card { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    padding: 15px; 
    border-radius: 12px; 
    background: #f1f8f4; /* Light Greenish background */
    transition: var(--transition); 
    border-left: 4px solid var(--highlight-yellow); /* Root light accent */
}

.dn-vm-card:hover { 
    background: var(--primary-navy); 
    color: white; 
    transform: translateX(10px); 
}

.dn-vm-icon { font-size: 1.5rem; color: var(--accent-green); margin-top: 5px; }
.dn-vm-card:hover .dn-vm-icon { color: var(--highlight-yellow); }
.dn-vm-info h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.dn-vm-info p { font-size: 0.85rem; opacity: 0.8; }

/* --- Reveal Animations --- */
.dn-reveal-left { opacity: 0; transform: translateX(-50px); transition: 1s ease; }
.dn-reveal-right { opacity: 0; transform: translateX(50px); transition: 1s ease; }
.dn-active { opacity: 1; transform: translate(0); }

/* --- Trusted Section Unique Styles (dn-tr-) --- */
.dn-tr-section {
    padding: 80px 0;
    background-color: var(--primary-navy); /* Root navy */
    color: #ffffff;
    overflow: hidden;
}

.dn-tr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dn-tr-header {
    text-align: center;
    margin-bottom: 50px;
}

.dn-tr-badge {
    color: var(--highlight-yellow); /* Root light badge */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.dn-tr-title {
    font-size: 2.5rem;
    margin: 15px 0;
    font-weight: 800;
    color: var(--light-gray);
}

.dn-tr-red { color: var(--accent-green); } /* Root accent color */

.dn-tr-subtitle {
    color: #cbd5e0;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.dn-tr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dn-tr-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.dn-tr-card:hover {
    background: rgba(var(--accent-red-rgb), 0.1); /* Vibrant Green tint */
    transform: translateY(-10px);
    border-color: var(--highlight-yellow); /* Yellow Border on hover */
}

.dn-tr-icon {
    font-size: 2.5rem;
    color: var(--accent-green); /* Vibrant Green Icon */
    margin-bottom: 20px;
    transition: 0.4s;
}

.dn-tr-card:hover .dn-tr-icon {
    transform: scale(1.2);
    color: var(--highlight-yellow);
}

.dn-tr-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
}

.dn-tr-label {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Reveal Animations --- */
.dn-tr-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.dn-tr-active {
    opacity: 1;
    transform: translateY(0);
}

/* about end================= */
/* transport start================ */
/* --- Transport Hero Section CSS --- */
.transport-hero {
    position: relative;
    height: 100vh;
    min-height: 560px; /* Ensures enough height on 320px screens */
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-color: var(--primary-navy);
}

.transport-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.transport-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slight dim for text readability */
}

.transport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--primary-navy-rgb), 0.85) 0%, rgba(var(--primary-navy-rgb), 0.4) 100%);
    z-index: 2;
}

.transport-container {
    position: relative;
    z-index: 3;
    padding: 0 15px;
    margin: auto;
}

.transport-content {
    max-width: 600px;
}

/* Badge Styling */
.badge-mini {
    display: inline-flex;
    align-items: center;
    background: var(--accent-red);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.badge-mini i { margin-right: 8px; }

/* Responsive Title */
.transport-title {
    font-size: clamp(28px, 8vw, 56px); /* Fluid typography for 320px */
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
}

.text-red { color: var(--accent-red); }

.transport-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 90%;
}

/* CTA Buttons */
.transport-cta-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Important for 320px screens */
}

.t-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
}

.t-btn-red {
    background: var(--accent-red);
    color: white;
}

.t-btn-outline {
    border: 2px solid white;
    color: white;
}

/* Mini Features for Mobile */
.mini-features {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.m-feat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.m-feat i {
    color: var(--accent-red);
    font-size: 20px;
}

.m-feat span {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Variables */
/* :root {
    --navy: var(--primary-navy);
    --red: var(--accent-red);
    --white: #ffffff;
    --text-muted: #555;
    --curve: cubic-bezier(0.68, -0.55, 0.27, 1.55);
} */

/* --- Root Variables Applied: using main :root colors above --- */
.tr-about {
    padding: 80px 0;
    overflow: hidden;
    background: var(--white);
}

.tr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tr-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* --- Visual Side (Left) --- */
.tr-visual-box {
    position: relative;
    padding: 20px;
}

.image-reveal-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(var(--primary-navy-rgb), 0.15); /* Updated to Navy shadow */
}

.tr-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-reveal-wrapper:hover .tr-main-img {
    transform: scale(1.1);
}

.tr-shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background: var(--light-gray); /* Updated to Yellow Shape */
    z-index: 1;
    border-radius: 10px;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--accent-red); /* Updated to Green Badge */
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(var(--accent-red-rgb), 0.3); /* Updated to Green shadow */
}

.floating-badge i { font-size: 24px; }

/* --- Content Side (Right) --- */
.tr-tag {
    color: var(--accent-red); /* Root accent color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.tr-title {
    font-size: 38px;
    color: var(--primary-navy); /* Updated to Navy */
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.text-accent { color: var(--accent-red); } /* Highlight text in Green */

.tr-text {
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tr-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.tr-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-left: 4px solid var(--light-gray); /* Highlight border in Yellow */
    background: #f9f9f9;
    transition: var(--transition);
}

.tr-feat-item:hover {
    background: var(--primary-navy); /* Root navy hover */
    color: white;
    transform: translateX(10px);
}

.tr-feat-icon {
    font-size: 25px;
    color: var(--accent-red); /* Root accent icon */
}

.tr-feat-item:hover .tr-feat-icon,
.tr-feat-item:hover .tr-feat-text p {
    color: var(--light-gray); /* Root light hover text */
}

.tr-feat-text h4 { margin-bottom: 2px; font-size: 16px; }
.tr-feat-text p { font-size: 13px; color: #777; }

.tr-btn-main {
    background: var(--primary-navy); /* Navy Button */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.tr-btn-main:hover {
    background: var(--accent-red); /* Root accent hover */
    box-shadow: 0 10px 20px rgba(var(--accent-red-rgb), 0.2);
}

/* --- Trust Stats Background --- */
.trust-stats {
    padding: 80px 0;
    background-color: var(--white); /* Background Golden Yellow */
    overflow: hidden;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.anime-float { animation: float 3s ease-in-out infinite; }

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.dn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.dn-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.dn-badge {
    color: var(--accent-red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.dn-title {
    color: var(--primary-navy);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.dn-red-text { color: var(--accent-red); }

.dn-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin: 15px auto;
}

.dn-subtitle {
    color: var(--dark-text);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* Grid & Cards */
.dn-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.dn-stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(var(--primary-navy-rgb), 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    animation: dn-fade-up 0.8s forwards ease-out;
    border-color: var(--light-gray);
}

.dn-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(var(--primary-navy-rgb), 0.1);
}

/* Icon & Pulse Animation */
.dn-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    z-index: 1;
    transition: var(--transition);
}

.dn-stat-card:hover .dn-icon-wrapper {
    background: var(--accent-red);
    transform: rotateY(360deg);
}

.dn-pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: dn-pulse 2s infinite;
}

.dn-stat-card:hover .dn-pulse-effect {
    background: var(--accent-red);
}

@keyframes dn-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Text Content */
.dn-count {
    color: var(--primary-navy);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.dn-label {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
}

.dn-desc {
    color: var(--dark-text);
    font-size: 14px;
    line-height: 1.5;
}

/* Entrance Animation */
@keyframes dn-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Root Variables Applied --- */

.tp-services {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.tp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Section */
.tp-header {
    text-align: center;
    margin-bottom: 50px;
}

.tp-tag {
    color: var(--accent-red); /* Root accent color */
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.tp-title {
    font-size: clamp(26px, 5vw, 42px);
    color: var(--primary-navy); /* Root navy color */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.tp-title .accent { 
    color: var(--light-gray); /* Updated to Golden Yellow for contrast */
}

.tp-divider {
    width: 50px;
    height: 4px;
    background: var(--accent-red); /* Root accent color */
    margin: 15px auto;
}

.tp-subtitle {
    color: var(--dark-text); /* Updated to Dark Gray-ish Text */
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    opacity: 0.85;
}

/* Grid & Cards */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tp-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--primary-navy-rgb), 0.08); /* Subtle Navy shadow */
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(var(--primary-navy-rgb), 0.05);
}

.tp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(var(--primary-navy-rgb), 0.15); /* Stronger shadow on hover */
}

/* Image & Icon Circle */
.tp-img-box {
    position: relative;
    height: 200px;
}

.tp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.tp-card:hover .tp-img-box img {
    transform: scale(1.1);
}

.tp-icon-circle {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-red); /* Root accent color */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 4px solid var(--white);
    z-index: 5;
    transition: 0.5s var(--transition);
}

.tp-card:hover .tp-icon-circle {
    background: var(--primary-navy); /* Hover changes to Deep Navy */
    transform: rotateY(360deg);
    color: var(--light-gray); /* Icon becomes Golden Yellow */
}

/* Content */
.tp-content {
    padding: 40px 20px 25px;
}

.tp-content h3 {
    color: var(--primary-navy); /* Updated to Navy Green */
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.tp-content p {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.tp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tp-list li {
    font-size: 13px;
    color: var(--primary-navy); /* List text in Navy */
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-list li i { 
    color: var(--accent-red); /* Tick icon in Green */
}

.tp-link {
    text-decoration: none;
    color: var(--accent-red); /* Updated to Green link */
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.tp-link:hover { 
    color: var(--primary-navy);
    gap: 10px; 
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide {
    opacity: 0;
    animation: fadeInUp 0.8s forwards ease-out;
}
/* transport end================== */
/* contact======================= */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 15px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(var(--primary-navy-rgb), 0.9), rgba(var(--primary-navy-rgb), 0.7));
}

.hero-content-wrapper { position: relative; z-index: 2; }

.hero-badge {
    background: var(--accent-red);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
}

.hero-main-title {
    font-size: clamp(28px, 6vw, 48px);
    margin: 20px 0;
    font-weight: 800;
    line-height: 1.1;
}

.text-red { color: var(--accent-red); }

.hero-subtext {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    opacity: 0.9;
}

/* --- MAIN CONTACT AREA --- */
.contact-main {
    background: var(--white);
    padding: 80px 0;
}

.dn-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

/* Sidebar Info */
.info-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    
}

.info-item:hover { transform: scale(1.03); border-left: 5px solid var(--accent-red); }

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.info-text h4 { color: var(--primary-navy); margin-bottom: 5px; }
.info-text p { font-size: 14px; color: #666; }

.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    background: var(--primary-navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--accent-red); transform: rotate(360deg); }

/* Premium Form */
.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(var(--primary-navy-rgb), 0.1);
}

.form-title h3 { font-size: 28px; color: var(--primary-navy); }
.short-line { width: 50px; height: 4px; background: var(--accent-red); margin: 15px 0 40px; }

.form-row { position: relative; margin-bottom: 35px; }

/* Material Design Inputs */
.input-field input, .input-field textarea, .select-field select {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
}

.input-field label, .select-field label {
    position: absolute;
    top: 10px; left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
}

.input-field input:focus ~ label, .input-field input:valid ~ label,
.input-field textarea:focus ~ label, .input-field textarea:valid ~ label,
.select-field select:focus ~ label, .select-field select:valid ~ label {
    top: -20px; font-size: 13px; color: var(--accent-red); font-weight: 700;
}

.bar { position: relative; display: block; width: 100%; }
.bar:before {
    content: ''; height: 2px; width: 0;
    position: absolute; bottom: 0; left: 50%;
    background: var(--accent-red);
    transition: 0.4s ease all;
}

.input-field input:focus ~ .bar:before, .select-field select:focus ~ .bar:before {
    width: 100%; left: 0;
}

.submit-premium-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-premium-btn:hover { background: var(--accent-red); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(var(--accent-red-rgb), 0.3); }

/* Responsive at 320px and above */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 125px;
        background: var(--white);
        width: 80%;
        height: 100vh;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s;
        padding: 40px;
    }

    .nav-menu.active { right: 0; }

    .nav-list { flex-direction: column; align-items: flex-start; }

    .mobile-toggle { display: block; }
    
    .mega-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown-item.active .mega-dropdown { display: block; }
      .about-flex { flex-direction: column; gap: 60px; }
    .about-img { height: 400px; box-shadow: 15px 15px 0px -5px var(--primary-navy); }
    .section-title { font-size: 2.2rem; }
    .mod-card {
        display: flex;
        flex-direction: column;
    }
    .mod-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
     .dark-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; border-radius: 0; }
    .map-wrapper { min-height: 350px; order: 2; }
    .contact-details { order: 1; padding: 40px 25px; }
    .dn-about-grid { flex-direction: column; text-align: center; }
    .dn-vm-card { text-align: left; }
    .dn-year-badge { right: 50%; transform: translateX(50%); bottom: -20px; }
    .dn-tr-grid { grid-template-columns: repeat(2, 1fr); }
      .tr-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .tr-visual-box { max-width: 500px; margin: 0 auto; order: 2; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-sidebar { order: 2; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .bottom-container { justify-content: center; text-align: center; }
     .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 20px; }
     .dn-hero-title { font-size: 2.5rem; }
    .dn-hero-area { height: 60vh; }
}


@media (max-width: 480px) {
    .company-name { font-size: 1.1rem; }
    .company-sub { font-size: 0.55rem; letter-spacing: 1px; }
    .nav-container { padding: 10px; }
    .hero { height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; }
    .floating-icon { display: none; }
    .section-title { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .exp-card { right: 0; padding: 15px; }
    .exp-num { font-size: 2rem; }
      .dark-grid { grid-template-columns: 1fr; }
    .dark-title { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .sec-head h2 { font-size: 1.8rem; }
    .dn-main-title { font-size: 1.8rem; }
    .dn-tr-title { font-size: 1.8rem; }
    .dn-tr-grid { grid-template-columns: 1fr; gap: 20px; }
     .tr-about { padding: 50px 0; }
    .tr-title { font-size: 26px; }
    .tr-text { font-size: 14px; }
    .floating-badge {
        padding: 10px 15px;
        right: 0;
        bottom: 10px;
        font-size: 12px;
    }
    .tr-feat-item { padding: 10px; }
    .tr-btn-main { width: 100%; justify-content: center; }
    .contact-hero { height: 50vh; }
    .contact-form-box { padding: 30px 20px; }
    .form-title h3 { font-size: 22px; }
}

/* Animations */
@keyframes color-pulse {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
    100% { filter: hue-rotate(0deg); }
}
@media (max-width: 320px) {
    .footer-brand h3 { font-size: 1.2rem; }
    .f-logo { width: 40px; height: 40px; }
     .hero-title { font-size: 1.6rem; }
    .btn { padding: 12px 20px; font-size: 14px; }
    .stat-num { font-size: 1.4rem; }
    .about-section { padding: 60px 0; }
    .section-title { font-size: 1.4rem; }
    .about-img { height: 250px; }
    .exp-card { bottom: -20px; }
    .about-desc { font-size: 0.9rem; }
    .card-list li { font-size: 0.75rem; }
    .mod-body h3 { font-size: 1.1rem; }
     .dark-choose-section { padding: 60px 0; }
    .dark-title { font-size: 1.5rem; }
    .choose-card { padding: 30px 15px; }
    .choose-card h3 { font-size: 1.1rem; }
    .choose-card p { font-size: 0.8rem; }
     .contact-details { padding: 30px 15px; }
    .sec-head h2 { font-size: 1.4rem; }
    .q-item p { font-size: 0.8rem; }
    .send-btn { font-size: 0.9rem; }
     .dn-hero-title { font-size: 1.6rem; }
    .dn-hero-subtext { font-size: 0.85rem; }
    .dn-hero-tag { letter-spacing: 2px; font-size: 0.7rem; }
    .dn-hero-area { min-height: 400px; }
     .dn-about-sec { padding: 50px 0; }
    .dn-main-title { font-size: 1.4rem; }
    .dn-description { font-size: 0.9rem; }
    .dn-vm-card { padding: 10px; gap: 10px; }
    .dn-vm-info h5 { font-size: 1rem; }
    .dn-year-badge { padding: 10px 15px; }
    .dn-year-badge .dn-big { font-size: 1.5rem; }
     .dn-tr-section { padding: 60px 0; }
    .dn-tr-title { font-size: 1.4rem; }
    .dn-tr-number { font-size: 2rem; }
    .dn-tr-card { padding: 30px 15px; }
     .transport-hero {
        padding-top: 80px; /* Space for fixed header */
        height: auto;
        padding-bottom: 50px;
    }
    
    .transport-title {
        font-size: 26px; /* Optimized size for 320px */
    }

    .transport-cta-group {
        flex-direction: column; /* Stack buttons on very small screens */
    }

    .t-btn {
        text-align: center;
        width: 100%;
    }
    
    .transport-desc {
        font-size: 13px;
    }
     .tr-title { font-size: 22px; }
    .tr-tag { font-size: 11px; }
    .trust-stats { padding: 50px 0; }
    
    .dn-stats-grid {
        grid-template-columns: 1fr; /* Force 1 column */
        gap: 20px;
    }

    .dn-stat-card { padding: 30px 20px; }
    
    .dn-count { font-size: 28px; }
    
    .dn-title { font-size: 22px; }

    .dn-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
     .hero-main-title { font-size: 24px; }
    .info-item { padding: 15px; gap: 10px; }
    .info-icon { width: 40px; height: 40px; font-size: 16px; }
    .submit-premium-btn { font-size: 14px; }
}