/* ========================================
    Trinity Credit Solutions - Custom Styles
    ======================================== */

a{
 text-decoration: none;
}

/* ========================================
    1. ROOT VARIABLES & RESET
    ======================================== */
:root {
    --yellow-primary: #facc15;
    --yellow-dark: #eab308;
    --yellow-light: #fef3c7;
    --blue-accent: #2563eb;
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #a3a3a3;
    --neutral-300: #d4d4d4;
    --neutral-200: #e5e5e5;
    --neutral-100: #f5f5f5;
    --neutral-50: #fafafa;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --primary-yellow: #FACC15;
    --primary-yellow-dark: #EAB308;
    --secondary-yellow: #EAB308;
    --text-dark: #000000;
    --text-gray: #666666;
    --text-light: #333333;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 24px;
    --border-radius-full: 50px;
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --deep-yellow: #EAB308;
    --gradient-primary: linear-gradient(135deg, #FACC15, #EAB308);
    --gradient-secondary: linear-gradient(135deg, #FEF3C7, #FDE68A);

    --gradient: linear-gradient(135deg, #FACC15, #EAB308);
    --text-color: #000000;
    --text-muted: #4B5563;
    --light-bg: #FFFBEB;
    --border-color: #E5E7EB;
    --input-bg: #FAFAFA;
    --transition-slow: all 0.6s ease;

    --gray-light: #F3F4F6;
    --gray-dark: #6B7280;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #6c757d;
    --gray-900: #111827;

    --dark-yellow: #CA8A04;
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #A3A3A3;
    --neutral-300: #D4D4D4;
    --neutral-200: #E5E5E5;
    --neutral-100: #F5F5F5;
    --neutral-50: #FAFAFA;
    --white: #FFFFFF;
    --blue-600: #2563EB;
    --red-600: #DC2626;
    --green-600: #16A34A;
    
    /* Spacing */
    --section-padding: 54px;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --heading-size: 34px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--neutral-900);
    line-height: 1.6;
    overflow-x: hidden;
}
a{
    font-family: 'Mulish', sans-serif;
}

.bg-yellow{
	background-color: var(--yellow-primary);
}
/* ============================================
   2. TYPOGRAPHY
   ============================================ */
.main-heading {
    font-size: var(--heading-size);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1, h2, h3 {
    font-weight: 600;
}

.text-yellow {
    color: var(--secondary-yellow);
}

.keyword-link {
    color: var(--blue-600);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.keyword-link:hover {
    text-decoration: underline;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.75;
}

.section-description {
    max-width: 48rem;
    margin: 0 auto;
    color: var(--neutral-600);
}

/* ============================================
   3. SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 1rem;
}

.section-label span {
    color: var(--secondary-yellow);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-line {
    height: 4px;
    width: 5rem;
    background: var(--primary-yellow);
    margin-top: 0.5rem;
}

/* ============================================
   4. HEADER / NAVBAR
   ============================================ */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.navbar {
    padding: 0;
    transition: all 0.3s ease;
}
.navbar img{
    width: 240px;
}
.nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-700) !important;
    padding: 24px 18px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-yellow) !important;
}

.dropdown-menu {
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--neutral-700);
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: #FEF9C3;
    color: var(--secondary-yellow);
}
.dropdown-menu li .dropdown-item:hover{
    background-color: #FEF9C3;
    color: var(--secondary-yellow);
}
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}


