:root {
    --primary-dark: #0B1F33;
    --secondary-dark: #16324F;
    --accent-orange: #FF6B00;
    --accent-yellow: #FFC107;
    --solar-green: #22C55E;
    --fire-red: #DC2626;
    --light-bg: #F4F7FA;
    --card-bg: #FFFFFF;
    --text-dark: #111827;
    --text-light: #6B7280;
    --border-color: #D1D5DB;
    --gradient-main: linear-gradient(135deg, #0B1F33, #16324F);
    --gradient-accent: linear-gradient(135deg, #FF6B00, #FFC107);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
}

/* --- Header Styling --- */
.main-header {
    background: var(--primary-dark);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 75px;
    border-radius: 5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color:var(--fire-red);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
}

.sub-text {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* --- Dropdown Styling --- */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li a {
    color: var(--primary-dark);
    padding: 12px 20px;
    display: block;
    font-size: 0.85rem;
}

.dropdown-content li a i {
    margin-right: 10px;
    color: var(--accent-orange);
}

.dropdown-content li a:hover {
    background: #f0f4f8;
    color: var(--primary-dark);
    padding-left: 25px;
}

/* --- Burger Menu --- */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: 0.3s;
}

/* --- Footer Styling --- */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 25px;
    color: var(--accent-orange);
    position: relative;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--secondary-dark);
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.contact-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col i {
    color: var(--accent-yellow);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #94a3b8;
}
/* home start============== */
/* --- Hero Section Styling --- */
.hero {
    position: relative;
    height: 90vh; /* Full screen height minus header */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--primary-dark);
}

/* Ken Burns Animation for Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('mecha.webp'); /* Modern Train/Railway Image */
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 31, 51, 0.9), rgba(11, 31, 51, 0.4));
    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;
}

/* Animations for Content */
.hero-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease backwards;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease backwards 0.2s;
}

.hero-title .highlight {
    color: var(--accent-yellow);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease backwards 0.4s;
}

/* Buttons Styling */
.hero-btns {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease backwards 0.6s;
}

.btn-main {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* Hero Stats Section */
.hero-stats {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 30px;
    z-index: 3;
}

.stat-item {
    text-align: center;
    border-left: 3px solid var(--accent-orange);
    padding-left: 15px;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.stat-text {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About Section Styling --- */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Side Styles */
.about-image-side {
    position: relative;
}

.image-box {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--secondary-dark);
    transition: 0.5s;
}

.image-box img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: 0.5s;
}

.image-box:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gradient-accent);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.exp-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Text Side Styles */
.section-subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-orange {
    color: var(--accent-orange);
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Features List */
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--solar-green);
}

.feature-info h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.founder-info strong {
    display: block;
    color: var(--primary-dark);
}

.founder-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-read-more {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-read-more:hover {
    gap: 15px;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
/* --- Services Area Styling --- */
.services-area {
    padding: 100px 0;
    background: #f0f4f8;
    perspective: 1000px; /* For 3D effects */
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-intro h4 {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.accent-text { color: var(--accent-orange); }

.line {
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 15px auto;
    border-radius: 2px;
}

/* Grid setup */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

/* Card Design */
.s-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
}

/* Hover Effect: Lift and Shadow */
.s-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(11, 31, 51, 0.15);
}

/* Image Box and Overlay */
.s-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.s-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.s-card:hover .s-img-box img {
    transform: scale(1.2) rotate(3deg);
}

.s-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: 0.4s;
}

.s-card:hover .s-overlay {
    opacity: 1;
}

/* Icon Glassmorphism */
.s-icon {
    position: absolute;
    bottom: -25px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    z-index: 5;
    transition: 0.5s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Dynamic Colors for Icons */
.s-card[data-color="navy"] .s-icon { background: var(--primary-dark); }
.s-card[data-color="blue"] .s-icon { background: var(--secondary-dark); }
.s-card[data-color="green"] .s-icon { background: var(--solar-green); }
.s-card[data-color="yellow"] .s-icon { background: var(--accent-yellow); color: #333; }
.s-card[data-color="orange"] .s-icon { background: var(--accent-orange); }
.s-card[data-color="red"] .s-icon { background: var(--fire-red); }

.s-card:hover .s-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Content Area */
.s-content {
    padding: 45px 30px 30px;
}

.s-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.s-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Animated Button */
.s-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    transition: 0.3s;
}

.s-btn i {
    transition: 0.3s;
    color: var(--accent-orange);
}

.s-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--accent-orange);
    transition: 0.3s;
}

