@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --primary-dark: #0A1128;      /* Deep Navy */
    --secondary-dark: #101F42;    /* Dark Slate Navy */
    --accent-cyan: #F37244;       /* Primary Orange Accent */
    --accent-electric: #E05322;   /* Deep Orange / Vermilion Accent */
    --accent-glow: #FFBEA8;       /* Soft Light Orange for highlights */
    --primary-light: #FFFFFF;     /* Pure White */
    --bg-light: #F8F9FA;          /* Light Slate Gray BG */
    --bg-light-alt: #FFF6F3;      /* Subtle Alternating Section BG */
    --text-dark: #0A1128;         /* Deep Navy Text */
    --text-light: #F8F9FA;        /* Near White Text */
    --text-muted: #64748B;        /* Muted Gray Text */
    --text-muted-light: #94A3B8;  /* Light Muted Gray Text */
    --success: #10B981;           /* Success Green */
    --warning: #F59E0B;           /* Warning Amber */
    
    /* Layout & Shadows */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-circle: 50%;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(243, 114, 68, 0.4);
    --shadow-glow-electric: 0 0 20px rgba(224, 83, 34, 0.4);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0A1128 0%, #101F42 50%, #E05322 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-electric) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-dark-glass: linear-gradient(135deg, rgba(16, 31, 66, 0.8) 0%, rgba(10, 17, 40, 0.9) 100%);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-family: 'Poppins', sans-serif;
    
    /* Z-Index Hierarchy */
    --z-navbar: 1000;
    --z-floating: 999;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-electric);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

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

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