.btn-navbar-cta {
    background: var(--primary-yellow);
    color: var(--neutral-900);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.btn-navbar-cta:hover {
    background: var(--secondary-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero-section {
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #FEF9C3 0%, var(--white) 50%, #FEF9C3 100%);
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-stat-icon {
    width: 48px;
    height: 48px;
    background: #FEF9C3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-stat-icon i {
    font-size: 1.5rem;
    color: var(--secondary-yellow);
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: blob 7s infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    top: -50px;
    right: -50px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-yellow);
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   6. ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.problem-box {
    background: #FEF9C3;
    border-left: 4px solid var(--primary-yellow);
    padding: 1.5rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.problem-title {
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--neutral-700);
}

.problem-list i {
    color: var(--secondary-yellow);
    margin-top: 0.25rem;
}

.home-feature-card {
    background: linear-gradient(135deg, #FEF9C3 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid #FDE68A;
    transition: var(--transition-normal);
    height: 100%;
}

.home-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.home-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-yellow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.home-feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.home-feature-title {
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.home-feature-description {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin: 0;
}

.location-banner {
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: var(--radius-2xl);
    padding: 3rem;
    margin-top: 4rem;
    color: var(--white);
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-subtitle {
    color: #FEF9C3;
    margin: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.location-item {
    font-size: 0.875rem;
}

/* ============================================
   7. SERVICES SECTION
   ============================================ */
.home-services-section {
    background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
}

.home-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
    height: 100%;
}

.home-service-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.home-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.home-service-card:hover .service-icon {
    transform: scale(1.1);
}

.home-service-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.home-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.home-service-description {
    color: var(--neutral-600);
    margin-bottom: 1rem;
}

.home-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.5rem;
}

.home-service-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

.cta-banner {
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow), var(--primary-yellow));
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--neutral-800);
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   8. PROCESS SECTION
   ============================================ */
.home-process-section {
    background: var(--white);
}

.home-process-timeline {
    position: relative;
}

.home-process-card {
    background: var(--white);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.home-process-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.home-process-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 4px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-yellow);
    z-index: 10;
}

.home-process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
}

.home-process-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.home-process-timeline-badge {
    display: inline-block;
    background: #FEF9C3;
    color: var(--dark-yellow);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.home-process-title {
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
}

.home-process-description {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
}

.stat-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin: 0;
}

.guarantee-box {
    background: linear-gradient(135deg, #FEF9C3, #FDE68A);
    border: 2px solid #FDE047;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.guarantee-text {
    color: var(--neutral-700);
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto;
}

/* ============================================
   9. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition-normal);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--neutral-600);
    margin: 0;
}

.testimonial-location i {
    font-size: 0.625rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.score-improvement {
    background: linear-gradient(90deg, #FEF9C3, #FDE68A);
    border: 1px solid #FDE047;
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.score-label {
    display: block;
    font-size: 0.625rem;
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
}

.score-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.score-bad {
    color: var(--red-600);
}

.score-good {
    color: var(--green-600);
}

.score-arrow {
    color: var(--secondary-yellow);
    font-size: 1.25rem;
}

.score-change {
    background: var(--primary-yellow);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.improvement-time {
    font-size: 0.75rem;
    color: var(--neutral-600);
    text-align: center;
    margin: 0;
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.trust-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.trust-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--neutral-600);
    margin: 0;
}

.video-cta {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    max-width: 64rem;
    margin: 0 auto;
}

.video-bg {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23, 23, 23, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 2rem;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-text {
    color: var(--neutral-200);
    margin: 0;
}

/* ============================================
   10. CONTACT SECTION
   ============================================ */
.home-contact-section {
    background: linear-gradient(135deg, #FEF9C3 0%, var(--white) 50%, #FEF9C3 100%);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--neutral-300);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
    outline: none;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--neutral-500);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: var(--radius-2xl);
    padding: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #FEF9C3;
    text-decoration: none;
    display: block;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--white);
}

.contact-details p {
    color: #FEF9C3;
    margin: 0;
}

.contact-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-map img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.why-choose {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
}

.why-title {
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.75rem;
}

.why-list i {
    color: var(--secondary-yellow);
    margin-top: 0.25rem;
}

/* ============================================
   11. FOOTER
   ============================================ */
.footer {
    background: var(--neutral-900);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--neutral-400);
    margin: 0;
    line-height: 1;
}

.footer-description {
    color: var(--neutral-400);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary-yellow);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item i {
    color: var(--primary-yellow);
    margin-top: 0.25rem;
}

.footer-contact-item a {
    color: var(--neutral-400);
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--primary-yellow);
}

.footer-contact-item p {
    color: var(--neutral-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-areas {
    border-top: 1px solid var(--neutral-800);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-areas h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-300);
    margin-bottom: 1rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.areas-list span {
    background: var(--neutral-800);
    color: var(--neutral-400);
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--neutral-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-yellow);
}

.footer-keywords {
    color: var(--neutral-600);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ============================================
   12. BUTTONS
   ============================================ */
.btn-primary {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--neutral-900);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--neutral-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--neutral-900);
    color: var(--neutral-900);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background: rgba(23, 23, 23, 0.1);
    border-color: var(--neutral-900);
    color: var(--neutral-900);
}

.btn-light {
    background: var(--white);
    color: var(--secondary-yellow);
    font-weight: 600;
    border: none;
    transition: var(--transition-normal);
}