.s-btn:hover {
    color: var(--accent-orange);
}

.s-btn:hover::after {
    width: 100%;
}

.s-btn:hover i {
    transform: translateX(5px);
}
/* --- Why Choose Us Styling (Dark Mode) --- */
.why-choose {
    background-color: var(--primary-dark);
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.wc-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.wc-tag {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.wc-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-yellow { color: var(--accent-yellow); }

.wc-desc {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Feature Grid */
.wc-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wc-item {
    display: flex;
    gap: 15px;
    transition: 0.3s;
}

.wc-icon-box {
    min-width: 50px;
    height: 50px;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.5rem;
    transition: 0.4s;
}

.wc-item:hover .wc-icon-box {
    background: var(--accent-orange);
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.wc-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #f8fafc;
}

.wc-text p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Visual Side: Experience Circle */
.wc-visual-side {
    display: flex;
    justify-content: center;
    position: relative;
}

.experience-circle {
    width: 250px;
    height: 250px;
    background: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.inner-circle {
    text-align: center;
    z-index: 5;
}

.inner-circle .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.inner-circle .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #cbd5e1;
}

/* Animated Rings */
.ring {
    position: absolute;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseRing 3s infinite;
}

.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 350px; height: 350px; animation-delay: 1s; }

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}
/* --- Contact Section Styling --- */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Info Cards */
.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-left: 5px solid var(--primary-dark);
}

.info-card:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-orange);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.info-text h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Form Styling */
.contact-form-side {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: 0.3s;
    background: #f9fafb;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-orange);
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

/* Map Styling */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    filter: grayscale(100%);
    transition: 1s;
}

.map-container:hover {
    filter: grayscale(0%);
}

/* home end======================= */
/* about start========================== */
/* --- About Hero Section --- */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 450px;
    background-image: url('mechb.webp'); /* Professional Track Image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.95) 0%, rgba(11, 31, 51, 0.7) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 5;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.breadcrumb a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

/* Typography Animation */
.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease forwards;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards 0.3s;
    opacity: 0;
}

/* Experience Box (Inside Hero) */
.hero-experience-box {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 30px;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

.exp-item {
    text-align: center;
}

.exp-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.exp-lab {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Keyframes */
@keyframes slideInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* --- Core Values Section Styling --- */
.core-values {
    padding: 100px 0;
    background: #0B1F33; /* Dark Industrial Navy */
    color: #fff;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Value Card Styling */
.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
    overflow: hidden;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.value-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.value-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-accent);
    transition: 0.5s;
}

/* Hover Effects */
.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.value-card:hover .value-number {
    color: rgba(255, 107, 0, 0.2);
}

.value-card:hover .value-border {
    width: 100%;
}

/* Mission Box */
.mission-statement {
    margin-top: 80px;
    background: var(--gradient-main);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.3);
    position: relative;
}

.mission-content i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1.4rem;
    font-style: italic;
    color: #f8fafc;
    max-width: 800px;
    margin: 0 auto 20px;
}

.mission-author {
    color: var(--accent-yellow);
    font-weight: 700;
    letter-spacing: 1px;
}
/* --- Trust Section Styling --- */
.trust-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: 0.3s;
}

.trust-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.trust-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-dark);
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.trust-info h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trust-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* --- Logo Slider Styling --- */
.partners-area {
    text-align: center;
}

