/* ============================================
   RTO INDIA ONLINE - PREMIUM STYLESHEET
   Domain: rtoindiaonline.com
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0f1b61;
    --primary-light: #1a2d8a;
    --primary-dark: #080e3a;
    --secondary: #f7941d;
    --secondary-light: #ffb347;
    --secondary-dark: #e07c00;
    --accent: #00bfa5;
    --accent-light: #1de9b6;
    --accent-dark: #00897b;
    --success: #00c853;
    --danger: #ff1744;
    --warning: #ffab00;
    --info: #00b0ff;
    --dark: #0a0e27;
    --gray-900: #141832;
    --gray-800: #1e2243;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f8f9fe;
    --white: #ffffff;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0f1b61 0%, #1a2d8a 40%, #0d47a1 100%);
    --gradient-secondary: linear-gradient(135deg, #f7941d 0%, #ffb347 100%);
    --gradient-accent: linear-gradient(135deg, #00bfa5 0%, #1de9b6 100%);
    --gradient-hero: linear-gradient(160deg, rgba(15, 27, 97, 0.95) 0%, rgba(26, 45, 138, 0.88) 40%, rgba(13, 71, 161, 0.82) 70%, rgba(0, 137, 123, 0.78) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #141832 50%, #1e2243 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(247, 148, 29, 0.08) 0%, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(0, 191, 165, 0.06) 0%, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(15, 27, 97, 0.05) 0%, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 27, 97, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 27, 97, 0.08);
    --shadow-lg: 0 10px 40px rgba(15, 27, 97, 0.1);
    --shadow-xl: 0 25px 60px rgba(15, 27, 97, 0.14);
    --shadow-glow: 0 0 30px rgba(247, 148, 29, 0.15);
    --shadow-card: 0 8px 32px rgba(15, 27, 97, 0.06);

    /* Borders */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
}

/* ---------- Base Styles ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
	overflow-x:hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--secondary); }

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

::selection {
    background: var(--secondary);
    color: var(--white);
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 148, 29, 0.08);
    color: var(--secondary-dark);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(247, 148, 29, 0.15);
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-title h2 .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 620px;
    margin: 25px auto 0;
}

.bg-light-custom {
    background: var(--gray-100);
    background-image: var(--gradient-mesh);
}

.bg-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
}

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(247, 148, 29, 0.35);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 148, 29, 0.45);
    color: var(--white);
}

.btn-secondary-custom {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 27, 97, 0.2);
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.83rem;
    z-index: 1001;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    font-weight: 400;
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    margin-left: 6px;
    font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.06);
}

.top-bar .social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 0;
    transition: var(--transition);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.96);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.navbar-brand .logo-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 27, 97, 0.25);
}

.navbar-brand .logo-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.navbar-brand .brand-text {
    line-height: 1.15;
}

.navbar-brand .brand-text .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.navbar-brand .brand-text .brand-tagline {
    font-size: 0.68rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar .nav-link {
    color: var(--gray-800) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 26px 16px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

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

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
    transform-origin: center;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 60%;
}

.navbar .btn-apply {
    background: var(--gradient-secondary);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    padding: 10px 26px !important;
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
    font-size: 0.88rem;
}

.navbar .btn-apply::after {
    display: none !important;
}

.navbar .btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
}

/* Dropdown Menus */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(15, 27, 97, 0.12);
    border-radius: var(--radius-md);
    padding: 12px 0;
    margin-top: 0;
    min-width: 280px;
    animation: dropdownFade 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

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

.navbar .dropdown-item {
    padding: 11px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 0;
}

.navbar .dropdown-item i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.06) 0%, rgba(0, 191, 165, 0.04) 100%);
    color: var(--primary);
    padding-left: 30px;
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

/* Animated background shapes */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.06) 0%, transparent 70%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-content .badge-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.12);
    letter-spacing: 0.5px;
}