.btn-light:hover {
    background: var(--neutral-100);
    color: var(--secondary-yellow);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--neutral-900);
    color: var(--neutral-900);
    font-weight: 600;
    background: transparent;
    transition: var(--transition-normal);
}

.btn-outline-dark:hover {
    background: rgba(23, 23, 23, 0.1);
    border-color: var(--neutral-900);
    color: var(--neutral-900);
}

/* ============================================
   13. SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-yellow);
    color: var(--neutral-900);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-yellow);
    transform: translateY(-3px);
}

.scroll-top i {
    font-size: 1.25rem;
}

/* ============================================
   14. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991.98px) {
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .location-banner {
        padding: 2rem;
    }
    
    .cta-banner {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .guarantee-box {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .score-improvement {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 40px;
        --heading-size: 28px;
    }
    
    .location-banner {
        padding: 1.5rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
    }

    .nav-link{
        padding: 8px 18px !important;
        border-bottom: 1px solid #ccc;
    }
}

/* ============================================
   15. UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.g-4 {
    gap: 1.5rem;
}

.g-5 {
    gap: 3rem;
}

/* ============================================
   16. ANIMATIONS
   ============================================ */
[data-aos] {
    pointer-events: auto;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
    10. FLOATING BUTTONS
    ======================================== */
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: var(--neutral-900);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
    11. ANIMATIONS
    ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
    12. RESPONSIVE UTILITIES
    ======================================== */
@media (max-width: 767px) {
    .main-heading {
        font-size: 28px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .trust-badges {
        gap: 16px;
    }

    .trust-badge {
        font-size: 13px;
    }

    .service-card,
    .step-card,
    .testimonial-card {
        padding: 24px;
    }

    .service-title,
    .step-title {
        font-size: 20px;
    }

    .form-title {
        font-size: 20px;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 70px;
        right: 20px;
    }

    .scroll-to-top {
        width: 46px;
        height: 46px;
        bottom: 87px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }

    .main-heading {
        font-size: 26px;
    }

    .section-description {
        font-size: 16px;
    }
}

section {
    scroll-margin-top: 80px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--yellow-primary);
    outline-offset: 2px;
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    font-weight: bold;
}

.notification-message {
    font-size: 14px;
    font-weight: 500;
}


.hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    list-style: none;
}

.breadcrumb-nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.hero-cta {
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ========================================
    BUTTONS
======================================== */
.btn-cta {
    background: var(--text-dark);
    color: var(--primary-yellow);
    padding: 16px 40px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    display: inline-block;
    text-decoration: none;
}

.btn-cta:hover {
    background: var(--text-dark);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(250, 204, 21, 0.4);
}

.btn-call {
    background: var(--text-dark);
    color: var(--primary-yellow);
    padding: 16px 40px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--text-dark);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-call:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.phone-icon {
    font-size: 1.2rem;
}

/* ========================================
    PROGRESS INDICATOR
======================================== */
.progress-section {
    padding: 60px 0;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.progress-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition-base);
    cursor: pointer;
}

.progress-step.active {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    color: var(--text-dark);
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(250, 204, 21, 0); }
}

.progress-step:hover {
    transform: scale(1.15);
}

.progress-connector {
    width: 40px;
    height: 3px;
    background: rgba(250, 204, 21, 0.3);
    border-radius: 2px;
}

/* ========================================
    SECTION IMAGES
======================================== */
.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

/* ========================================
    PROCESS CARDS
======================================== */
.process-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-base);
    font-size: 2.5rem;
}

.process-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.process-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.process-card a {
    color: var(--primary-yellow-dark);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-base);
}

.process-card a:hover {
    color: var(--primary-yellow);
}

/* ========================================
    MIDDLE BANNER
======================================== */
.middle-banner {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin: 60px 0;
}

.middle-banner h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* ========================================
    ANALYSIS SECTION
======================================== */
.analysis-card {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), rgba(234, 179, 8, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 2px solid rgba(250, 204, 21, 0.2);
    transition: var(--transition-smooth);
}

.analysis-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.2);
}

.analysis-card a {
    color: var(--primary-yellow-dark);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-base);
}

.analysis-card a:hover {
    color: var(--primary-yellow);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: var(--transition-base);
}

.feature-list li:hover {
    padding-left: 10px;
    color: var(--primary-yellow-dark);
}

