/* ==========================================
   HERO SECTION STYLES - Master Vikrath Astro
   Primary Colors: #F8A922, #9C1414, White, Black
   Mobile: Image appears FIRST, then content
   FIXED: Smooth transitions without flickering
   ========================================== */

/* Root Variables */
:root {
    --hero-primary: #F8A922;
    --hero-secondary: #9C1414;
    --hero-accent: #0011ff;
    --hero-white: #FFFFFF;
    --hero-black: #000000;
    --hero-dark: #1a1a1a;
    --hero-gray: #f5f5f5;
    --hero-text-gray: #666666;
}

/* Container */
.hero_sec_container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 50%, #ffe8d0 100%);
    overflow: hidden;
    padding: 20px 0 60px;
}

/* Wrapper */
.hero_sec_wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==========================================
   LEFT CONTENT SECTION
   ========================================== */

.hero_sec_content {
    position: relative;
    animation: hero_sec_fadeInLeft 1s ease-out;
}

.hero_sec_content_inner {
    position: relative;
    min-height: 500px;
}

/* Slides - FIXED: Smoother transitions */
.hero_sec_slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s 0.6s, 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-30px);
    pointer-events: none;
    z-index: 1;
}

.hero_sec_slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s, 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    z-index: 2;
}

/* Heading */
.hero_sec_heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--hero-dark);
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(248, 169, 34, 0.1);
}

.hero_sec_highlight {
    background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero_sec_highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-secondary) 100%);
    border-radius: 2px;
}

/* Description */
.hero_sec_description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--hero-text-gray);
    margin-bottom: 32px;
    max-width: 600px;
}

/* CTA Buttons */
.hero_sec_cta_buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero_sec_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.hero_sec_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero_sec_btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero_sec_btn_primary {
    background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-secondary) 100%);
    color: var(--hero-white);
    box-shadow: 0 8px 20px rgba(248, 169, 34, 0.4);
}

.hero_sec_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(248, 169, 34, 0.6);
}

.hero_sec_btn_secondary {
    background: var(--hero-white);
    color: var(--hero-secondary);
    border: 2px solid var(--hero-secondary);
    box-shadow: 0 4px 12px rgba(156, 20, 20, 0.15);
}

.hero_sec_btn_secondary:hover {
    background: var(--hero-secondary);
    color: var(--hero-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 20, 20, 0.3);
}

.hero_sec_btn_icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Stats Section */
.hero_sec_stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(248, 169, 34, 0.3);
    animation: hero_sec_fadeInUp 1s ease-out 0.5s both;
    flex-wrap: wrap;
}

.hero_sec_stat_item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.hero_sec_stat_icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--hero-primary);
    animation: hero_sec_bounce 2s ease-in-out infinite;
}

.hero_sec_stat_icon svg {
    width: 100%;
    height: 100%;
}

.hero_sec_stat_number {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--hero-secondary);
    margin-bottom: 4px;
}

.hero_sec_stat_label {
    font-size: 0.875rem;
    color: var(--hero-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Controls */
.hero_sec_controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hero_sec_control_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(248, 169, 34, 0.1);
    border: 2px solid var(--hero-primary);
    color: var(--hero-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero_sec_control_btn:hover:not(:disabled) {
    background: var(--hero-primary);
    color: var(--hero-white);
    transform: scale(1.1);
}

.hero_sec_control_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero_sec_control_btn svg {
    width: 24px;
    height: 24px;
}

.hero_sec_dots {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero_sec_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(248, 169, 34, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.hero_sec_dot:hover {
    background: rgba(248, 169, 34, 0.6);
    transform: scale(1.2);
}

.hero_sec_dot.active {
    background: var(--hero-primary);
    width: 40px;
    border-radius: 6px;
}

/* ==========================================
   RIGHT IMAGE SECTION - FIXED FOR SMOOTH TRANSITIONS
   ========================================== */

.hero_sec_image_section {
    position: relative;
    animation: hero_sec_fadeInRight 1s ease-out;
}

.hero_sec_image_wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    max-height: 70vh;
}

/* Image Container - FIXED: Smooth crossfade transitions */
.hero_sec_image_container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
}

/* CRITICAL FIX: Improved image transitions */
.hero_sec_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s 1s;
    transform: scale(1);
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Active image state - smooth fade in */
.hero_sec_image.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s;
    z-index: 2;
}

/* Exiting image state - stays underneath during transition */
.hero_sec_image.exiting {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s 1s;
}

/* Decorative Elements */
.hero_sec_decoration {
    position: absolute;
    width: 48px;
    height: 48px;
    color: var(--hero-primary);
    animation: hero_sec_float 3s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(248, 169, 34, 0.3));
}

.hero_sec_decoration svg {
    width: 100%;
    height: 100%;
}

.hero_sec_star_1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero_sec_star_2 {
    top: 30%;
    right: -5%;
    animation-delay: 1s;
    width: 40px;
    height: 40px;
}

.hero_sec_star_3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
    width: 44px;
    height: 44px;
}

.hero_sec_moon {
    top: 5%;
    right: 10%;
    width: 56px;
    height: 56px;
    color: var(--hero-secondary);
    animation: hero_sec_rotate 20s linear infinite;
}

.hero_sec_sun {
    bottom: 10%;
    right: -10%;
    width: 52px;
    height: 52px;
    color: var(--hero-primary);
    animation: hero_sec_pulse 2s ease-in-out infinite;
}

/* Mystical Circles */
.hero_sec_circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--hero-primary);
    opacity: 0.2;
}

.hero_sec_circle_1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hero_sec_rotate 20s linear infinite;
}

.hero_sec_circle_2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hero_sec_rotate 30s linear infinite reverse;
}

.hero_sec_circle_3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hero_sec_rotate 15s linear infinite;
}

/* Floating Badge */
.hero_sec_floating_badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--hero-primary) 0%, var(--hero-secondary) 100%);
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(156, 20, 20, 0.3);
    animation: hero_sec_bounce 2s ease-in-out infinite;
    z-index: 10;
}

.hero_sec_badge_icon {
    width: 40px;
    height: 40px;
    color: var(--hero-white);
    flex-shrink: 0;
}

.hero_sec_badge_icon svg {
    width: 100%;
    height: 100%;
}

.hero_sec_badge_text {
    display: flex;
    flex-direction: column;
    color: var(--hero-white);
}

.hero_sec_badge_text strong {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero_sec_badge_text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ==========================================
   BACKGROUND ELEMENTS
   ========================================== */

.hero_sec_bg_elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero_sec_bg_shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248, 169, 34, 0.08) 0%, rgba(156, 20, 20, 0.08) 100%);
    filter: blur(80px);
}

.hero_sec_shape_1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    animation: hero_sec_float 15s ease-in-out infinite;
}

.hero_sec_shape_2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    animation: hero_sec_float 20s ease-in-out infinite reverse;
}

.hero_sec_shape_3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hero_sec_pulse 10s ease-in-out infinite;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes hero_sec_fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero_sec_fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero_sec_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero_sec_float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes hero_sec_bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes hero_sec_pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes hero_sec_rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero_sec_wrapper {
        gap: 40px;
    }

    .hero_sec_content_inner {
        min-height: 450px;
    }

    .hero_sec_image_wrapper {
        height: 500px;
    }

    .hero_sec_stats {
        gap: 25px;
    }

    .hero_sec_circle {
        display: none;
    }
}