.hero-content .badge-text i {
    color: var(--secondary);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.18rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

.hero-stat .number {
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .label {
    font-size: 0.83rem;
    opacity: 0.75;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgb(188 212 234 / 19%);
    border: 1px solid #bcd5eb;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-floating-card.card-1 {
    top: 18%;
    right: -25px;
}

.hero-floating-card.card-2 {
    bottom: 18%;
    left: -25px;
    animation-delay: 2s;
}

.hero-floating-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-floating-card .card-info h5 {
    font-size: 0.88rem;
    margin-bottom: 2px;
    color: var(--dark);
}

.hero-floating-card .card-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
}

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

/* Page Hero (Inner Pages) */
.page-hero {
    position: relative;
    padding: 140px 0 90px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

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

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.12rem;
    max-width: 600px;
}

.page-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-top: 22px;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--secondary);
}

.page-hero .breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 600;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ---------- Services Cards ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 38px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    transform: translate(30%, 30%);
}

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

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

.service-card:hover::after {
    transform: translate(20%, 20%) scale(1.5);
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    transition: var(--transition);
    position: relative;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotateY(180deg);
    border-radius: 50%;
}

.service-card h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .card-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

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

/* Icon Colors */
.icon-blue { background: rgba(15, 27, 97, 0.08); color: var(--primary); }
.icon-orange { background: rgba(247, 148, 29, 0.08); color: var(--secondary); }
.icon-teal { background: rgba(0, 191, 165, 0.08); color: var(--accent); }
.icon-red { background: rgba(255, 23, 68, 0.08); color: var(--danger); }
.icon-green { background: rgba(0, 200, 83, 0.08); color: var(--success); }
.icon-purple { background: rgba(123, 31, 162, 0.08); color: #7b1fa2; }
.icon-cyan { background: rgba(0, 176, 255, 0.08); color: var(--info); }
.icon-amber { background: rgba(255, 171, 0, 0.08); color: var(--warning); }
.icon-indigo { background: rgba(48, 63, 159, 0.08); color: #303f9f; }
.icon-brown { background: rgba(109, 76, 65, 0.08); color: #6d4c41; }

/* ---------- Why Choose Us ---------- */
.why-choose-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.why-choose-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: transparent;
}

.why-choose-card .number {
    width: 52px;
    height: 52px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.25);
}

.why-choose-card h4 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.why-choose-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ---------- Process Steps ---------- */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step .step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(15, 27, 97, 0.2);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(15, 27, 97, 0.3);
}

.process-step .step-number {
    position: absolute;
    top: -6px;
    right: calc(50% - 55px);
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(247, 148, 29, 0.3);
    border: 3px solid var(--white);
}

.process-step h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray-600);
}

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

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.05);
    animation: statGlow 6s ease-in-out infinite alternate;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 191, 165, 0.04);
}

@keyframes statGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 25px;
    position: relative;
    z-index: 1;
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: var(--secondary);
    opacity: 0.9;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1.1;
    letter-spacing: -1px;
}

.stat-item .stat-label {
    font-size: 0.92rem;
    opacity: 0.8;
    margin-top: 8px;
    font-weight: 400;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 38px;
    position: relative;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-card .quote-icon {
    font-size: 3.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: 22px;
    right: 28px;
}

.testimonial-card .rating {
    color: var(--secondary);
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.testimonial-card .rating i {
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-card .client-info img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-200);
}

.testimonial-card .client-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card .client-info span {
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-primary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.08);
    top: -150px;
    right: -100px;
    animation: ctaPulse 5s ease-in-out infinite alternate;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 191, 165, 0.06);
    bottom: -100px;
    left: -100px;
}

@keyframes ctaPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.cta-section p {
    color: rgba(255,255,255,0.82);
    font-size: 1.12rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ---------- FAQ Section ---------- */
.faq-section .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-section .accordion-item:hover {
    border-color: rgba(247, 148, 29, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    padding: 20px 28px;
    background: var(--white);
    box-shadow: none;
    letter-spacing: -0.1px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--gray-100);
    color: var(--primary);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--secondary);
    transition: var(--transition);
    width: auto;
    height: auto;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-section .accordion-body {
    padding: 22px 28px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.9;
}

/* ---------- Contact Section ---------- */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: transparent;
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover .icon {
    border-radius: 50%;
    transform: rotateY(180deg);
}

.contact-card h5 {
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 42px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 20px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 27, 97, 0.08);
    background: var(--white);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gradient-dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

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

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-secondary);
}

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

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.footer .footer-about p {
    font-size: 0.88rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

.footer .footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer .footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    font-size: 0.78rem;
    transition: var(--transition);
}

