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

:root {
    --pr-color: #FF5A1F;
    --pr-grad: linear-gradient(135deg, #FF5A1F 0%, #FF7E40 100%);
    --pr-glow: rgba(255, 90, 31, 0.15);
    --se-color: #0F172A;
    --se-grad: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --ac-color: #6C4DFF;
    --ac-grad: linear-gradient(135deg, #6C4DFF 0%, #8F75FF 100%);
    --bg-color: #F8FAFC;
    --su-color: #22C55E;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 15px 30px rgba(255, 90, 31, 0.25);
    --shadow-ac-glow: 0 15px 30px rgba(108, 77, 255, 0.2);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(16px);
    
    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-alt: 'Poppins', sans-serif;
}

/* Global Overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--se-color);
    font-weight: 700;
}

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

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

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

/* Redesigned Premium Buttons */
.btn-premium {
    font-family: var(--font-alt);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-premium-primary {
    background: var(--pr-grad);
    color: white !important;
    box-shadow: var(--shadow-glow);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(255, 90, 31, 0.35);
    background: linear-gradient(135deg, #FF7E40 0%, #FF5A1F 100%);
}

.btn-premium-secondary {
    background: var(--se-color);
    color: white !important;
    box-shadow: var(--shadow-soft);
}

.btn-premium-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    background: #1E293B;
}

.btn-premium-outline {
    background: transparent;
    color: var(--se-color) !important;
    border: 2px solid var(--se-color);
}

.btn-premium-outline:hover {
    background: var(--se-color);
    color: white !important;
    transform: translateY(-3px);
}

.btn-premium-white {
    background: white;
    color: var(--se-color) !important;
    box-shadow: var(--shadow-soft);
}

.btn-premium-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

/* 1. Header Redesign */
.top-header-modern {
    background: var(--se-color);
    padding: 8px 0;
    font-family: var(--font-alt);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-header-modern a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s;
    text-decoration: none;
}

.top-header-modern a:hover {
    color: var(--pr-color) !important;
}

.top-header-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-header-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
}

.top-header-socials a:hover {
    background: var(--pr-color);
    color: white !important;
    transform: translateY(-2px);
}

.header-cta-list {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn-pay-now-mini {
    background: var(--pr-grad);
    color: white !important;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 90, 31, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-pay-now-mini:hover {
    transform: scale(1.05);
}

/* Sticky Main Navigation Header */
.main-header-modern {
    position: absolute;
    top: 45px; /* Height of top header */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Sticky state after scroll */
.main-header-modern.sticky-active {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    padding: 12px 0;
}

/* When header is transparent on dark hero banner, adapt text colors */
.hero-is-dark .main-header-modern:not(.sticky-active) .nav-link-modern {
    color: rgba(255, 255, 255, 0.9) !important;
}
.hero-is-dark .main-header-modern:not(.sticky-active) .nav-link-modern:hover {
    color: var(--pr-color) !important;
}

/* Navigation Links */
.nav-link-modern {
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 600;
    color: var(--se-color) !important;
    padding: 10px 16px !important;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    text-decoration: none;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--pr-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link-modern:hover::after,
.nav-item-modern.active .nav-link-modern::after {
    transform: scaleX(1);
}

.nav-link-modern:hover {
    color: var(--pr-color) !important;
}

/* Mega Menu & Dropdown Redesign */
.nav-item-modern {
    position: relative;
}

.dropdown-modern-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-premium);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1010;
}

.nav-item-modern:hover .dropdown-modern-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-modern-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--se-color);
    font-family: var(--font-alt);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.dropdown-modern-menu li a:hover {
    background: rgba(255, 90, 31, 0.05);
    color: var(--pr-color);
    padding-left: 28px;
}

/* Services Mega Menu */
.mega-menu-modern {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    width: 850px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-premium);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1010;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nav-item-modern:hover .mega-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-col-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--se-color);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255, 90, 31, 0.1);
    display: block;
}

.mega-menu-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-sublist li {
    margin-bottom: 6px;
}

.mega-menu-sublist li a {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    padding: 4px 0;
}