/* Mobile devices (max-width: 768px) - IMAGE FIRST */
@media (max-width: 768px) {
    .hero_sec_container {
        min-height: auto;
        padding: 40px 0 40px;
    }

    .hero_sec_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }

    /* IMAGE FIRST ON MOBILE - This is the key change */
    .hero_sec_content {
        order: 2;
    }

    .hero_sec_image_section {
        order: 1;
    }

    .hero_sec_content_inner {
        min-height: 550px;
    }

    .hero_sec_heading {
        margin-bottom: 20px;
    }

    .hero_sec_description {
        margin-bottom: 24px;
    }

    .hero_sec_cta_buttons {
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero_sec_btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 0.938rem;
    }

    .hero_sec_stats {
        gap: 20px;
        justify-content: center;
        padding-top: 25px;
    }

    .hero_sec_stat_item {
        min-width: 90px;
    }

    .hero_sec_stat_icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .hero_sec_image_wrapper {
        height: 450px;
        max-height: 60vh;
    }

    .hero_sec_floating_badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
        padding: 16px 24px;
    }

    .hero_sec_badge_icon {
        width: 36px;
        height: 36px;
    }

    .hero_sec_badge_text strong {
        font-size: 1.125rem;
    }

    .hero_sec_badge_text span {
        font-size: 0.813rem;
    }

    .hero_sec_controls {
        justify-content: center;
        margin-top: 30px;
    }

    .hero_sec_control_btn {
        width: 45px;
        height: 45px;
    }

    .hero_sec_control_btn svg {
        width: 20px;
        height: 20px;
    }

    .hero_sec_decoration {
        width: 36px;
        height: 36px;
    }

    .hero_sec_moon {
        width: 42px;
        height: 42px;
        right: 5%;
    }

    .hero_sec_sun {
        width: 40px;
        height: 40px;
        right: -5%;
    }

    .hero_sec_star_2 {
        width: 32px;
        height: 32px;
    }

    .hero_sec_star_3 {
        width: 34px;
        height: 34px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero_sec_container {
        padding: 15px 0 30px;
    }

    .hero_sec_content_inner {
        min-height: 600px;
    }

    .hero_sec_description {
        font-size: 0.938rem;
    }

    .hero_sec_cta_buttons {
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero_sec_btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .hero_sec_stats {
        gap: 15px;
    }

    .hero_sec_stat_item {
        min-width: 80px;
    }

    .hero_sec_stat_icon {
        width: 36px;
        height: 36px;
    }

    .hero_sec_image_wrapper {
        height: 400px;
        max-height: 55vh;
    }

    .hero_sec_floating_badge {
        padding: 14px 20px;
    }

    .hero_sec_badge_icon {
        width: 32px;
        height: 32px;
    }

    .hero_sec_badge_text strong {
        font-size: 1rem;
    }

    .hero_sec_badge_text span {
        font-size: 0.75rem;
    }

    .hero_sec_controls {
        gap: 15px;
        margin-top: 0px;
    }

    .hero_sec_control_btn {
        width: 42px;
        height: 42px;
    }

    .hero_sec_dot {
        width: 10px;
        height: 10px;
    }

    .hero_sec_dot.active {
        width: 32px;
    }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
    .hero_sec_stats {
        gap: 10px;
    }

    .hero_sec_stat_item {
        min-width: 70px;
        flex: 0 0 calc(33.333% - 10px);
    }

    .hero_sec_image_wrapper {
        height: 350px;
    }

    .hero_sec_floating_badge {
        padding: 12px 18px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero_sec_container *,
    .hero_sec_container *::before,
    .hero_sec_container *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .hero_sec_controls,
    .hero_sec_decoration,
    .hero_sec_circle,
    .hero_sec_bg_elements {
        display: none !important;
    }

    .hero_sec_container {
        background: white;
        min-height: auto;
    }

    .hero_sec_wrapper {
        grid-template-columns: 1fr;
    }
}
/* about section */

/* Second Home Section Styles */
.second_home_section {
    position: relative;
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); */
    background-color: #F8A922;
    overflow: hidden;
}

.second_home_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(248, 169, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(156, 20, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.second_home_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Rotating Images */
.second_home_image_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.second_home_rotating_container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer Circle - Clockwise Rotation */
.second_home_outer_circle {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: second_home_rotate_cw 100s linear infinite;
}

.second_home_outer_circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(248, 169, 34, 0.3));
}

/* Inner Circle - Anti-clockwise Rotation */
.second_home_inner_circle {
    position: absolute;
    width: 70%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: second_home_rotate_acw 50s linear infinite;
}

.second_home_inner_circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(156, 20, 20, 0.3));
}

/* Center Static Image */
.second_home_center_image {
    position: absolute;
    width: 35%;
    height: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.second_home_center_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(248, 169, 34, 0.5));
    animation: second_home_pulse 3s ease-in-out infinite;
}

/* Rotation Animations */
@keyframes second_home_rotate_cw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes second_home_rotate_acw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes second_home_pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(248, 169, 34, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(248, 169, 34, 0.7));
    }
}

/* Right Side - Content */
.second_home_content {
    position: relative;
    z-index: 2;
}

.second_home_content_wrapper {
    max-width: 600px;
}

.second_home_subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #9C1414;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.second_home_subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F8A922, #9C1414);
}

.second_home_title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.second_home_description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: justify;
}

.second_home_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.second_home_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9C1414 0%, #F8A922 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.second_home_btn:hover::before {
    left: 0;
}

.second_home_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(248, 169, 34, 0.5);
}

.second_home_btn svg {
    transition: transform 0.3s ease;
}

.second_home_btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .second_home_container {
        gap: 40px;
    }

    .second_home_title {
        font-size: 36px;
    }
}

@media screen and (max-width: 968px) {
    .second_home_section {
        padding: 60px 20px;
    }

    .second_home_container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .second_home_image_wrapper {
        order: 1;
        min-height: 400px;
    }

    .second_home_content {
        order: 2;
    }

    .second_home_rotating_container {
        max-width: 400px;
    }

    .second_home_title {
        font-size: 32px;
    }

    .second_home_content_wrapper {
        max-width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .second_home_section {
        padding: 50px 15px;
    }

    .second_home_image_wrapper {
        min-height: 350px;
    }

    .second_home_rotating_container {
        max-width: 320px;
    }

    .second_home_subtitle {
        font-size: 12px;
        padding-left: 30px;
    }

    .second_home_subtitle::before {
        width: 20px;
    }

    .second_home_title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .second_home_description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .second_home_btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .second_home_section {
        padding: 40px 15px;
    }

    .second_home_image_wrapper {
        min-height: 300px;
    }

    .second_home_rotating_container {
        max-width: 280px;
    }

    .second_home_title {
        font-size: 24px;
    }

    .second_home_description {
        font-size: 14px;
        text-align: left;
    }

    .second_home_btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .second_home_outer_circle,
    .second_home_inner_circle,
    .second_home_center_image img {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .second_home_section {
        background: white;
        color: black;
    }
    
    .second_home_outer_circle,
    .second_home_inner_circle {
        animation: none;
    }
}

/* our servises  */


/* ========================================
   Our Services Section Styles
   ======================================== */

/* Section Container */
.our_services_section {
    position: relative;
    padding: 80px 20px;
    background-color: #9C1414;
    /* background: linear-gradient(135deg, #9C1414  0%, #F8A922 100%); */
    /* background-color:  Storing melons boosting success. At 15 PM. Stop. #9C1414 ; */
    overflow: hidden;
}

/* Background Pattern with Chakra Design */
.our_services_bg_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: 300px 300px, 400px 400px, 150px 150px;
    background-position: 0 0, 100% 100%, center;
    pointer-events: none;
    opacity: 0.6;
}

/* Container */
.our_services_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Section */
.our_services_header {
    text-align: center;
    margin-bottom: 60px;
}

.our_services_subtitle {
    display: inline-block;
    color: #F8A922;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.our_services_subtitle::after,
.our_services_subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F8A922);
}

.our_services_subtitle::before {
    right: 100%;
    margin-right: 15px;
    background: linear-gradient(90deg, #F8A922, transparent);
}

.our_services_subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.our_services_title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0;
    text-transform: capitalize;
    line-height: 1.2;
}

.our_services_description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.our_services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Service Card */
.our_services_card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_services_card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(248, 169, 34, 0.15),
        0 0 0 1px rgba(248, 169, 34, 0.3);
    border-color: rgba(248, 169, 34, 0.3);
}

/* Cloud Animation */
.our_services_cloud_animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(248, 169, 34, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 70% 50%, rgba(156, 20, 20, 0.15) 0%, transparent 25%);
    opacity: 0;
    animation: our_services_cloud_float 8s ease-in-out infinite;
    pointer-events: none;
}