button {
    font-family: var(--font-family);
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* ==========================================
   UTILITY CLASSES & REUSABLE LAYOUTS
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-bg-light {
    background-color: var(--bg-light);
}

.section-bg-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.section-bg-gradient {
    background: var(--gradient-hero);
    color: var(--text-light);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.glassmorphism-dark {
    background: rgba(16, 31, 66, 0.7);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: var(--transition-slow);
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-cyan) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(243, 114, 68, 0.1);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-navbar {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    margin: 6px auto 0 auto;
    border-radius: 2px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-bg-dark .section-title,
.section-bg-gradient .section-title {
    color: var(--primary-light);
}

.section-description {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 1.05rem;
}

.section-bg-dark .section-description,
.section-bg-gradient .section-description {
    color: var(--text-muted-light);
}

/* Kerala e-Governance Badging Details */
.kerala-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 20px;
}

.kerala-badge i {
    font-size: 0.9rem;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-navbar);
    transition: var(--transition-slow);
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-nav.scrolled-light {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(10, 17, 40, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
}

.header-nav.scrolled-light .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.header-nav.scrolled-light .nav-link:hover {
    color: var(--accent-electric);
}

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

.nav-link.active {
    color: var(--primary-light);
    font-weight: 600;
}

.header-nav.scrolled-light .nav-link.active {
    color: var(--accent-electric);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-light);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.header-nav.scrolled-light .nav-toggle span {
    background-color: var(--primary-dark);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

/* Abstract Background Gradients */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 114, 68, 0.15) 0%, rgba(10, 17, 40, 0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-alt {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 83, 34, 0.2) 0%, rgba(10, 17, 40, 0) 70%);
    bottom: -50px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Floating Cards Grid in Hero RHS */
.hero-visuals {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-visual-card {
    padding: 30px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
}

.hero-visual-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(243, 114, 68, 0.4);
}

.hero-visual-card i {
    font-size: 2.2rem;
    color: var(--accent-cyan);
    margin-bottom: 5px;
}

.hero-visual-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-visual-card p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

/* Animation offset for cards */
.hero-visuals .hero-visual-card:nth-child(even) {
    margin-top: 30px;
}

/* Animation keyframes for float-y */
@keyframes float-y {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-visuals .hero-visual-card:nth-child(1) {
    animation: float-y 5s ease-in-out infinite;
}
.hero-visuals .hero-visual-card:nth-child(2) {
    animation: float-y 6s ease-in-out infinite 0.5s;
}
.hero-visuals .hero-visual-card:nth-child(3) {
    animation: float-y 5.5s ease-in-out infinite 1s;
}
.hero-visuals .hero-visual-card:nth-child(4) {
    animation: float-y 6.5s ease-in-out infinite 1.5s;
}

/* ==========================================
   COUNTERS SECTION
   ========================================== */
.counters-section {
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.counter-item {
    text-align: center;
    border-right: 1px solid rgba(243, 114, 68, 0.15);
}

.counter-item:last-child {
    border-right: none;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1.1;
    margin-bottom: 8px;
    display: inline-block;
}

.counter-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ==========================================
   ABOUT PREVIEW & MAIN ABOUT PAGE
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-img-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    width: 250px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-img-card i {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.about-img-card p {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .about-lead {
    font-size: 1.15rem;
    color: var(--accent-electric);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

.about-feature-item i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(243, 114, 68, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.about-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ==========================================
   SERVICES GRID & CARDS
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid rgba(224, 83, 34, 0.05);
    background-color: var(--primary-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243, 114, 68, 0.2);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    background: rgba(243, 114, 68, 0.1);
    color: var(--accent-electric);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-accent);
    color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-electric);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-card-link i {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 35px 25px;
    border-radius: var(--border-radius-md);
    background: var(--primary-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid rgba(224, 83, 34, 0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 114, 68, 0.15);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(243, 114, 68, 0.08);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px auto;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ==========================================
   FAQ SECTION (ACCORDION UI)
   ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--primary-light);
    border: 1px solid rgba(224, 83, 34, 0.1);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(243, 114, 68, 0.3);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-light);
    transition: background-color var(--transition-fast);
}

.faq-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 15px;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--accent-electric);
    transition: transform var(--transition-normal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background-color: var(--bg-light);
}

.faq-content p {
    padding: 20px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(224, 83, 34, 0.05);
}

/* FAQ active state */
.faq-item.active {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-header {
    background-color: var(--bg-light-alt);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px 30px;
    border-radius: var(--border-radius-md);
    background: var(--primary-light);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 83, 34, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(243, 114, 68, 0.08);
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--accent-electric);
    font-weight: 500;
}

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section {
    padding: 0;
    position: relative;
    height: 450px;
    background-color: var(--bg-light-alt);
    border-top: 1px solid rgba(224, 83, 34, 0.1);
    border-bottom: 1px solid rgba(224, 83, 34, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-card {
    position: absolute;
    top: 40px;
    left: 40px;
    padding: 30px;
    border-radius: var(--border-radius-md);
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.map-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.map-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
}

.map-card p i {
    color: var(--accent-electric);
    margin-top: 3px;
}

/* ==========================================
   CALL TO ACTION BANNER (GLOWING)
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-hero);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 114, 68, 0.2) 0%, rgba(10, 17, 40, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.logo-img-footer {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
}


.footer-desc {
    color: var(--text-muted-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--gradient-accent);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted-light);
}

.footer-contact-info i {
    color: var(--accent-cyan);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

/* ==========================================
   FLOATING CTA WIDGETS
   ========================================== */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: var(--z-floating);
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-slow);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.float-call {
    background-color: var(--accent-cyan);
    display: none; /* Show only on mobile via media query */
}

.float-call:hover {
    box-shadow: 0 10px 25px rgba(243, 114, 68, 0.5);
}

/* Tooltips */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   INNER PAGES SPECIFICS (BREADCRUMB & LAYOUTS)
   ========================================== */
.inner-header {
    padding: 160px 0 60px 0;
    background: var(--gradient-hero);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-cyan);
}

.breadcrumb span.separator {
    color: var(--text-muted-light);
}

.breadcrumb span.current {
    color: var(--primary-light);
    font-weight: 500;
}

/* About Page Details */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    padding: 40px;
    border-radius: var(--border-radius-md);
    background: var(--bg-light);
    border: 1px solid rgba(224, 83, 34, 0.05);
    box-shadow: var(--shadow-sm);
}

.mission-card i {
    font-size: 2.2rem;
    color: var(--accent-electric);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Timeline Components */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 2px;
    background: var(--gradient-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.timeline-content {
    padding: 30px;
    background: var(--primary-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(224, 83, 34, 0.05);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Categorized Services Detail Layout */
.services-category-section {
    margin-bottom: 80px;
}

.services-category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: var(--accent-cyan);
}

/* Service Process Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-glow);
    z-index: 2;
    position: relative;
}

/* Process connector line */
.process-step::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: rgba(224, 83, 34, 0.15);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Cards Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card-premium {
    padding: 35px 30px;
    border-radius: var(--border-radius-md);
    background: var(--primary-light);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 83, 34, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-slow);
}

.contact-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243, 114, 68, 0.2);
}

.contact-card-premium i {
    font-size: 2.2rem;
    color: var(--accent-electric);
    margin-bottom: 20px;
}

.contact-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card-premium p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card-premium .btn {
    width: 100%;
}

.timings-card {
    padding: 40px;
    border-radius: var(--border-radius-md);
    background: var(--bg-light);
    border: 1px solid rgba(224, 83, 34, 0.05);
}

.timings-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.timings-list {
    list-style: none;
}

.timings-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(224, 83, 34, 0.1);
    font-size: 0.9rem;
}

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

.timings-list span.day {
    font-weight: 600;
}

.timings-list span.hours {
    color: var(--accent-electric);
    font-weight: 500;
}

/* Privacy Policy Content Styles */
.policy-card {
    padding: 50px;
    background: var(--primary-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(224, 83, 34, 0.05);
    box-shadow: var(--shadow-sm);
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-cyan);
    padding-left: 12px;
}

.policy-block p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-block ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.policy-block ul li {
    margin-bottom: 8px;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================== */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade {
    transform: translateY(0);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0) rotate(0);
}

/* Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Large Tablets & Small Laptops (under 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visuals {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
    
    .counter-item {
        border-right: none;
    }
    
    .counter-item:nth-child(odd) {
        border-right: 1px solid rgba(243, 114, 68, 0.15);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none; /* Remove connector lines on wrap layouts */
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablets & Mobile Navigation (under 768px) */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    /* Navigation burger menu dropdown */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: right var(--transition-slow);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--primary-light) !important;
        width: 100%;
        display: block;
    }
    
    .nav-link::after {
        background: var(--accent-cyan);
    }
    
    .nav-menu .btn-navbar {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    /* Display mobile floating call button */
    .float-call {
        display: flex;
    }
    
    .map-card {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px auto 0 auto;
        max-width: calc(100% - 48px);
    }
    
    .map-section {
        height: auto;
    }
    
    .map-placeholder {
        height: 350px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-cards-container {
        grid-template-columns: 1fr;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
}

/* Mobile Devices (under 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-visuals {
        grid-template-columns: 1fr;
    }
    
    .hero-visuals .hero-visual-card:nth-child(even) {
        margin-top: 0;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .counter-item:nth-child(odd) {
        border-right: none;
    }
    
    .counter-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(243, 114, 68, 0.15);
    }
    
    .counter-item:last-child {
        border-bottom: none;
    }
    
    .about-img-card {
        width: calc(100% - 20px);
        right: 10px;
        bottom: -20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