.mega-menu-sublist li a:hover {
    color: var(--pr-color);
    transform: translateX(4px);
}

/* Search bar styling */
.search-toggle-modern {
    color: var(--se-color);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px;
    display: inline-flex;
    align-items: center;
}

.search-toggle-modern:hover {
    color: var(--pr-color);
}

.hero-is-dark .main-header-modern:not(.sticky-active) .search-toggle-modern {
    color: white;
}

/* Hamburger modern button */
.hamburger-modern {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-modern span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--se-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.hero-is-dark .main-header-modern:not(.sticky-active) .hamburger-modern span {
    background-color: white;
}

/* 2. Hero Section */
.hero-modern {
    min-height: 800px;
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(108, 77, 255, 0.04) 0%, transparent 45%),
                var(--bg-color);
    position: relative;
    overflow: hidden;
}

.glowing-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 90, 31, 0.12);
    top: 10%;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(108, 77, 255, 0.1);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-tagline {
    background: rgba(255, 90, 31, 0.07);
    color: var(--pr-color);
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--se-color);
}

@media(max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.65;
    max-width: 600px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges-wrapper {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    font-size: 24px;
    color: var(--pr-color);
    background: rgba(255, 90, 31, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-text h6 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--se-color);
}

.trust-badge-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.google-rating-badge {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

.google-rating-stars {
    color: #FBBF24;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

/* Hero Right Side Graphic */
.hero-graphic-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 4px solid white;
}

.hero-main-img-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Floating Statistics Card */
.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.floating-stat-card.fsc-1 {
    top: 15%;
    left: -15px;
    animation-delay: 0s;
}

.floating-stat-card.fsc-2 {
    bottom: 12%;
    right: -20px;
    animation-delay: 2s;
}

.floating-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.floating-stat-icon.icon-orange {
    background: var(--pr-grad);
    box-shadow: var(--shadow-glow);
}

.floating-stat-icon.icon-purple {
    background: var(--ac-grad);
    box-shadow: var(--shadow-ac-glow);
}

.floating-stat-data h5 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.floating-stat-data p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

/* Wave Divider at Bottom of Hero */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

/* Client logos slider */
.hero-clients-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    opacity: 0.55;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0 20px;
}

.client-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo-item img {
    max-height: 38px;
    max-width: 130px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
}

/* 3. Services Section */
.services-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.section-title-area {
    max-width: 650px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-tagline {
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--pr-color);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--se-color);
    line-height: 1.25;
}

/* Premium Services Cards */
.service-card-premium {
    background: var(--bg-color);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    background: white;
    border-color: rgba(255, 90, 31, 0.15);
    box-shadow: var(--shadow-premium);
}

.service-card-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 90, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pr-color);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card-premium:hover .service-card-icon-container {
    background: var(--pr-grad);
    color: white;
    box-shadow: var(--shadow-glow);
}

.service-card-premium:hover .service-card-icon-container img {
    filter: brightness(0) invert(1);
}

.service-card-icon-container img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    transition: filter 0.3s;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-link {
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--pr-color);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.service-card-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.service-card-link:hover {
    color: var(--ac-color);
}

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

/* 4. Why Choose Us Section */
.why-choose-modern {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.why-choose-graphic-wrapper {
    position: relative;
    padding-right: 30px;
}

.why-choose-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.collage-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 3px solid white;
}

.collage-img-1 {
    grid-column: 1 / 10;
    grid-row: 1;
}

.collage-img-2 {
    grid-column: 7 / 13;
    grid-row: 1;
    margin-top: 60px;
    z-index: 2;
}

.why-choose-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--se-color);
    color: white;
    padding: 22px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-choose-badge h4 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    color: white;
    line-height: 1;
}

.why-choose-badge p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.why-choose-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.why-choose-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
}

.checklist-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: var(--su-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.checklist-text h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.checklist-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Progress bar redesign */
.progress-list {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--se-color);
}

.progress-bar-container {
    height: 6px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--pr-grad);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* 5. About Section */