.our_services_card:hover .our_services_cloud_animation {
    opacity: 1;
}

@keyframes our_services_cloud_float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.5;
    }
    75% {
        opacity: 0.3;
    }
}

/* Card Inner Content */
.our_services_card_inner {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    z-index: 1;
}

/* Icon Wrapper */
.our_services_icon_wrapper {
    /* width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(248, 169, 34, 0.1) 0%, rgba(156, 20, 20, 0.1) 100%); */
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.our_services_icon_wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8A922, #9C1414);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.our_services_card:hover .our_services_icon_wrapper {
    transform: scale(1.1) rotate(5deg);
}

.our_services_card:hover .our_services_icon_wrapper::before {
    opacity: 0.5;
    animation: our_services_pulse 2s ease-in-out infinite;
}

@keyframes our_services_pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.our_services_icon {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.our_services_card:hover .our_services_icon {
    filter: drop-shadow(0 0 10px rgba(248, 169, 34, 0.6));
}

/* Card Title */
.our_services_card_title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.our_services_card:hover .our_services_card_title {
    color: #F8A922;
}

/* Card Text */
.our_services_card_text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Button */
.our_services_btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.our_services_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F8A922, #9C1414);
    transition: left 0.4s ease;
    z-index: -1;
}

.our_services_btn:hover {
    color: #ffffff;
    border-color: #F8A922;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 169, 34, 0.3);
}

.our_services_btn:hover::before {
    left: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Landscape (1024px and below) */
@media screen and (max-width: 1024px) {
    .our_services_section {
        padding: 60px 20px;
    }

    .our_services_title {
        font-size: 40px;
    }

    .our_services_description {
        font-size: 16px;
    }

    .our_services_grid {
        gap: 25px;
    }

    .our_services_card_inner {
        padding: 35px 25px;
    }

    .our_services_icon_wrapper {
        width: 100px;
        height: 100px;
    }

    .our_services_icon {
        width: 200px;
        height: 120px;
    }

    .our_services_card_title {
        font-size: 22px;
    }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
    .our_services_section {
        padding: 50px 15px;
    }

    .our_services_header {
        margin-bottom: 40px;
    }

    .our_services_subtitle {
        font-size: 14px;
    }

    .our_services_title {
        font-size: 32px;
    }

    .our_services_description {
        font-size: 15px;
    }

    .our_services_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .our_services_card_inner {
        padding: 30px 20px;
    }

    .our_services_icon_wrapper {
        width: 90px;
        height: 90px;
    }

    .our_services_icon {
        width: 200px;
        height: 100px;
    }

    .our_services_card_title {
        font-size: 20px;
    }

    .our_services_card_text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .our_services_btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Mobile (576px and below) */
@media screen and (max-width: 576px) {
    .our_services_section {
        padding: 40px 15px;
    }

    .our_services_subtitle {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .our_services_subtitle::after,
    .our_services_subtitle::before {
        width: 20px;
    }

    .our_services_title {
        font-size: 28px;
        margin: 15px 0;
    }

    .our_services_description {
        font-size: 14px;
        line-height: 1.6;
    }

    .our_services_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our_services_card {
        border-radius: 15px;
    }

    .our_services_card_inner {
        padding: 30px 20px;
    }

    .our_services_icon_wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .our_services_icon {
        width: 200px;
        height: 100px;
    }

    .our_services_card_title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .our_services_card_text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .our_services_btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* Reduce animation intensity on mobile */
    .our_services_card:hover {
        transform: translateY(-5px);
    }

    .our_services_card:hover .our_services_icon_wrapper {
        transform: scale(1.05) rotate(3deg);
    }
}

/* Extra Small Mobile (400px and below) */
@media screen and (max-width: 400px) {
    .our_services_section {
        padding: 35px 12px;
    }

    .our_services_title {
        font-size: 24px;
    }

    .our_services_description {
        font-size: 13px;
    }

    .our_services_card_inner {
        padding: 25px 18px;
    }

    .our_services_icon_wrapper {
        width: 70px;
        height: 70px;
    }

    .our_services_icon {
        width: 200px;
        height: 100px;
    }

    .our_services_card_title {
        font-size: 18px;
    }

    .our_services_card_text {
        font-size: 13px;
    }

    .our_services_btn {
        padding: 9px 20px;
        font-size: 13px;
    }
}

/* Hover Effects - Disable on Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .our_services_card:hover {
        transform: none;
        box-shadow: none;
    }

    .our_services_card:active {
        transform: scale(0.98);
    }

    .our_services_btn:hover {
        transform: none;
    }

    .our_services_btn:active {
        transform: scale(0.95);
    }
}

/* Print Styles */
@media print {
    .our_services_section {
        background: white;
        padding: 20px;
    }

    .our_services_bg_pattern {
        display: none;
    }

    .our_services_card {
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }

    .our_services_btn {
        display: none;
    }
}

/* why choose us */

/* counter */

/* Counter Section Styles - Improved Color Combination */
.counter_section {
    padding: 80px 20px;
    background-color: #9C1414 ;
    position: relative;
    overflow: hidden;
}

.counter_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(248, 169, 34, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(156, 20, 20, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.counter_container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.counter_main-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F8A922;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counter_main-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F8A922 0%, #9C1414 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(248, 169, 34, 0.4);
}

.counter_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.counter_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(248, 169, 34, 0.2);
}

.counter_item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #F8A922;
    box-shadow: 0 15px 40px rgba(248, 169, 34, 0.25),
                0 5px 15px rgba(156, 20, 20, 0.15);
}

.counter_circle {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 3px solid rgba(248, 169, 34, 0.3);
}

/* Different moon phase backgrounds for each counter */


/* Overlay effect on hover */
.counter_circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(248, 169, 34, 0.15) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.counter_item:hover .counter_circle {
    border-color: #F8A922;
    box-shadow: 0 0 30px rgba(248, 169, 34, 0.4);
}

.counter_item:hover .counter_circle::before {
    opacity: 1;
}

.counter_number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F8A922;
    line-height: 1;
    position: relative;
    z-index: 2;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.counter_item:hover .counter_number {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(248, 169, 34, 0.8),
                 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.counter_plus {
    position: absolute;
    top: 35%;
    right: 15%;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.9;
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.counter_item:hover .counter_plus {
    color: #F8A922;
}

.counter_label {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.counter_label-top {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.counter_label-bottom {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.counter_item:hover .counter_label-bottom {
    color: #F8A922;
}

/* Pulse Animation */
@keyframes counter_pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(248, 169, 34, 0.3),
                    0 0 40px rgba(248, 169, 34, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(248, 169, 34, 0.5),
                    0 0 60px rgba(248, 169, 34, 0.2);
    }
}

/* Glow effect on hover */
.counter_item:hover .counter_circle {
    animation: counter_pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .counter_grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .counter_circle {
        width: 160px;
        height: 160px;
    }
    
    .counter_number {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .counter_section {
        padding: 60px 15px;
    }
    
    .counter_main-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .counter_grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 25px;
        padding: 0 10px;
    }
    
    .counter_item {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .counter_circle {
        width: 140px;
        height: 140px;
    }
    
    .counter_number {
        font-size: 2.5rem;
    }
    
    .counter_plus {
        font-size: 1.5rem;
        top: 30%;
        right: 10%;
    }
    
    .counter_label-top {
        font-size: 0.9rem;
    }
    
    .counter_label-bottom {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .counter_main-heading {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .counter_grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .counter_item {
        padding: 20px;
    }
    
    .counter_circle {
        width: 160px;
        height: 160px;
    }
    
    .counter_number {
        font-size: 2.8rem;
    }
    
    .counter_label-top {
        font-size: 0.95rem;
    }
    
    .counter_label-bottom {
        font-size: 1.15rem;
    }
}

/* Animation for counter appearance */
@keyframes counter_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter_item {
    animation: counter_fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.counter_item:nth-child(1) { animation-delay: 0.1s; }
.counter_item:nth-child(2) { animation-delay: 0.2s; }
.counter_item:nth-child(3) { animation-delay: 0.3s; }
.counter_item:nth-child(4) { animation-delay: 0.4s; }
.counter_item:nth-child(5) { animation-delay: 0.5s; }

/* faq section */

/* ====================================
   FAQ SECTION STYLES
   ==================================== */

.faq_section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    position: relative;
    overflow: hidden;
}

.faq_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(248, 169, 34, 0.03) 0%, transparent 70%);
    animation: faq_pulse 15s ease-in-out infinite;
}

@keyframes faq_pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.faq_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ====================================
   LEFT SIDE - IMAGE SECTION
   ==================================== */

.faq_image_wrapper {
    position: sticky;
    top: 100px;
    animation: faq_fadeInLeft 0.8s ease-out;
}

@keyframes faq_fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq_image_container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(156, 20, 20, 0.15);
}

.faq_main_image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.faq_image_container:hover .faq_main_image {
    transform: scale(1.05);
}

.faq_image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(156, 20, 20, 0.1) 0%, 
        rgba(248, 169, 34, 0.15) 100%);
    pointer-events: none;
}

.faq_image_decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    border: 3px solid #F8A922;
    border-radius: 20px;
    z-index: -1;
    animation: faq_rotate 20s linear infinite;
}

@keyframes faq_rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.faq_trust_badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: faq_slideUp 1s ease-out 0.5s both;
}

@keyframes faq_slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq_trust_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.faq_trust_icon svg {
    width: 28px;
    height: 28px;
}

.faq_trust_title {
    font-size: 16px;
    font-weight: 700;
    color: #9C1414;
    margin-bottom: 3px;
}

.faq_trust_subtitle {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ====================================
   RIGHT SIDE - FAQ CONTENT
   ==================================== */

.faq_content_wrapper {
    animation: faq_fadeInRight 0.8s ease-out;
}

@keyframes faq_fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq_header {
    margin-bottom: 40px;
}

.faq_subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #F8A922;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.faq_subtitle::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #9C1414;
    animation: faq_twinkle 2s ease-in-out infinite;
}

@keyframes faq_twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.faq_title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #9C1414 0%, #F8A922 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq_description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 90%;
}

/* ====================================
   FAQ ITEMS
   ==================================== */

.faq_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq_item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: faq_itemFadeIn 0.5s ease-out backwards;
}