.partner-title {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: calc(250px * 10); /* Adjust based on logo count */
    animation: scrollLogos 20s linear infinite;
}

.slide {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slide img {
    height: 50px;
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    transition: 0.3s;
    
}

.slide span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animation for Slider */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 5)); }
}

/* about end============================ */
/* /* mechaanical start======================= */
/* --- Mechanical Hero Specific Styles --- */
.mech-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #050c16; /* Fallback */
}

/* Background Image with Parallax effect */
.mech-bg-parallax {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1517420812314-8e119f936f9a?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    z-index: 1;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

.mech-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(11, 31, 51, 0.95) 30%, rgba(11, 31, 51, 0.4));
    z-index: 2;
}

.mech-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

/* Badge Animation */
.mech-badge {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.mech-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.mech-title .highlight {
    color: var(--accent-orange);
    display: inline-block;
}

.mech-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.6;
}

/* Buttons */
.mech-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-mech {
    background: var(--accent-orange);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-primary-mech:hover {
    background: #e66000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary-mech {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.btn-secondary-mech:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* Animated Gear Background */
.gear-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.1;
}

.gear {
    color: #fff;
    position: absolute;
}

.gear-1 { font-size: 150px; animation: rotate 15s linear infinite; }
.gear-2 { font-size: 80px; top: 100px; right: 100px; animation: rotateReverse 10s linear infinite; }

/* Stats Bar */
.mech-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.m-stat {
    display: flex;
    flex-direction: column;
}

.m-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.m-label {
    font-size: 0.9rem;
    color: #bbb;
}

/* Animations */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.anim-fade-up { animation: fadeUp 0.8s ease out forwards; opacity: 0; }
.anim-fade-up-delay-1 { animation: fadeUp 0.8s 0.2s ease forwards; opacity: 0; }
.anim-fade-up-delay-2 { animation: fadeUp 0.8s 0.4s ease forwards; opacity: 0; }
.anim-fade-up-delay-3 { animation: fadeUp 0.8s 0.6s ease forwards; opacity: 0; }
.anim-fade-up-delay-4 { animation: fadeUp 0.8s 0.8s ease forwards; opacity: 0; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Mechanical About Section Styles --- */
.mech-about {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.mech-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Visual Side Styles */
.mech-about-visual {
    position: relative;
}

.main-img-box {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: visible;
}

.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-img {
    position: absolute;
    bottom: -60px;
    /* right: -5px; */
    width: 200px;
    border: 8px solid #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    animation: floatAnim 4s ease-in-out infinite;
}

.experience-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-main);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 25px rgba(11, 31, 51, 0.3);
}

.experience-card h3 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    line-height: 1;
}

.bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: #f0f4f8;
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Content Side Styles */
.sub-heading {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.desc-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.mech-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.m-feature-item {
    display: flex;
    gap: 20px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.m-feature-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-orange);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.m-icon {
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.m-text h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.m-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-area {
    border-left: 3px solid var(--border-color);
    padding-left: 20px;
}

.quote-text {
    font-style: italic;
    color: var(--secondary-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.author-info strong {
    display: block;
    color: var(--primary-dark);
}

/* Animations */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
/* --- Triple Card Section Styles --- */
.premium-mech-services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.tagline {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-top: 10px;
}

/* Grid Layout */
.triple-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.p-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
}

.p-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image Box & Overlay */
.p-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.p-card:hover .p-img-box img {
    transform: scale(1.15);
}

.p-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11, 31, 51, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s;
}

.p-card:hover .p-overlay {
    opacity: 1;
}

.p-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(20px);
    transition: 0.4s 0.1s;
}

.p-card:hover .p-icon {
    transform: translateY(0);
}

/* Content Area */
.p-content {
    padding: 30px;
}

.p-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: 0.3s;
}

.p-card:hover h3 {
    color: var(--accent-orange);
}