.about-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.tabs-modern {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.tab-btn-modern {
    background: transparent;
    border: none;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
}

.tab-btn-modern.active {
    background: rgba(255, 90, 31, 0.08);
    color: var(--pr-color);
}

.tab-pane-modern {
    display: none;
}

.tab-pane-modern.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
}

/* 6. Timeline Process Section */
.process-section-modern {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.timeline-container {
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(15, 23, 42, 0.05);
    z-index: 1;
}

.timeline-line-progress {
    height: 100%;
    width: 50%; /* Animated on viewport enter */
    background: var(--pr-grad);
    box-shadow: var(--shadow-glow);
    transition: width 2s ease;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
}

@media(max-width: 991px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .timeline-line {
        left: 28px;
        top: 0;
        width: 3px;
        height: 100%;
    }
    .timeline-line-progress {
        width: 100%;
        height: 50%;
    }
}

.timeline-item {
    text-align: center;
}

@media(max-width: 991px) {
    .timeline-item {
        text-align: left;
        display: flex;
        gap: 25px;
    }
}

.timeline-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 18px;
    color: var(--se-color);
    margin: 0 auto 25px auto;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-item:hover .timeline-node {
    border-color: var(--pr-color);
    background: var(--pr-grad);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.timeline-content-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 90, 31, 0.1);
}

.timeline-content-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

/* 7. Industries Section */
.industries-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media(max-width: 991px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.industry-card:hover {
    background: white;
    transform: translateY(-6px);
    border-color: rgba(255, 90, 31, 0.2);
    box-shadow: var(--shadow-premium);
}

.industry-card-icon {
    font-size: 32px;
    color: var(--pr-color);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.industry-card:hover .industry-card-icon {
    transform: scale(1.1);
    color: var(--ac-color);
}

.industry-card h5 {
    font-size: 16px;
    font-weight: 750;
    margin: 0;
    color: var(--se-color);
}

/* 8. Testimonials Section */
.testimonials-section-modern {
    padding: 100px 0;
    background: var(--bg-color);
}

.testimonial-card-glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.testimonial-card-glass:hover {
    background: white;
    box-shadow: var(--shadow-premium);
    transform: translateY(-3px);
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

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

.testimonial-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #E2E8F0;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-meta h6 {
    font-size: 15px;
    font-weight: 750;
    margin: 0 0 2px 0;
}

.testimonial-author-meta p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

/* Testimonial slider navigation customization */
.testimonial-nav-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.t-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--se-color);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.t-arrow:hover {
    background: var(--pr-grad);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* 9. Blog Section */
.blog-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
}

.blog-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 90, 31, 0.12);
}

.blog-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover .blog-img-box img {
    transform: scale(1.08);
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pr-grad);
    color: white;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 750;
    line-height: 1.4;
    color: var(--se-color);
    margin-bottom: 15px;
    margin-top: 0;
    flex-grow: 1;
}

.blog-card-link {
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13px;
    color: var(--pr-color);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
    margin-top: auto;
}

.blog-card-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.blog-card-premium:hover .blog-card-link {
    color: var(--ac-color);
}

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

/* 10. Contact Section */
.contact-section-modern {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.02);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 90, 31, 0.1);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 90, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pr-color);
    flex-shrink: 0;
}

.contact-info-data p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-muted);
}

.contact-info-data h6 {
    font-size: 15px;
    font-weight: 750;
    margin: 0;
    color: var(--se-color);
}

.contact-info-data h6 a {
    color: var(--se-color);
    text-decoration: none;
}

.contact-info-data h6 a:hover {
    color: var(--pr-color);
}

/* Grayscale Map */
.map-container-modern {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid white;
    margin-top: 30px;
    height: 250px;
    filter: grayscale(100%) contrast(1.1) invert(0.05);
    transition: all 0.5s;
}

.map-container-modern:hover {
    filter: grayscale(0%);
}

/* Modern Form Elements */
.glass-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: var(--shadow-premium);
}