.faq_item:nth-child(1) { animation-delay: 0.1s; }
.faq_item:nth-child(2) { animation-delay: 0.2s; }
.faq_item:nth-child(3) { animation-delay: 0.3s; }
.faq_item:nth-child(4) { animation-delay: 0.4s; }
.faq_item:nth-child(5) { animation-delay: 0.5s; }

@keyframes faq_itemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq_item:hover {
    box-shadow: 0 8px 25px rgba(156, 20, 20, 0.1);
    transform: translateY(-2px);
}

.faq_item.active {
    box-shadow: 0 8px 25px rgba(248, 169, 34, 0.2);
}

.faq_question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq_question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #F8A922, #9C1414);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq_item.active .faq_question::before {
    transform: scaleY(1);
}

.faq_question:hover {
    background: rgba(248, 169, 34, 0.03);
}

.faq_question_text {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq_item.active .faq_question_text {
    color: #9C1414;
}

.faq_icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq_icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
}

.faq_item.active .faq_icon {
    background: linear-gradient(135deg, #9C1414 0%, #F8A922 100%);
    transform: rotate(180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_item.active .faq_answer {
    max-height: 500px;
}

.faq_answer_content {
    padding: 0 30px 25px 30px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    animation: faq_answerSlide 0.5s ease-out;
}

@keyframes faq_answerSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   CTA SECTION
   ==================================== */

.faq_cta {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(156, 20, 20, 0.05) 0%, rgba(248, 169, 34, 0.05) 100%);
    border-radius: 15px;
    text-align: center;
    border: 2px dashed rgba(248, 169, 34, 0.3);
}

.faq_cta_text {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq_cta_button {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.faq_cta_button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.faq_cta_button:hover::before {
    width: 300px;
    height: 300px;
}

.faq_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 169, 34, 0.4);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 992px) {
    .faq_container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq_image_wrapper {
        position: relative;
        top: 0;
    }

    .faq_title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .faq_section {
        padding: 60px 15px;
    }

    .faq_container {
        gap: 40px;
    }

    .faq_title {
        font-size: 28px;
    }

    .faq_description {
        font-size: 15px;
        max-width: 100%;
    }

    .faq_trust_badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .faq_trust_icon {
        width: 45px;
        height: 45px;
    }

    .faq_trust_icon svg {
        width: 24px;
        height: 24px;
    }

    .faq_trust_title {
        font-size: 14px;
    }

    .faq_trust_subtitle {
        font-size: 12px;
    }

    .faq_question {
        padding: 20px;
    }

    .faq_question_text {
        font-size: 16px;
    }

    .faq_answer_content {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    .faq_icon {
        width: 28px;
        height: 28px;
    }

    .faq_icon svg {
        width: 16px;
        height: 16px;
    }

    .faq_cta {
        padding: 25px 20px;
    }

    .faq_cta_text {
        font-size: 16px;
    }

    .faq_cta_button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq_section {
        padding: 50px 10px;
    }

    .faq_title {
        font-size: 24px;
    }

    .faq_subtitle {
        font-size: 12px;
        padding-left: 25px;
    }

    .faq_image_decoration {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }

    .faq_question {
        padding: 18px 15px;
        gap: 15px;
    }

    .faq_question_text {
        font-size: 15px;
    }

    .faq_answer_content {
        padding: 0 15px 18px 15px;
        font-size: 13.5px;
        line-height: 1.6;
    }

    .faq_trust_badge {
        padding: 12px 15px;
        gap: 12px;
    }

    .faq_trust_icon {
        width: 40px;
        height: 40px;
    }

    .faq_cta_button {
        display: block;
        width: 100%;
    }
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

.faq_question:focus {
    outline: 2px solid #F8A922;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .faq_section::before,
    .faq_image_decoration,
    .faq_subtitle::before {
        animation: none;
    }
    
    .faq_answer {
        transition: none;
    }
}

/* testimonial section */


/* ========================================
   TESTIMONIAL SECTION STYLES
   ======================================== */

.testimonial_section {
    padding: 80px 0px;
    background: linear-gradient(135deg, #9C1414 0%, #F8A922 100%);
    position: relative;
    overflow: hidden;
}

.testimonial_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

.testimonial_container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.testimonial_header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial_title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.testimonial_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

.testimonial_subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Slider Wrapper */
.testimonial_slider_wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
}

.testimonial_slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial_slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Testimonial Card */
.testimonial_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Image Wrapper with Rotating Circle */
.testimonial_image_wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

/* Rotating decorative circle - uses chakra image */
.testimonial_rotating_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    animation: testimonial_rotate 10s linear infinite;
    background-image: url('../images/chakraa.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial_rotating_circle::before {
    display: none;
}

@keyframes testimonial_rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Static user image in center */
.testimonial_image {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
    margin: 0 auto;
}

.testimonial_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* Content */
.testimonial_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial_text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial_text::before {
    content: '"';
    font-size: 60px;
    color: #F8A922;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial_text::after {
    content: '"';
    font-size: 60px;
    color: #F8A922;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial_name {
    font-size: 22px;
    font-weight: 700;
    color: #9C1414;
    margin-bottom: 15px;
}

.testimonial_zodiac {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial_zodiac span {
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial_zodiac span i {
    color: #F8A922;
    font-size: 14px;
}

/* Navigation Buttons */
.testimonial_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #9C1414;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial_nav:hover {
    background: #9C1414;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial_nav_prev {
    left: 5px;
}

.testimonial_nav_next {
    right: 5px;
}

.testimonial_nav i {
    font-size: 20px;
}

/* Dots Navigation */
.testimonial_dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial_dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.testimonial_dot_active {
    background: #ffffff;
    transform: scale(1.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .testimonial_section {
        padding: 60px 15px;
    }

    .testimonial_title {
        font-size: 38px;
    }

    .testimonial_subtitle {
        font-size: 16px;
    }

    .testimonial_slide {
        flex: 0 0 50%;
    }

    .testimonial_card {
        padding: 35px 25px;
    }

    .testimonial_image_wrapper {
        width: 130px;
        height: 130px;
    }

    .testimonial_rotating_circle {
        width: 160px;
        height: 160px;
    }

    .testimonial_image {
        width: 130px;
        height: 130px;
    }

    .testimonial_nav {
        width: 45px;
        height: 45px;
    }

    .testimonial_nav_prev {
        left: -22px;
    }

    .testimonial_nav_next {
        right: -22px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .testimonial_section {
        padding: 50px 10px;
    }

    .testimonial_header {
        margin-bottom: 40px;
    }

    .testimonial_title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .testimonial_subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .testimonial_slide {
        flex: 0 0 100%;
        padding: 0 10px;
    }

    .testimonial_card {
        padding: 30px 20px;
    }

    .testimonial_image_wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }

    .testimonial_rotating_circle {
        width: 150px;
        height: 150px;
    }

    .testimonial_image {
        width: 120px;
        height: 120px;
    }

    .testimonial_text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial_text::before,
    .testimonial_text::after {
        font-size: 50px;
    }

    .testimonial_name {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .testimonial_zodiac {
        gap: 15px;
    }

    .testimonial_zodiac span {
        font-size: 12px;
    }

    .testimonial_nav {
        width: 40px;
        height: 40px;
    }

    .testimonial_nav i {
        font-size: 16px;
    }

    .testimonial_nav_prev {
        left: 5px;
    }

    .testimonial_nav_next {
        right: 5px;
    }

    .testimonial_dots {
        margin-top: 30px;
        gap: 10px;
    }

    .testimonial_dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .testimonial_section {
        padding: 40px 10px;
    }

    .testimonial_title {
        font-size: 28px;
    }

    .testimonial_subtitle {
        font-size: 14px;
    }

    .testimonial_card {
        padding: 25px 15px;
    }

    .testimonial_image_wrapper {
        width: 100px;
        height: 100px;
    }

    .testimonial_rotating_circle {
        width: 140px;
        height: 140px;
    }

    .testimonial_image {
        width: 100px;
        height: 100px;
    }

    .testimonial_text {
        font-size: 14px;
    }

    .testimonial_name {
        font-size: 18px;
    }

    .testimonial_zodiac span {
        font-size: 11px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .testimonial_title {
        font-size: 24px;
    }

    .testimonial_subtitle {
        font-size: 13px;
    }

    .testimonial_text {
        font-size: 13px;
    }

    .testimonial_nav {
        width: 35px;
        height: 35px;
    }

    .testimonial_nav i {
        font-size: 14px;
    }
}




        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #F8A922;
            --primary-red: #9C1414;
            --white: #ffffff;
            --black: #000000;
           
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        .about-section {
            background: linear-gradient(135deg, var(--primary-red) 0%, #7a1010 50%, var(--primary-red) 100%);
            padding: 80px 20px !important;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(248, 169, 34, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(248, 169, 34, 0.1) 0%, transparent 50%);
            pointer-events: none;
            animation: aboutBackgroundPulse 8s ease-in-out infinite;
        }

        .about-section::after {
            content: '✦';
            position: absolute;
            font-size: 20px;
            color: var(--primary-orange);
            animation: aboutTwinkle 3s ease-in-out infinite;
            opacity: 0;
        }

        .about-stars {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .about-star {
            position: absolute;
            color: var(--primary-orange);
            font-size: 12px;
            animation: aboutTwinkle 2s ease-in-out infinite;
        }

        .about-star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .about-star:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
        .about-star:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; }
        .about-star:nth-child(4) { top: 70%; left: 85%; animation-delay: 1.5s; }
        .about-star:nth-child(5) { top: 30%; left: 50%; animation-delay: 2s; }
        .about-star:nth-child(6) { top: 80%; left: 60%; animation-delay: 2.5s; }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 400px 1fr 450px;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-left-image {
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .about-zodiac-wheel {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 400px;
            animation: aboutFloating 6s ease-in-out infinite;
        }

        .about-zodiac-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: aboutRotate 20s linear infinite;
            filter: drop-shadow(0 0 30px rgba(248, 169, 34, 0.8)) drop-shadow(0 0 60px rgba(248, 169, 34, 0.4));
        }

        .about-center-content {
            color: var(--white);
            display: flex;
            flex-direction: column;
            gap: 25px;
            animation: aboutFadeInUp 1.2s ease-out;
        }

        .about-heading {
            font-size: 52px;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            animation: aboutGlowPulse 3s ease-in-out infinite;
        }

        .about-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange) 0%, transparent 100%);
            border-radius: 2px;
            animation: aboutLineGrow 2s ease-out;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.95);
            text-align: justify;
            animation: aboutSlideInLeft 1.5s ease-out;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .about-cta-button {
            display: inline-block;
            padding: 16px 45px;
            background: linear-gradient(90deg, var(--primary-orange) 0%, #ffb942 100%);
            color: var(--black);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.5);
            align-self: flex-start;
            position: relative;
            overflow: hidden;
            animation: aboutButtonPulse 2s ease-in-out infinite;
        }

        .about-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .about-cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .about-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(248, 169, 34, 0.7);
        }

        .about-call-box {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #ffb942 100%);
            padding: 25px 35px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            max-width: 400px;
            transition: all 0.4s ease;
            animation: aboutCallBoxFloat 3s ease-in-out infinite;
            box-shadow: 0 8px 30px rgba(248, 169, 34, 0.6), 0 0 60px rgba(248, 169, 34, 0.3);
            border: 3px solid var(--white);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .about-call-box::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, height 0.6s;
        }

        .about-call-box:hover::before {
            width: 400px;
            height: 400px;
        }

        .about-call-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: aboutCallShine 3s linear infinite;
        }

        .about-call-box:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 12px 40px rgba(248, 169, 34, 0.8), 0 0 80px rgba(248, 169, 34, 0.5);
        }

        .about-call-icon {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: aboutPhoneWave 2s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
        }

        .about-call-icon::before,
        .about-call-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--white);
            animation: aboutPhoneRipple 2s ease-out infinite;
        }

        .about-call-icon::after {
            animation-delay: 1s;
        }

        .about-call-icon i {
            font-size: 32px;
            color: var(--primary-red);
            animation: aboutPhoneBounce 1s ease-in-out infinite;
        }

        .about-call-details {
            position: relative;
            z-index: 1;
        }

        .about-call-details p {
            color: var(--black);
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-call-number {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-red);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            animation: aboutNumberPulse 2s ease-in-out infinite;
        }

        .about-form-container {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #ffb942 100%);
            padding: 45px 35px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            animation: aboutSlideInRight 1s ease-out;
            border: 3px solid var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-form-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: aboutFormGlow 6s linear infinite;
        }

        .about-form-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .about-form-title {
            font-size: 30px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
            animation: aboutTextGlow 3s ease-in-out infinite;
        }

        .about-form-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--black);
            margin: 10px auto 0;
            animation: aboutLineExpand 2s ease-in-out infinite;
        }

        .about-form-group {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: aboutFadeInUp 1.5s ease-out;
        }

        .about-form-group:nth-child(2) { animation-delay: 0.1s; }
        .about-form-group:nth-child(3) { animation-delay: 0.2s; }
        .about-form-group:nth-child(4) { animation-delay: 0.3s; }

        .about-form-input,
        .about-form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--white);
            border-radius: 50px;
            font-size: 14px;
            background: var(--white);
            color: var(--black);
            transition: all 0.3s ease;
        }

        .about-form-input:focus,
        .about-form-textarea:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(156, 20, 20, 0.3);
            transform: translateY(-2px);
            border-color: var(--primary-red);
        }

        .about-form-input::placeholder,
        .about-form-textarea::placeholder {
            color: #666;
        }

        .about-form-textarea {
            border-radius: 20px;
            resize: vertical;
            min-height: 100px;
        }

        .about-form-input-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            animation: aboutIconBounce 2s ease-in-out infinite;
        }

        .about-captcha-container {
            background: var(--white);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 2px solid var(--primary-red);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .about-captcha-question {
            font-size: 16px;
            font-weight: 600;
            color: var(--black);
        }

        .about-captcha-input {
            width: 80px;
            padding: 8px 15px;
            border: 2px solid var(--primary-red);
            border-radius: 25px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .about-captcha-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(156, 20, 20, 0.2);
            transform: scale(1.05);
        }

        .about-captcha-refresh {
            background: var(--primary-red);
            border: none;
            color: var(--white);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(156, 20, 20, 0.4);
        }

        .about-captcha-refresh:hover {
            transform: rotate(180deg) scale(1.1);
            box-shadow: 0 4px 12px rgba(156, 20, 20, 0.6);
        }

        .about-submit-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(90deg, var(--primary-red) 0%, #c41e1e 100%);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(156, 20, 20, 0.5);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .about-submit-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .about-submit-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .about-submit-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(156, 20, 20, 0.7);
        }

        @keyframes aboutRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes aboutFloating {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-25px) scale(1.05); }
        }

        @keyframes aboutTwinkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        }

        @keyframes aboutGlowPulse {
            0%, 100% { text-shadow: 0 0 10px rgba(248, 169, 34, 0.5); }
            50% { text-shadow: 0 0 20px rgba(248, 169, 34, 0.8), 0 0 30px rgba(248, 169, 34, 0.6); }
        }

        @keyframes aboutPhoneRing {
            0%, 100% { transform: rotate(0deg); }
            10%, 30%, 50%, 70%, 90% { transform: rotate(-15deg); }
            20%, 40%, 60%, 80% { transform: rotate(15deg); }
        }

        @keyframes aboutCallBoxFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes aboutCallShine {
            0% { transform: rotate(0deg) translate(-50%, -50%); }
            100% { transform: rotate(360deg) translate(-50%, -50%); }
        }

        @keyframes aboutPhoneWave {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes aboutPhoneRipple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        @keyframes aboutPhoneBounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-5px) rotate(-10deg); }
            75% { transform: translateY(-5px) rotate(10deg); }
        }

        @keyframes aboutNumberPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes aboutSlideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutSlideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes aboutButtonPulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(248, 169, 34, 0.5); }
            50% { box-shadow: 0 4px 25px rgba(248, 169, 34, 0.8); }
        }

        @keyframes aboutLineGrow {
            from { width: 0; }
            to { width: 120px; }
        }

        @keyframes aboutLineExpand {
            0%, 100% { width: 80px; }
            50% { width: 100px; }
        }

        @keyframes aboutTextGlow {
            0%, 100% { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
            50% { text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.2); }
        }

        @keyframes aboutIconBounce {
            0%, 100% { transform: translateY(-50%); }
            50% { transform: translateY(-60%); }
        }

        @keyframes aboutFormGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes aboutBackgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @media (max-width: 1200px) {
            .about-container {
                grid-template-columns: 350px 1fr 400px;
                gap: 40px;
            }

            .about-zodiac-wheel {
                height: 350px;
            }

            .about-heading {
                font-size: 44px;
            }
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-zodiac-wheel {
                width: 350px;
                height: 350px;
                margin: 0 auto;
            }

            .about-center-content {
                text-align: center;
                align-items: center;
            }

            .about-call-box {
                margin: 0 auto;
            }

            .about-form-container {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 15px !important;
            }

            .about-zodiac-wheel {
                width: 300px;
                height: 300px;
            }

            .about-heading {
                font-size: 36px;
            }

            .about-description {
                font-size: 15px;
                text-align: center;
            }

            .about-form-container {
                padding: 35px 25px;
            }

            .about-form-title {
                font-size: 26px;
            }

            .about-call-box {
                flex-direction: row;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .about-zodiac-wheel {
                width: 250px;
                height: 250px;
            }

            .about-heading {
                font-size: 30px;
            }

            .about-form-input,
            .about-form-textarea {
                padding: 12px 15px;
                font-size: 13px;
            }

            .about-cta-button {
                padding: 12px 30px;
                font-size: 14px;
            }

            .about-call-box {
                flex-direction: column;
                text-align: center;
            }
        }


                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
        }

        /* Footer Section Styles */
        .footer-section {
            background: linear-gradient(135deg, #5d0b0b 0%, #7a0f0f 100%);
            color: #fff;
            padding: 60px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F8A922 0%, #9C1414 50%, #F8A922 100%);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-logo {
            margin-bottom: 20px;
            max-width: 180px;
        }

        .footer-logo img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
        }

        .footer-about {
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-heading {
            position: relative;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 12px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #F8A922, #ffc107);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #F8A922;
        }

        .footer-links a::before {
            content: '›';
            margin-right: 10px;
            font-size: 22px;
            color: #F8A922;
            font-weight: bold;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 10px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .footer-contact-item:hover {
            background: rgba(248, 169, 34, 0.1);
        }

        .footer-contact-icon {
            color: #F8A922;
            margin-right: 15px;
            margin-top: 2px;
            min-width: 20px;
            text-align: center;
        }

        .footer-contact-icon svg {
            width: 18px;
            height: 18px;
        }

        .footer-contact-info {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .footer-contact-info a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-info a:hover {
            color: #F8A922;
        }

        .footer-social {
            margin-top: 20px;
        }

        .footer-social-heading {
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
            color: #F8A922;
        }

        .footer-social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .footer-social-icon svg {
            color: #9C1414;
            width: 18px;
            height: 18px;
        }

        .footer-social-icon:hover {
            background: linear-gradient(135deg, #F8A922, #ffc107);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(248, 169, 34, 0.4);
        }

        .footer-social-icon:hover svg {
            color: white;
        }

        .footer-copyright {
            text-align: center;
            padding: 25px 20px;
            margin-top: 40px;
            background-color: rgba(0, 0, 0, 0.3);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            border-top: 1px solid rgba(248, 169, 34, 0.3);
        }

        .footer-copyright a {
            color: #F8A922;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 0;
            }

            .footer-container {
                gap: 35px;
            }

            .footer-heading {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-column {
                text-align: left;
            }

            .footer-social-icons {
                justify-content: flex-start;
            }

            .footer-about {
                font-size: 14px;
            }

            .footer-copyright {
                font-size: 13px;
                padding: 20px 15px;
            }
        }

        @media (max-width: 380px) {
            .footer-section {
                padding: 30px 0 0;
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-heading {
                font-size: 17px;
            }

            .footer-links a,
            .footer-about,
            .footer-contact-info {
                font-size: 13px;
            }
        }


        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-orange: #F8A922;
            --primary-red: #9C1414;
            --white: #ffffff;
            --black: #000000;
            --whatsapp-green: #25D366;
        }
        body { font-family: 'Arial', sans-serif; }

        /* Service Carousel - Now at Top */
        .header-carousel-wrapper {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            display: grid;
            grid-template-columns: 1fr auto auto;
            align-items: center;
            gap: 20px;
            padding-right: 30px;
        }
        
        .header-carousel-section {
            overflow: hidden;
            position: relative;
        }
        
        .header-carousel-track {
            display: flex;
            animation: scroll 40s linear infinite;
            width: max-content;
        }
        
        .header-carousel-item {
            padding: 0 30px;
            color: var(--white);
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
            position: relative;
        }
        
        .header-carousel-item:after {
            content: '★';
            position: absolute;
            right: 10px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Contact Buttons Container */
        .header-contact-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        /* Phone Number with Pulse */
        .header-phone-pulse {
            flex-shrink: 0;
        }
        
        .header-phone-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: phonePulse 300ms ease-in-out infinite;
        }
        
        @keyframes phonePulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 20px rgba(248, 169, 34, 0.5);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 30px rgba(248, 169, 34, 0.8);
                transform: scale(1.05);
            }
        }
        
        .header-phone-link svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
            animation: phoneRing 1.2s ease-in-out infinite;
        }
        
        @keyframes phoneRing {
            0%, 100% { transform: rotate(0deg); }
            10%, 30%, 50%, 70%, 90% { transform: rotate(-15deg); }
            20%, 40%, 60%, 80% { transform: rotate(15deg); }
        }
        
        .header-phone-link:hover {
            animation: none;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 30px rgba(248, 169, 34, 1);
            transform: scale(1.1);
        }
        
        .header-phone-link:hover svg {
            animation: none;
            transform: scale(1.2);
        }

        /* WhatsApp Button with Pulse */
        .header-whatsapp-pulse {
            flex-shrink: 0;
        }
        
        .header-whatsapp-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            padding: 12px 25px;
            background: rgba(37, 211, 102, 0.25);
            border: 2px solid rgba(37, 211, 102, 0.5);
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: whatsappPulse 2.5s ease-in-out infinite;
        }
        
        @keyframes whatsappPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.5);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 0 30px rgba(37, 211, 102, 0.8);
                transform: scale(1.05);
            }
        }
        
        .header-whatsapp-link svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
            animation: whatsappBounce 1s ease-in-out infinite;
        }
        
        @keyframes whatsappBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .header-whatsapp-link:hover {
            animation: none;
            background: rgba(37, 211, 102, 0.4);
            box-shadow: 0 0 30px rgba(37, 211, 102, 1);
            transform: scale(1.1);
        }
        
        .header-whatsapp-link:hover svg {
            animation: none;
            transform: scale(1.2);
        }

        /* Main Header */
        .header-main {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 80px;
        }
        
        .header-logo img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }
        
        .header-menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-red);
            padding: 5px;
            background: none;
            border: none;
        }
        
        .header-mobile-overlay {
            display: none;
        }
        
        .header-close-menu {
            display: none;
        }
        
        .header-navbar {
            display: flex;
            align-items: center;
        }
        
        .header-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .header-menu li a {
            display: block;
            padding: 12px 18px;
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        
        .header-menu > li > a:hover {
            color: var(--primary-red);
            background: rgba(248, 169, 34, 0.1);
        }

        /* Dropdown toggle buttons - HIDDEN ON DESKTOP */
        .header-dropdown-toggle {
            display: none;
        }

        /* Dropdown Styles */
        .header-dropdown {
            position: relative;
        }
        
        .header-submenu, .header-nested-submenu {
            list-style: none;
            display: none;
        }
        
        .header-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 250px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: visible;
            z-index: 2000;
        }
        
        .header-submenu li {
            position: relative;
        }
        
        .header-submenu li a {
            padding: 12px 20px;
            color: var(--black);
            font-size: 14px;
            border-left: 3px solid transparent;
            white-space: nowrap;
        }
        
        .header-submenu li a:hover {
            background: linear-gradient(90deg, rgba(248, 169, 34, 0.1) 0%, transparent 100%);
            border-left-color: var(--primary-orange);
            color: var(--primary-red);
            padding-left: 25px;
        }

        /* Nested Dropdown */
        .header-nested-dropdown {
            position: relative;
        }
        
        .header-nested-dropdown > a::after {
            content: '›';
            float: right;
            font-size: 18px;
            margin-left: 15px;
        }
        
        .header-nested-submenu {
            position: absolute;
            top: 0;
            right: 100%;
            background: var(--white);
            min-width: 220px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
            margin-left: 0;
            z-index: 3000;
        }
        
        .header-nested-submenu li a {
            padding: 12px 20px;
            color: var(--black);
            font-size: 14px;
            border-left: 3px solid transparent;
            white-space: nowrap;
        }
        
        .header-nested-submenu li a:hover {
            background: linear-gradient(90deg, rgba(248, 169, 34, 0.1) 0%, transparent 100%);
            border-left-color: var(--primary-orange);
            color: var(--primary-red);
            padding-left: 25px;
        }

        /* DESKTOP HOVER STYLES - ABOVE 768PX */
        @media (min-width: 769px) {
            .header-dropdown:hover > .header-submenu {
                display: block !important;
            }
            .header-nested-dropdown:hover > .header-nested-submenu {
                display: block !important;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Hide carousel and WhatsApp on mobile */
            .header-carousel-section {
                display: none;
            }
            
            .header-whatsapp-pulse {
                display: none;
            }
            
            .header-carousel-wrapper {
                padding: 15px 20px;
                display: flex;
                justify-content: center;
                grid-template-columns: none;
            }
            
            .header-contact-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .header-phone-link {
                font-size: 18px;
                padding: 15px 35px;
                background: var(--white);
                color: var(--primary-red);
                border: 3px solid rgba(156, 20, 20, 0.3);
            }
            
            .header-phone-link svg {
                fill: var(--primary-red);
                width: 26px;
                height: 26px;
            }
            
            @keyframes phonePulse {
                0%, 100% {
                    box-shadow: 0 0 0 0 rgba(156, 20, 20, 0.7), 0 4px 20px rgba(0, 0, 0, 0.2);
                    transform: scale(1);
                }
                50% {
                    box-shadow: 0 0 0 12px rgba(156, 20, 20, 0), 0 8px 30px rgba(248, 169, 34, 0.5);
                    transform: scale(1.05);
                }
            }
            
            .header-logo img {
                height: 70px;
            }
            
            .header-nav-container {
                min-height: 70px;
                padding: 0 15px;
            }
            
            .header-menu-toggle {
                display: block;
            }
            
            .header-mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.6);
                z-index: 9999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .header-mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .header-navbar {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                transition: right 0.3s ease;
                overflow-y: auto;
                z-index: 10000;
                flex-direction: column;
            }
            
            .header-navbar.active {
                right: 0;
            }
            
            .header-close-menu {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 18px 20px;
                position: sticky;
                top: 0;
                z-index: 100;
                cursor: pointer;
            }
            
            .header-close-menu-text {
                color: var(--white);
                font-size: 20px;
                font-weight: bold;
            }
            
            .header-close-menu-icon {
                color: var(--primary-red);
                font-size: 40px;
                line-height: 1;
            }
            
            .header-menu {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            
            .header-menu > li {
                border-bottom: 1px solid #e5e5e5;
            }
            
            .header-menu li a {
                padding: 16px 20px;
                font-size: 15px;
                border-radius: 0;
            }

            .header-dropdown-toggle {
                display: flex;
                position: absolute;
                right: 0;
                top: 0;
                width: 50px;
                height: 100%;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                color: var(--primary-red);
                cursor: pointer;
                background: transparent;
                border: none;
                z-index: 1;
            }
            
            .header-dropdown > a, .header-nested-dropdown > a {
                position: relative;
                padding-right: 50px;
            }

            .header-dropdown.active > .header-submenu,
            .header-nested-dropdown.active > .header-nested-submenu {
                display: block !important;
            }
            
            .header-submenu, .header-nested-submenu {
                position: static;
                box-shadow: none;
                border-radius: 0;
                background: #f9f9f9;
                min-width: auto;
                margin-left: 0;
            }
            
            .header-dropdown.active > a {
                background: rgba(248, 169, 34, 0.1);
                color: var(--primary-red);
            }
            
            .header-submenu li {
                border-bottom: 1px solid #ececec;
            }
            
            .header-submenu li:last-child {
                border-bottom: none;
            }
            
            .header-submenu li a {
                padding: 14px 20px 14px 35px;
                font-size: 14px;
                white-space: normal;
                border-left: none;
                background: var(--white);
            }
            
            .header-submenu li a:hover {
                padding-left: 35px;
            }
            
            .header-nested-dropdown.active > a {
                background: rgba(156, 20, 20, 0.1);
                color: var(--primary-red);
            }
            
            .header-nested-submenu {
                background: #f5f5f5;
            }
            
            .header-nested-submenu li {
                border-bottom: 1px solid #e8e8e8;
            }
            
            .header-nested-submenu li:last-child {
                border-bottom: none;
            }
            
            .header-nested-submenu li a {
                padding: 13px 20px 13px 45px;
                font-size: 13px;
                border-left: none;
            }
            
            .header-nested-submenu li a:hover {
                padding-left: 45px;
            }

            .header-nested-dropdown > a::after {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .header-navbar {
                width: 90%;
            }
        }
   

         /* Fixed Button Container */
    .fix-btn-container {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* Base Button Style */
    .fix-btn {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: white;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .fix-btn:hover {
      transform: scale(1.1);
    }

    /* WhatsApp Button */
    .fix-btn-whatsapp {
      background: #25D366;
      animation: fix-btn-pulse 2s infinite;
    }

    /* Call Button */
    .fix-btn-call {
      background: #007bff;
    }

    /* Pulse Animation */
    @keyframes fix-btn-pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 600px) {
      .fix-btn-container {
        right: 12px;
        bottom: 12px;
        gap: 12px;
      }

      .fix-btn {
        width: 58px;
        height: 58px;
        font-size: 26px;
      }
    }

    /* EXTRA SMALL MOBILE */
    @media (max-width: 380px) {
      .fix-btn-container {
        right: 10px;
        bottom: 10px;
        gap: 10px;
      }

      .fix-btn {
        width: 54px;
        height: 54px;
        font-size: 24px;
      }
    }


    /* Location Section Styles */
.locations-section {
    position: relative;
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%); */
    background-color: #9C1414;
    overflow: hidden;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.locations-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #F8A922 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(248, 169, 34, 0.5);
}

.locations-subtitle {
    color: #F8A922;
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.locations-column {
    position: relative;
}

.locations-scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 480px; /* Height for exactly 6 items */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

/* Custom Scrollbar Styling */
.locations-scroll-wrapper::-webkit-scrollbar {
    width: 8px;
}

.locations-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(248, 169, 34, 0.1);
    border-radius: 10px;
}

.locations-scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    border-radius: 10px;
}

.locations-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700 0%, #F8A922 100%);
}