.feature-list li::before {
    content: '✓';
    font-weight: 900;
    color: var(--primary-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* ========================================
    CONSULTATION SECTION
======================================== */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.consultation-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.consultation-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.consultation-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.consultation-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.consultation-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
    CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    border: 2px solid var(--primary-yellow-dark);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ========================================
    REVEAL ANIMATION
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
    STICKY MOBILE CTA
======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* ========================================
    RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0 60px;
        min-height: 350px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .process-card {
        padding: 30px;
    }
    .analysis-card {
        padding: 30px;
    }
    .progress-indicator {
        gap: 10px;
    }
    .progress-step {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .progress-connector {
        width: 20px;
    }
    .section-image {
        height: 250px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .middle-banner h3 {
        font-size: 1.8rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1.1rem;
    }
    .sticky-cta {
        display: block;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
    .process-card h3 {
        font-size: 1.3rem;
    }
    .section-image {
        height: 200px;
    }
}


/* Who we are */
/* ===== FEATURE CARDS ===== */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(250, 204, 21, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(250, 204, 21, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ===== IMAGE CONTAINER ===== */
.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* ===== TIMELINE ===== */
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(250, 204, 21, 0.5);
    }
}

.timeline-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.15);
}

/* ===== CTA BUTTON ===== */
.cta-button {
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.4);
    color: var(--text-dark);
}

.cta-button-dark {
    background: var(--text-dark);
    color: #ffffff;
}

.cta-button-dark:hover {
    color: #ffffff;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .image-container {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}


/* Contact us page */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ============================================
    DECORATIVE ELEMENTS
    ============================================ */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: 8%;
    right: -120px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: -80px;
    animation-delay: 3s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 5%;
    animation-delay: 5s;
}

/* ============================================
    TYPOGRAPHY & GRADIENT TEXT
    ============================================ */

.cp-gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
}

.cp-gradient-text:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
    HERO SECTION
    ============================================ */

.contact-section {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-section .main-heading {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 24px;
}

.contact-section .subtitle {
    font-size: clamp(16px, 2vw, 18px);
    max-width: 720px;
    margin: 0 auto 40px;
}

/* ============================================
    CONTACT FORM CARD
    ============================================ */

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(250, 204, 21, 0.2);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
    height: 100%;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.section-header {
    margin-bottom: 32px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 0;
}

/* Form Elements */
.form-label {
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 13px;
    color: var(--text-color);
    display: block;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 16px;
    transition: var(--transition-base);
    background: var(--input-bg);
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    color: var(--text-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Submit Button */
.btn-submit {
    background: var(--gradient);
    color: var(--text-color);
    border: none;
    border-radius: 12px;
    padding: 8px 48px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 350px;
    height: 350px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(234, 179, 8, 0.45);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ============================================
    INFO CARDS
    ============================================ */

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-yellow);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(250, 204, 21, 0.15),
        transparent
    );
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    animation: pulse 3s infinite;
}

.icon-wrapper i {
    font-size: 28px;
    color: var(--text-color);
}

.info-card h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-color);
}

.info-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
}

.info-card a:hover {
    color: var(--deep-yellow);
}

.info-card a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.info-card a:hover::after {
    width: 100%;
}

/* ============================================
    TIMINGS CARD
    ============================================ */

.timings-card {
    background: var(--gradient);
    border-radius: 20px;
    padding: 38px;
    box-shadow: var(--shadow-lg);
    color: var(--text-color);
    margin-bottom: 0;
}

.timings-card h4 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timings-card h4 i {
    font-size: 26px;
}

.timings-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timings-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
}

.timings-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timings-list li span:first-child {
    font-weight: 700;
}

.timings-list li span:last-child {
    font-weight: 600;
}

/* ============================================
    MAP SECTION
    ============================================ */

.map-section {
    padding: 80px 0;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-section .main-heading {
    font-size: 34px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding: 6px;
    background: var(--gradient);
}

.map-container iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
    border-radius: 20px;
}

/* ============================================
    RESPONSIVE DESIGN
    ============================================ */