.footer .footer-links li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer .footer-contact li {
    list-style: none;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.88rem;
}

.footer .footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    width: 18px;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.83rem;
}

/* ---------- About Page ---------- */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper .experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(247, 148, 29, 0.3);
    border: 4px solid var(--white);
}

.about-image-wrapper .experience-badge .number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.about-image-wrapper .experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--accent);
    font-size: 1.05rem;
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.team-card .team-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.team-card .team-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 27, 97, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-img::after {
    opacity: 1;
}

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

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-card .team-info {
    padding: 22px;
}

.team-card .team-info h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.team-card .team-info span {
    font-size: 0.83rem;
    color: var(--secondary);
    font-weight: 600;
}

/* ---------- Service Detail Page ---------- */
.service-detail-content {
    padding-right: 30px;
}

.service-detail-content h3 {
    color: var(--primary);
    margin-bottom: 16px;
    margin-top: 35px;
    font-weight: 700;
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content ul {
    padding-left: 0;
    list-style: none;
}

.service-detail-content ul li {
    padding: 9px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}

.service-detail-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.95rem;
}

/* Sidebar */
.service-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-sidebar .sidebar-widget:hover {
    box-shadow: var(--shadow-sm);
}

.service-sidebar .sidebar-widget h4 {
    font-size: 1.08rem;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-200);
}

.service-sidebar .service-list li {
    list-style: none;
    margin-bottom: 6px;
}

.service-sidebar .service-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.service-sidebar .service-list li a:hover,
.service-sidebar .service-list li a.active {
    background: var(--gradient-primary);
    color: var(--white);
    padding-left: 20px;
}

.service-sidebar .service-list li a i {
    font-size: 0.72rem;
}

.sidebar-cta {
    background: var(--gradient-primary) !important;
    color: var(--white);
    text-align: center;
    border: none !important;
    box-shadow: 0 10px 30px rgba(15, 27, 97, 0.2) !important;
}

.sidebar-cta h4 {
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.15) !important;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
}

.sidebar-cta .phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin: 18px 0;
}

/* ---------- State Page ---------- */
.rto-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
}

.rto-table table {
    margin: 0;
}

.rto-table thead th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 16px 22px;
    border: none;
    letter-spacing: 0.3px;
}

.rto-table tbody td {
    padding: 13px 22px;
    font-size: 0.88rem;
    vertical-align: middle;
    border-color: var(--gray-200);
}

.rto-table tbody tr:hover {
    background: rgba(247, 148, 29, 0.03);
}

/* City Card */
.city-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

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

.city-card .city-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.city-card .city-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 27, 97, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.city-card:hover .city-img::after {
    opacity: 1;
}

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

.city-card:hover .city-img img {
    transform: scale(1.08);
}

.city-card .city-info {
    padding: 28px;
}

.city-card .city-info h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.city-card .city-info p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ---------- Vehicle Fitness ---------- */
.fitness-feature {
    display: flex;
    gap: 22px;
    margin-bottom: 32px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.fitness-feature:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.fitness-feature .feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.fitness-feature:hover .feature-icon {
    border-radius: 50%;
}

.fitness-feature h5 {
    margin-bottom: 6px;
}

.fitness-feature p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* Price Card */
.price-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.price-card:hover,
.price-card.featured {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.price-card.featured {
    position: relative;
}

.price-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-card .price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin: 18px 0;
}

.price-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    text-align: left;
}