/* Compact label for tighter rows */
.form-label-compact {
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

/* Compact input/select for tighter rows */
.form-control-compact {
    width: 100%;
    background: white !important;
    border: 1.5px solid rgba(15, 23, 42, 0.10) !important;
    border-radius: 10px !important;
    padding: 9px 14px !important;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--se-color) !important;
    outline: none !important;
    transition: all 0.3s;
    height: auto;
}

.form-control-compact:focus {
    border-color: var(--pr-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.08) !important;
    outline: none !important;
}

.form-group-modern {
    margin-bottom: 20px;
    position: relative;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    background: white !important;
    border: 1.5px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--se-color) !important;
    outline: none !important;
    transition: all 0.3s;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    border-color: var(--pr-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.08) !important;
}

.form-group-modern label {
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.captcha-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: white;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 0;
}

.captcha-box-modern {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--se-color);
    user-select: none;
}

.captcha-refresh-btn {
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--pr-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 11. CTA Section */
.cta-section-modern {
    padding: 80px 0;
    background: #FFFFFF;
}

.cta-box-premium {
    background: var(--se-grad);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.cta-box-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 77, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.cta-box-glow-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
}

.cta-box-premium h2 {
    font-size: 44px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-box-premium p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

/* 12. Footer Section */
.footer-modern {
    background: #090D1A;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-wave-svg {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 35px;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave-svg svg {
    display: block;
    width: 100%;
    height: 35px;
}

.footer-wave-svg .shape-fill {
    fill: #090D1A;
}

.footer-main-area {
    padding-top: 100px;
    padding-bottom: 60px;
}

.footer-logo-box {
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-social-links a:hover {
    background: var(--pr-color);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--pr-color);
    transform: translateX(4px);
}

/* Newsletter Input Redesign */
.newsletter-form-modern {
    margin-top: 15px;
    position: relative;
}

.newsletter-form-modern input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 14px 120px 14px 20px;
    color: white;
    outline: none;
    font-size: 13.5px;
    transition: all 0.3s;
}

.newsletter-form-modern input:focus {
    border-color: var(--pr-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form-modern .btn-subscribe {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--pr-grad);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s;
}

.newsletter-form-modern .btn-subscribe:hover {
    transform: scale(1.03);
}

.footer-bottom-area {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links li a:hover {
    color: var(--pr-color);
}

/* Back To Top Button */
.back-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pr-grad);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: none;
    text-decoration: none !important;
}

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

.back-to-top-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 90, 31, 0.4);
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 90, 31, 0.15); }
    50% { box-shadow: 0 0 25px rgba(255, 90, 31, 0.3); }
}

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

.reveal-active {
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Modal Popup Modern Design */
#exampleModal .modal-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 28px !important;
    box-shadow: var(--shadow-premium) !important;
    overflow: hidden;
}

#exampleModal .modal-header {
    background: var(--se-grad) !important;
    border-bottom: 2px solid var(--pr-color) !important;
    color: white !important;
    padding: 24px 30px !important;
}

#exampleModal .modal-title {
    color: white !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

#exampleModal .modal-title span {
    color: var(--pr-color);
}

#exampleModal .close {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    opacity: 0.8 !important;
    cursor: pointer;
}

#exampleModal .close:hover {
    opacity: 1 !important;
    color: var(--pr-color) !important;
}

#exampleModal .modal-body {
    padding: 35px 30px !important;
    background: transparent !important;
}

#exampleModal .modal-footer {
    padding: 0 30px 30px 30px !important;
    background: transparent !important;
    border-top: none !important;
}

#exampleModal .btn-success {
    background: var(--pr-grad) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-family: var(--font-alt) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-glow) !important;
}

#exampleModal .btn-success:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 90, 31, 0.4) !important;
}

/* Custom dropdown selector support inside modern form group */
.form-group-modern select {
    width: 100%;
    background: white !important;
    border: 1.5px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--se-color) !important;
    outline: none !important;
    transition: all 0.3s;
    height: auto !important;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 16px !important;
}

.form-group-modern select:focus {
    border-color: var(--pr-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.08) !important;
}

/* Mobile responsive padding and border adjustments for glass-form-card */
@media (max-width: 575.98px) {
    .glass-form-card {
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }
}