/* Firefox Scrollbar */
.locations-scroll-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #F8A922 rgba(248, 169, 34, 0.1);
}

.locations-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(248, 169, 34, 0.05);
    border: 1px solid rgba(248, 169, 34, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.locations-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 169, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.locations-item:hover::before {
    left: 100%;
}

.locations-item:hover {
    background: rgba(248, 169, 34, 0.1);
    border-color: #F8A922;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(248, 169, 34, 0.3);
}

.locations-icon {
    font-size: 20px;
    color: #F8A922;
    min-width: 24px;
    text-align: center;
}

.locations-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Animated Background Elements */
.locations-bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #F8A922, transparent),
        radial-gradient(2px 2px at 60px 70px, #ffd700, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, #F8A922, transparent);
    background-size: 200px 200px;
    animation: twinkle 3s infinite;
    opacity: 0.3;
}

.locations-zodiac-circle {
    position: absolute;
    font-size: 60px;
    color: rgba(248, 169, 34, 0.1);
    animation: float 6s ease-in-out infinite;
}

.locations-zodiac-1 { top: 10%; left: 5%; animation-delay: 0s; }
.locations-zodiac-2 { top: 20%; right: 10%; animation-delay: 1s; }
.locations-zodiac-3 { top: 50%; left: 8%; animation-delay: 2s; }
.locations-zodiac-4 { top: 70%; right: 15%; animation-delay: 3s; }
.locations-zodiac-5 { top: 85%; left: 20%; animation-delay: 4s; }
.locations-zodiac-6 { top: 40%; right: 5%; animation-delay: 5s; }

.locations-moon {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd700, #F8A922);
    opacity: 0.15;
    animation: pulse 4s ease-in-out infinite;
}

.locations-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.locations-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #F8A922;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

.locations-star:nth-child(1) { top: 25%; left: 15%; animation-delay: 0s; }
.locations-star:nth-child(2) { top: 45%; left: 75%; animation-delay: 0.5s; }
.locations-star:nth-child(3) { top: 65%; left: 25%; animation-delay: 1s; }
.locations-star:nth-child(4) { top: 80%; left: 60%; animation-delay: 1.5s; }
.locations-star:nth-child(5) { top: 35%; left: 85%; animation-delay: 2s; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* CTA Button Hover Effect */
.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(248, 169, 34, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .locations-title {
        font-size: 2rem;
    }
    
    .locations-scroll-wrapper {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 60px 15px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .locations-title {
        font-size: 1.75rem;
    }
    
    .locations-subtitle {
        font-size: 16px;
    }
    
    .locations-item {
        padding: 12px 15px;
    }
    
    .locations-text {
        font-size: 14px;
    }
    
    .locations-scroll-wrapper {
        max-height: 400px;
    }
    
    .cta-button-primary {
        font-size: 16px !important;
        padding: 12px 24px !important;
    }
}

@media (max-width: 480px) {
    .locations-title {
        font-size: 1.5rem;
    }
    
    .locations-subtitle {
        font-size: 14px;
    }
    
    .locations-zodiac-circle {
        font-size: 40px;
    }
    
    .locations-scroll-wrapper {
        max-height: 350px;
    }
}


/* Why Choose Us Section Styles */
.why_section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why_container {
    max-width: 1200px;
    margin: 0 auto;
}

.why_heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #9C1414;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.why_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F8A922, #9C1414);
    border-radius: 2px;
}

.why_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why_card {
    position: relative;
    height: 380px;
    perspective: 1000px;
    border-radius: 20px;
    overflow: hidden;
}

.why_card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #9C1414  0%, #0011ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 2;
}

.why_card:hover .why_card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why_chakra-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-image: url('../images/chakraaa.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    animation: why_rotate 20s linear infinite;
    z-index: 1;
}

@keyframes why_rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.why_icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 3;
}