.p-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.p-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.p-link:hover {
    gap: 12px;
    color: var(--accent-orange);
}
/* --- Trusted Section Styles --- */
.trust-section {
    padding: 100px 0;
    background: #0b1f33; /* Dark Professional Navy */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.trust-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 50%;
}

.trust-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.trust-tag {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.trust-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.trust-stats-grid {
    display: flex;
    gap: 40px;
}

.t-stat h4 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.t-stat p {
    color: #94a3b8;
    font-weight: 600;
}

/* Right Feature Cards */
.trust-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    cursor: pointer;
}

.t-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-orange);
}

.t-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.t-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.t-info p {
    font-size: 0.9rem;
    color: #94a3b8;
}
/* --- Work Process Section Styles --- */
.work-process {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
}

.process-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.p-tag {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.p-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 10px 0;
}

/* Steps Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    position: relative;
}

/* Step Number & Connecting Line */
.step-num-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 2;
    transition: 0.4s;
}

.step-line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #e2e8f0;
    left: 50%;
    z-index: 1;
}

/* Icon Styles */
.step-icon {
    font-size: 35px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    transition: 0.4s;
}

.step-info h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.step-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Hover Effects */
.step-card:hover .step-num {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.step-card:hover .step-icon {
    color: var(--accent-orange);
    transform: scale(1.2);
}

/*mechanical end================ */
/* Mobile Responsive */
@media screen and (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
    }

    .experience-badge {
        right: 10px;
    }

    .about-footer {
        flex-direction: column;
        gap: 20px;
    }
     .wc-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .wc-features-grid {
        grid-template-columns: 1fr;
    }

    .wc-item {
        flex-direction: column;
        align-items: center;
    }

    .wc-visual-side {
        margin-top: 80px;
    }
     .mech-about-wrapper { grid-template-columns: 1fr; gap: 80px; }
    .mech-about-visual { max-width: 500px; margin: 0 auto; }
     .triple-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 .trust-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .trust-title { font-size: 2.2rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .step-line { display: none; } /* Mobile par line hatana behtar hai */
}
/* --- Mobile Responsive (320px logic) --- */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 80px;
        background-color: var(--primary-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 40px;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        max-height: 400px;
    }

    .dropdown-content li a {
        color: #fff;
    }
    
    /* 320px specific optimization */
    .brand-name {
        font-size: 1rem;
    }
    .hero {
        height: auto;
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-container {
        display: flex;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-main, .btn-outline {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        right: 0;
        justify-content: center;
        margin-top: 40px;
    }
     .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 25px;
    }

 .about-hero {
        height: auto;
        padding: 100px 0 60px;
        text-align: center;
    }

    .breadcrumb {
        justify-content: center;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .hero-experience-box {
        padding: 15px 25px;
        gap: 15px;
    }
     .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-content p {
        font-size: 1.1rem;
    }
     .mech-hero { height: auto; padding: 120px 0 60px; }
    .mech-content { text-align: center; }
    .mech-btns { justify-content: center; }
    .mech-stats { justify-content: center; gap: 20px; }
    .gear-container { display: none; }
    .mech-overlay { background: rgba(11, 31, 51, 0.85); }
     .triple-card-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .title { font-size: 2rem; }
}

.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}

.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

@media screen and (max-width: 480px) {
    .services-wrapper {
        grid-template-columns: 1fr; /* Force 1 column */
        gap: 40px;
    }

    .s-card {
        max-width: 300px; /* Perfect for 320px screen width */
        margin: 0 auto;
    }

    .service-intro h2 {
        font-size: 1.8rem;
    }

    .s-img-box {
        height: 180px;
    }
     .wc-title {
        font-size: 1.8rem;
    }
    
    .experience-circle {
        width: 180px;
        height: 180px;
    }

    .inner-circle .number {
        font-size: 2.2rem;
    }
    
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 260px; height: 260px; }
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .logo-track {
        animation: scrollLogos 10s linear infinite; /* Faster on mobile for better feel */
    }
     .mech-title { font-size: 2.2rem; }
    .mech-desc { font-size: 1rem; }
    .btn-primary-mech, .btn-secondary-mech { width: 100%; justify-content: center; }
    .mech-stats { flex-direction: column; gap: 15px; align-items: center; }
    .main-heading { font-size: 2rem; }
    .floating-img { width: 140px; right: -10px; bottom: -20px; }
    .experience-card { padding: 15px; left: 0; top: -30px; }
    .experience-card h3 { font-size: 1.8rem; }
     .trust-section { padding: 60px 0; }
    .trust-title { font-size: 1.8rem; }
    .trust-stats-grid { gap: 20px; justify-content: space-between; }
    .t-stat h4 { font-size: 1.8rem; }
    .t-card { padding: 20px; }
     .p-title { font-size: 1.8rem; }
    .process-steps { grid-template-columns: 1fr; }
    .step-card { 
        display: flex; 
        text-align: left; 
        gap: 20px; 
        background: #f8fafc;
        padding: 20px;
        border-radius: 12px;
    }
    .step-num-box { margin-bottom: 0; }
    .step-icon { font-size: 25px; margin-bottom: 0; padding-top: 10px; }
}
@media screen and (max-width: 320px) {
    .hero-title {
        font-size: 1.7rem; /* Chhote phone ke liye perfect size */
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.7rem;
    }
    
    .btn-main, .btn-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
     .section-title {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .image-box {
        box-shadow: 10px 10px 0px var(--secondary-dark);
    }
    
    .experience-badge {
        padding: 10px;
        bottom: 10px;
    }
    
    .exp-num {
        font-size: 1.5rem;
    }
     .why-choose {
        padding: 60px 0;
    }
    
    .wc-title {
        font-size: 1.5rem;
    }

    .wc-desc {
        font-size: 0.9rem;
    }
     .wc-title {
        font-size: 1.6rem;
    }

    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .submit-btn {
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 250px; /* Chhote phone ke liye map height kam */
    }
     .about-hero-title {
        font-size: 1.7rem; /* Chhote mobile par perfect fit */
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-experience-box {
        flex-direction: column; /* Stack vertically for 320px */
        width: 100%;
    }

    .exp-divider {
        height: 1px;
        width: 100%;
    }
    .core-values {
        padding: 60px 0;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .mission-statement {
        padding: 40px 20px;
    }

    .mission-content p {
        font-size: 1rem;
    }
     .trust-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon-wrap {
        margin: 0 auto;
    }
    .mech-title { font-size: 1.8rem; }
    .mech-badge { font-size: 12px; padding: 6px 12px; }
    .m-num { font-size: 1.5rem; }
    .mech-about { padding: 60px 0; }
    .main-heading { font-size: 1.6rem; }
    .desc-text { font-size: 0.95rem; }
    .m-feature-item { flex-direction: column; text-align: center; }
    .m-icon { margin-bottom: 10px; }
    .floating-img { display: none; } /* Hide for extra small to avoid clutter */
    .experience-card { position: static; margin-bottom: 20px; width: 100%; }
     .p-content { padding: 20px; }
    .p-content h3 { font-size: 1.3rem; }
    .p-img-box { height: 180px; }
    .title { font-size: 1.6rem; }
    .p-link { font-size: 0.85rem; }
    .trust-title { font-size: 1.5rem; }
    .trust-desc { font-size: 0.95rem; }
    .t-card { flex-direction: column; text-align: center; }
    .t-icon-box { margin: 0 auto 15px; }
    .t-stat h4 { font-size: 1.5rem; }
     .step-card { 
        flex-direction: column; 
        text-align: center; 
        padding: 15px;
    }
    .step-num { width: 40px; height: 40px; font-size: 0.9rem; }
    .p-title { font-size: 1.5rem; }
    .step-info h4 { font-size: 1.1rem; }
}