.price-card ul li {
    padding: 9px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li i {
    color: var(--accent);
}

/* ---------- Marquee / Scrolling Banner ---------- */
.marquee-section {
    background: var(--gradient-primary);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 60px;
    white-space: nowrap;
}

.marquee-content span {
    color: rgba(255,255,255,0.4);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-content span i {
    color: var(--secondary);
    font-size: 0.6rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(15, 27, 97, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 27, 97, 0.3);
}

/* ---------- Loader ---------- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    gap: 20px;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--secondary);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1199px) {
    .hero-content h1 { font-size: 3.2rem; }
    .navbar .nav-link { padding: 26px 11px !important; font-size: 0.86rem; }
}

@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 100px 0 70px; background-attachment: scroll; }
    .hero-content h1 { font-size: 2.6rem; }
    .hero-content p { font-size: 1.05rem; }
    .hero-stats { gap: 30px; margin-top: 40px; padding-top: 30px; }
    .hero-stat .number { font-size: 2.2rem; }
    .hero-image { margin-top: 40px; }
    .hero-floating-card { display: none; }

    .navbar .nav-link { padding: 12px 16px !important; }
    .navbar .nav-link::after { display: none; }
    .navbar .btn-apply { margin: 10px 16px; }
    .navbar .dropdown-menu { box-shadow: none; border: 1px solid var(--gray-200); }

    .section-padding { padding: 70px 0; }
    .section-title h2 { font-size: 2.1rem; }
    .section-title { margin-bottom: 45px; }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }

    .page-hero { padding: 110px 0 70px; }
    .page-hero h1 { font-size: 2.4rem; }

    .stat-item .stat-number { font-size: 2.4rem; }
    .stats-section { padding: 60px 0; }

    .service-detail-content { padding-right: 0; margin-bottom: 35px; }

    .cta-section h2 { font-size: 2.1rem; }
    .cta-section { padding: 70px 0; }
}

@media (max-width: 767px) {
    .top-bar { display: none; }

    .hero-content h1 { font-size: 2.1rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat { flex: 1; min-width: 100px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-buttons .btn-secondary-custom { color: var(--white); border-color: rgba(255,255,255,0.3); }

    .section-padding { padding: 55px 0; }
    .section-title { margin-bottom: 35px; }
    .section-title h2 { font-size: 1.7rem; }

    .page-hero { padding: 100px 0 60px; }
    .page-hero h1 { font-size: 1.9rem; }

    .stat-item { padding: 15px 10px; }
    .stat-item .stat-number { font-size: 2rem; }

    .about-image-wrapper .experience-badge {
        bottom: -12px;
        right: 10px;
        padding: 15px 20px;
    }
    .about-image-wrapper .experience-badge .number { font-size: 2rem; }

    .cta-section { padding: 55px 0; }
    .cta-section h2 { font-size: 1.7rem; }

    .contact-form { padding: 28px; }

    .footer-main { padding: 55px 0 35px; }

    .marquee-content span { font-size: 1rem; }
}

@media (max-width: 575px) {
    body { font-size: 15px; }

    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.92rem; }
    .hero-stat .number { font-size: 1.8rem; }

    .service-card { padding: 28px 22px; }

    .section-title h2 { font-size: 1.5rem; }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 26px;
        font-size: 0.88rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 82px;
        right: 22px;
        width: 42px;
        height: 42px;
    }

    .navbar-brand .brand-text .brand-name { font-size: 1.15rem; }
    .navbar-brand .logo-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}

/* ---------- Call Float Button (Mobile) ---------- */
.call-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(15, 27, 97, 0.4);
    transition: var(--transition);
    text-decoration: none;
}
.call-float:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ---------- Footer Social Icons ---------- */
.footer-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    text-decoration: none;
}
.footer-social-icon:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Experience Badge ---------- */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-secondary);
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
    animation: statGlow 3s ease-in-out infinite;
}
.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

/* ---------- Typed Cursor Animation ---------- */
.typed-cursor {
    animation: blink 1s infinite;
    font-size: 1.1em;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---------- Shake Animation ---------- */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

/* ---------- Print Styles ---------- */
@media print {
    .top-bar, .navbar, .footer, .whatsapp-float, .back-to-top, .cta-section, .marquee-section {
        display: none !important;
    }
    .hero-section, .page-hero {
        min-height: auto;
        padding: 30px 0;
    }
    body { color: #000; }
}