/* Tablet View */
@media (max-width: 991px) {
    .section {
        padding: 40px 0;
    }
    
    .main-heading {
        font-size: 30px;
    }
    
    .contact-section {
        padding: 60px 0 40px;
    }
    
    .contact-form-card {
        padding: 40px 30px;
        margin-bottom: 40px;
    }
    
    .section-header h3 {
        font-size: 28px;
    }
    
    .info-card {
        padding: 26px;
    }
    
    .timings-card {
        padding: 30px;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .shape-3 {
        display: none;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .section {
        padding: 36px 0;
    }
    
    .main-heading {
        font-size: 26px;
    }
    
    .contact-section {
        padding: 50px 0 36px;
    }
    
    .contact-section .main-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-section .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .section-header h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .form-control,
    .form-select {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 14px 36px;
        font-size: 16px;
    }
    
    .info-card {
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .info-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .info-card p {
        font-size: 14px;
    }
    
    .icon-wrapper {
        width: 54px;
        height: 54px;
        margin-bottom: 16px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .timings-card {
        padding: 26px;
        border-radius: 16px;
    }
    
    .timings-card h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .timings-list li {
        padding: 12px 0;
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 4px;
        border-radius: 20px;
    }
    
    .map-container iframe {
        height: 320px;
        border-radius: 16px;
    }
    
    .floating-shape {
        display: none;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .contact-form-card {
        padding: 24px 16px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .timings-card {
        padding: 22px;
    }
    
    .map-container iframe {
        height: 280px;
    }
}

/* ============================================
    UTILITY CLASSES
    ============================================ */

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.shadow-custom {
    box-shadow: var(--shadow-lg);
}


/* Services Page */
/* ===== Hero Section ===== */
.service-hero-section {
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23000000' fill-opacity='0.03'%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");
    opacity: 0.5;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.service-hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    animation: fadeInUp 0.8s ease-out;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== First Paragraph Section ===== */
.first-para-section {
    text-align: center;
}

.first-para-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== Introduction Section ===== */
.intro-section {
    background: var(--white);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* ===== Stats Section ===== */
.service-stats-section {
    background: var(--light-bg);
}

.stats-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== Service Cards ===== */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(250, 204, 21, 0.25);
    border-color: var(--primary-yellow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-badge {
    transform: rotate(5deg) scale(1.1);
}

.service-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-list .check-icon {
    color: #CA8A04;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: var(--light-bg);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefit-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check-icon {
    color: #CA8A04;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-text {
    font-size: 1.125rem;
    padding-top: 0.25rem;
    line-height: 1.375;
}

.benefits-image {
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* ===== Buttons ===== */
.btn-dark-custom {
    background: var(--text-color);
    color: var(--primary-yellow);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-dark-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    color: var(--primary-yellow);
}

.btn-dark-custom svg {
    transition: transform 0.3s ease;
}

.btn-dark-custom:hover svg {
    transform: translateX(5px);
}

/* ===== Gradient Text (SEO Keywords) ===== */
.sr-gradient-text {
    background: linear-gradient(135deg, #FACC15, #EAB308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sr-gradient-text:hover {
    filter: brightness(1.2);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .first-para-text {
        font-size: 1.125rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .benefits-image,
    .intro-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0px;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    .stats-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .btn-dark-custom {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .service-hero-section {
        padding: 60px 15px;
    }
    
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .first-para-text {
        font-size: 1rem;
    }
}


/* Service Two */
.text-large {
    font-size: 18px;
    line-height: 1.8;
}
.text-base {
    font-size: 16px;
    line-height: 1.7;
}
.text-sm {
    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
    GRADIENT TEXT
=========================== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===========================
    SECTION STYLES
=========================== */
.section {
    padding: 54px 0;
}

.bg-light-gray {
    background: var(--gray-50);
}

/* ===========================
    BADGE STYLES
=========================== */
.stats-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(250, 204, 21, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    font-weight: 700;
    color: var(--deep-yellow);
    margin-bottom: 24px;
    font-size: 14px;
}

.stats-badge i {
    margin-right: 8px;
}

/* ===========================
    IMAGE STYLES
=========================== */
.image-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-container:hover {
    box-shadow: var(--shadow-xl);
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ===========================
    CARD STYLES
=========================== */
.service-info-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-info-card:hover {
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-info-card i {
    color: var(--deep-yellow);
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.service-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-info-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===========================
    SERVICE CARD STYLES
=========================== */
.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===========================
    BUTTON STYLES
=========================== */
.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--text-color);
    color: var(--primary-yellow);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: none;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--primary-yellow);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* ===========================
    ANIMATIONS
=========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
    RESPONSIVE STYLES
=========================== */
@media (min-width: 1200px) {
    .section-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 22px;
    }
    
    .text-large {
        font-size: 16px;
    }
    
    .service-card {
        padding: 32px;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .text-large {
        font-size: 16px;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .cta-button {
        padding: 14px 36px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .main-heading {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .service-info-card {
        padding: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
}

/* ===========================
    UTILITY CLASSES
=========================== */
.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-64 {
    margin-bottom: 64px;
}


/* // Free cibil score page */
 /* Form Styling */
.form-custom {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.form-control, .form-select {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 8px 14px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Mulish', sans-serif;
	background-color: #fff !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
    outline: none;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card-custom:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}
/* Timeline Steps */
.timeline-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    width: 3px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--primary-yellow), var(--deep-yellow));
    opacity: 0.3;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* CTA Section */
.freecibil-cta-section {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.freecibil-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.freecibil-cta-section h2 {
    color: var(--white);
}

.freecibil-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

        /* ===================================
           MODAL OVERLAY
        =================================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            opacity: 0;
            animation: fadeIn 0.3s ease-in-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-overlay.hide {
            animation: fadeOut 0.3s ease-in-out forwards;
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }

        /* ===================================
           SUCCESS POPUP CARD
        =================================== */
        .success-popup {
            background: linear-gradient(135deg, #FACC15, #EAB308);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            width: 100%;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transform: scale(0.8);
            opacity: 0;
            animation: popupSlideIn 0.4s ease-out 0.1s forwards;
        }

        @keyframes popupSlideIn {
            from {
                transform: scale(0.8) translateY(20px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        /* ===================================
           SUCCESS ICON
        =================================== */
        .success-icon-wrapper {
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            animation: iconBounce 0.6s ease-out 0.3s;
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .success-icon {
            font-size: 48px;
            color: #EAB308;
        }

        /* ===================================
           POPUP CONTENT
        =================================== */
        .popup-title {
            font-size: 28px;
            font-weight: 800;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .popup-message {
            font-size: 18px;
            font-weight: 500;
            color: #000000;
            opacity: 0.9;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        /* ===================================
           PHONE CONTACT BOX
        =================================== */
        .phone-contact-box {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px 30px;
            margin-bottom: 35px;
            transition: all 0.3s ease;
        }

        .phone-contact-box:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .phone-label {
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            opacity: 0.85;
            margin-bottom: 10px;
        }

        .phone-number {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .phone-number:hover {
            color: #000000;
            opacity: 0.8;
            transform: scale(1.05);
        }

        .phone-icon {
            font-size: 28px;
        }

        /* ===================================
           CLOSE BUTTON
        =================================== */
        .close-btn {
            background: #ffffff;
            color: #000000;
            border: none;
            padding: 14px 40px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .close-btn:active {
            transform: translateY(0);
        }

        /* ===================================
           TRIGGER BUTTON (Demo Purpose)
        =================================== */
        .trigger-btn {
            background: linear-gradient(135deg, #FACC15, #EAB308);
            color: #000000;
            border: none;
            padding: 16px 45px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
        }

        .trigger-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(250, 204, 21, 0.4);
        }

        .trigger-btn:active {
            transform: translateY(0);
        }

        /* ===================================
           RESPONSIVE STYLES
        =================================== */

        /* Tablet */
        @media (max-width: 768px) {
            .success-popup {
                padding: 40px 30px;
                border-radius: 20px;
            }

            .popup-title {
                font-size: 24px;
            }

            .popup-message {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .success-icon-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 25px;
            }

            .success-icon {
                font-size: 40px;
            }

            .phone-number {
                font-size: 20px;
            }

            .phone-icon {
                font-size: 24px;
            }

            .main-heading {
                font-size: 28px;
            }

            .section {
                padding: 40px 0px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .success-popup {
                padding: 35px 25px;
                border-radius: 18px;
            }

            .popup-title {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .popup-message {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .success-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .success-icon {
                font-size: 35px;
            }

            .phone-contact-box {
                padding: 20px 20px;
                margin-bottom: 30px;
            }

            .phone-label {
                font-size: 13px;
            }

            .phone-number {
                font-size: 18px;
                gap: 10px;
            }

            .phone-icon {
                font-size: 20px;
            }

            .close-btn {
                padding: 12px 35px;
                font-size: 15px;
            }

            .trigger-btn {
                padding: 14px 35px;
                font-size: 16px;
            }

            .main-heading {
                font-size: 24px;
            }

            .section {
                padding: 35px 0px;
            }
        }

        /* Extra small devices */
        @media (max-width: 375px) {
            .popup-title {
                font-size: 18px;
            }

            .phone-number {
                font-size: 16px;
                flex-direction: column;
                gap: 8px;
            }
        }

        /* ===================================
           UTILITY CLASSES
        =================================== */
        .hidden {
            display: none !important;
        }

        .text-center {
            text-align: center;
        }



.blog-card {
  box-shadow: 0px 3px 13px 1px rgb(0 0 0 / 12%) !important;
  margin-bottom: 10px;
  margin-bottom: 26px;
  border-radius: 10px;
  background-color: #f4f1ea;
  margin-left: 8px;
  margin-right: 8px;
}
.blog-card img {
  border-radius: 10px 10px 0px 0px;
}
.blog-card .card-body {
  padding: 1.25rem;
}
.blog-card .blog-heading {
  height: 5rem;
  overflow: hidden;
}
.blog-heading {
  color: #000;
  font-size: 20px;
  padding: 0;
  border: none;
  text-transform: initial;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.3em !important;
  font-weight: 700;
}
.blog-card p {
  font-size: 14px !important;
  line-height: 22px;
  margin-top: 10px;
  overflow: hidden;
  color: #000;
}
.set-para-height {
  height: 86px;
}
.blog-readmore {
  font-size: 15px;
  display: block;
  font-weight: 600;
  color: #111;
  text-decoration: none !important;
}
.blog-readmore i {
  font-size: 12px;
  margin-left: 8px;
}


.text-justify {
  text-align: justify;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-21 {
  font-size: 21px;
}
.fs-20 {
  font-size: 36px;
  font-weight: 700 !important;
}

/* Pagination - Start */
.pagination .page-item.active .page-link {
  background-color: #892b7c;
}
.pagination li {
  display: inline-block;
  margin-right: 8px;
}
.pagination li a {
  display: block;
  padding: 8px 15px;
  background-color: #f5f5f5;
  color: #444;
  border: 1px solid #ddd !important;
}
/* Pagination - End */
/* mukesh  */
.bgDarkGreen {
  background-color: #19352a;
}
.bgDarkGreen .main-heading {
  color: #fff;
}
.bgDarkGreen .sub-heading_greenBg {
  color: #fff;
}
/* .serviceImg {
  height: 10rem;
  object-fit: cover;
} */
.accordion-button:not(.collapsed) {
  background-color: unset !important;
}
.faqs {
  box-shadow: 0px 0px 20px rgba(5, 6, 6, 0.08);

  /* border: 0 !important; */
}
.faqs .accordion-item {
  border-left: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
}
.tick-list ul {
  padding: 0;
  margin: 0;
}
.tick-list ul li {
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-image: url(../images/icon_tick-green.svg);
  background-position: 0px -3px;
  padding-left: 40px;
  margin-bottom: 18px;
  list-style: none;
}
.bg-attachment {
  background-image: url(../images/banner-inside-paralax-2.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.resolution {
  min-height: 50.8125rem;
}


.blog-view-area h1,h2,h3,h4,h5,h6{
	font-weight: 700;
    margin-bottom: 12px;
}
.blog-view-area h1{
    font-size: 28px;
}
.blog-view-area h2{
    font-size: 26px;
}
.blog-view-area h3{
    font-size: 24px;
}
.blog-view-area h4{
    font-size: 22px;
    color: rgb(250, 61, 0);
}
.blog-view-area h5{
    font-size: 20px;
	color: rgb(250, 61, 0);
}
.blog-view-area h6{
    font-size: 18px;
}
.box-6 {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}
.underline-2 {
    border-bottom: 3px solid #85C441;
    width: 40px;
    margin-bottom: 12px;
}
.latest-post-title {
    height: 67px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #000;
    line-height: 22px !important;
}
.sticky-1 {
    position: sticky;
    top: 154px;
}

.user-profile-box{
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
}
.image-box {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.image-box img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.set-para-height {
    height: 86px;
    overflow: hidden;
}

.comment-box{
    background-color: #f9fafc;
    padding: 20px;
    border: 1px solid #dfe4e7;
    border-radius: 12px;
}
.comment-heading{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}
.comment-para{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
}
.comment-box .form-control{
    border: 1px solid #6b6863;
    border-radius: 0px 4px 4px 0px !important;
    font-size: 14px;
    padding: 12px;
}