.why_card:hover .why_icon {
    transform: scale(1.1) rotate(10deg);
}

.why_icon svg {
    width: 45px;
    height: 45px;
    color: #F8A922;
}

.why_card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    z-index: 3;
}

.why_card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    z-index: 3;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .why_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why_heading {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .why_section {
        padding: 60px 15px;
    }
    
    .why_heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .why_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why_card {
        height: auto;
        min-height: 320px;
    }
    
    .why_card-inner {
        padding: 35px 25px;
    }
    
    .why_icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .why_icon svg {
        width: 40px;
        height: 40px;
    }
    
    .why_card-title {
        font-size: 1.3rem;
    }
    
    .why_card-text {
        font-size: 0.95rem;
    }
    
    .why_chakra-bg {
        width: 280px;
        height: 280px;
    }
}

@media screen and (max-width: 480px) {
    .why_section {
        padding: 50px 10px;
    }
    
    .why_heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .why_heading::after {
        width: 80px;
        height: 3px;
    }
    
    .why_card {
        min-height: 300px;
    }
    
    .why_card-inner {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .why_icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .why_icon svg {
        width: 35px;
        height: 35px;
    }
    
    .why_card-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .why_card-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .why_chakra-bg {
        width: 240px;
        height: 240px;
    }
}

@media screen and (max-width: 360px) {
    .why_heading {
        font-size: 1.3rem;
    }
    
    .why_card-inner {
        padding: 25px 15px;
    }
    
    .why_icon {
        width: 55px;
        height: 55px;
    }
    
    .why_icon svg {
        width: 30px;
        height: 30px;
    }
    
    .why_card-title {
        font-size: 1.1rem;
    }
    
    .why_card-text {
        font-size: 0.85rem;
    }
}

/* Animation for cards on load */
.why_card {
    opacity: 0;
    animation: why_fadeInUp 0.6s ease forwards;
}

.why_card:nth-child(1) {
    animation-delay: 0.1s;
}

.why_card:nth-child(2) {
    animation-delay: 0.2s;
}

.why_card:nth-child(3) {
    animation-delay: 0.3s;
}

.why_card:nth-child(4) {
    animation-delay: 0.4s;
}

.why_card:nth-child(5) {
    animation-delay: 0.5s;
}

.why_card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes why_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance optimization */
.why_card-inner,
.why_chakra-bg,
.why_icon {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .why_chakra-bg {
        animation: none;
    }
    
    .why_card {
        animation: none;
        opacity: 1;
    }
    
    .why_card:hover .why_card-inner,
    .why_card:hover .why_icon {
        transform: none;
    }
}