/* 
   index-2.css 
   Design based on DriveHive Template
   Brand: Praj Refrigeration Industries
*/

:root {
    --primary: #03598f;
    /* Blue as set by user */
    --secondary: #121111;
    /* Deep Black */
    --accent: #F5F4EE;
    /* Beige */
    --light: #FFFFFF;
    --text-dark: #121111;
    --text-muted: #5a6a7e;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --radius-lg: 40px;
    --radius-md: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Components --- */
.btn-red {
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
    border: none;
}

.btn-red:hover {
    background: #d1161d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 29, 37, 0.3);
}

.pill-label {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 29, 37, 0.1);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* --- Header --- */
/* --- Premium Header Design --- */
.header_v2 {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 0;
    /* Handled by internal divs */
}

.top_v2 {
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.info_item {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info_item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.main_header_v2 {
    padding: 0;
}

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

.logo img,
.brand_logo {
    height: 100px !important;
    width: auto;
    object-fit: contain;
    transition: 0.3s;
}

.main_nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
}

.main_nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.main_nav li.active a,
.main_nav a:hover {
    color: var(--primary);
}

.main_nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main_nav li.active a::after,
.main_nav a:hover::after {
    width: 100%;
}

/* Dropdown Support */
.main_nav li.has-dropdown {
    position: relative;
    padding-right: 15px;
    /* Space for the arrow */
}

.main_nav li.has-dropdown>a::after {
    display: none;
    /* Hide standard underline on parents */
}

.main_nav li.has-dropdown:hover .dropdown_menu_v2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown_menu_v2 {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #03598f;
    list-style: none;
    padding: 6px 0;
    /* Significantly reduced */
    margin: 0;
    box-shadow: 0 25px 60px rgba(11, 26, 46, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border-radius: 0 0 15px 15px;
    border-top: 3px solid #ffc631;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown_menu_v2 li {
    padding: 0;
    width: 100%;
    display: block !important;
}

.dropdown_menu_v2 li a {
    display: block;
    padding: 5px 30px;
    /* Minimal padding */
    font-size: 0.82rem;
    /* Slightly smaller font for compactness */
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    width: 100%;
}

.dropdown_menu_v2 li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffc631 !important;
    padding-left: 40px;
}

.dropdown_menu_v2 li a::after {
    display: none !important;
}

/* New Button Style */
.btn-glow-blue {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    /* Industrial Sharp Style */
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(3, 89, 143, 0.3);
    border: none;
}

.btn-glow-blue:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Utilities */
.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}


/* --- Hero --- */
.hero_v2 {
    background: var(--secondary);
    padding: 120px 0 180px;
    color: #fff;
    position: relative;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.hero_flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero_content {
    flex: 1;
}

.hero_v2 h1 {
    font-size: 5rem;
    margin-bottom: 30px;
}

.hero_v2 h1 span {
    color: var(--primary);
}

.hero_v2 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero_image {
    flex: 1;
    position: relative;
}

.hero_image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.float_badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.float_badge .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.float_badge .txt {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Contact Bar --- */
.contact_bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.bar_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bar_card {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bar_card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
}

.bar_card h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bar_card p {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--secondary);
}

/* --- Redesigned About Us (Same to Same) --- */
.about_v3 {
    padding: 150px 0;
    background: #fff;
}

.about_v3_flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about_v3_left {
    flex: 1;
}

.about_subtitle_v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #03598f;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about_subtitle_v3 .slash {
    width: 20px;
    height: 10px;
    background: var(--primary);
    transform: skewX(-20deg);
    display: inline-block;
    position: relative;
}

.about_subtitle_v3 .slash::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 20px;
    height: 10px;
    background: var(--primary);
}

.about_v3_left h2 {
    font-size: 3rem;
    /* Adjusted for better fit */
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 950;
    /* Extra bold as seen in image */
    letter-spacing: -2px;
}

.about_v3_left p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Feature Boxes V3 */
.feature_box_v3 {
    background: #fdfcf8;
    padding: 25px 35px;
    border-radius: 20px;
    border-left: 6px solid #03598f;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature_box_v3:hover {
    transform: translateX(15px);
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.fb_icon_v3 {
    width: 65px;
    height: 65px;
    background: #03598f;
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 29, 37, 0.2);
}

.fb_info_v3 h4 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 800;
}

.fb_info_v3 p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Custom Red Button V3 */
.btn-red-v3 {
    background: #03598f;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-red-v3 .arrow {
    transition: 0.3s;
}

.btn-red-v3:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(18, 17, 17, 0.3);
}

.btn-red-v3:hover .arrow {
    transform: translateX(5px);
}

/* Interactive Image Grid V3 */
.about_v3_right {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    position: relative;
    padding-top: 60px;
    /* Space for the floating badge */
}

.about_v3_right .img_box {
    border-radius: 25px;
    /* Softer rounding consistent with industrial look */
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.img_box_1 {
    height: 520px;
}

.img_box_2 {
    height: 520px;
    margin-top: 80px;
    /* Significant offset as seen in image */
}

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

.exp_badge_v3 {
    position: absolute;
    top: 50px;
    /* Positioned between/above images */
    left: 45%;
    transform: translateX(-50%);
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px 20px 100px 20px;
    /* Bottom-right is very rounded */
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exp_badge_v3 .num {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 0.8;
    font-family: var(--font-heading);
}

.exp_badge_v3 .txt {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.5px;
    display: block;
    margin-top: 10px;
    line-height: 1.2;
}

.play_btn_v3 {
    position: absolute;
    bottom: 30px;
    right: -20px;
    /* Overlapping the edge slightly */
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 5;
    box-shadow: 0 0 0 10px rgba(255, 29, 37, 0.15);
    cursor: pointer;
    transition: 0.3s;
}

.play_btn_v3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse_btn 2s infinite;
}

@keyframes pulse_btn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.play_btn_v3:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 25px rgba(255, 29, 37, 0.4);
}

/* --- Marquee V3 --- */
.marquee_section_v3 {
    background: var(--primary);
    padding: 35px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee_content_v3 {
    display: flex;
    gap: 80px;
    animation: marquee_v3 40s linear infinite;
}

.m_item {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
    letter-spacing: 1px;
}

.m_item svg {
    color: #fff;
    stroke: none;
    fill: #fff;
}

@keyframes marquee_v3 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Generic Sections --- */
.v2_padding {
    padding: 120px 0;
}

.section_head_center {
    text-align: center;
    margin-bottom: 70px;
}

.section_head_center h2 {
    font-size: 3.5rem;
    margin-top: 10px;
}

/* --- Full Width Dark Services (v3) --- */
.partners_row_v3 {
    padding: 80px 0 60px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners_header_v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.02);
    padding: 20px 40px;
    border-radius: 100px;
}

/* --- ULTRA ATTRACTIVE Why Choose Us (V4 Elite - Light Mode) --- */
.why_choose_v4 {
    padding: 160px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    color: #121111;
    font-family: 'Roboto', sans-serif;
}

/* Sophisticated Light Background */
.why_choose_v4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(3, 89, 143, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Professional Blue Grid Overlay */
.why_choose_v4 .grid_overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(3, 89, 143, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 89, 143, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
}

.why_choose_v4 .container {
    position: relative;
    z-index: 10;
}

.why_header_v4 {
    text-align: center;
    margin-bottom: 80px;
}

.why_header_v4 .tag_v4 {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(3, 89, 143, 0.1);
    color: #03598f;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why_header_v4 h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #121111;
}

.why_header_v4 p {
    max-width: 800px;
    margin: 0 auto;
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.why_header_v4 h2 span {
    color: #03598f;
}

.why_grid_v4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why_card_v4 {
    display: flex;
    gap: 35px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.why_card_v4:hover {
    background: #ffffff;
    border-color: rgba(3, 89, 143, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(3, 89, 143, 0.1);
}

.why_card_v4::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(3, 89, 143, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.6s;
    pointer-events: none;
}

.why_card_v4:hover::after {
    opacity: 1;
}

.icon_box_v4 {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(3, 89, 143, 0.04);
    border: 1px solid rgba(3, 89, 143, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03598f;
    font-size: 2.2rem;
    transition: 0.6s;
    position: relative;
    z-index: 5;
}

.why_card_v4:hover .icon_box_v4 {
    background: #03598f;
    color: #fff;
    border-radius: 50%;
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(3, 89, 143, 0.3);
}

.text_box_v4 h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #121111;
    transition: 0.4s;
}

.why_card_v4:hover h3 {
    color: #03598f;
}

.text_box_v4 p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .why_header_v4 h2 { font-size: 3.5rem; }
    .why_grid_v4 { gap: 30px; }
}

@media (max-width: 991px) {
    .why_grid_v4 { grid-template-columns: 1fr; }
    .why_card_v4 { padding: 40px; }
}

@media (max-width: 575px) {
    .why_header_v4 h2 { font-size: 2.8rem; }
    .why_card_v4 { flex-direction: column; text-align: center; align-items: center; gap: 25px; padding: 50px 30px; }
    .icon_box_v4 { width: 80px; height: 80px; font-size: 1.8rem; }
}

.partners_title_v3 {
    color: #03598f;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    white-space: nowrap;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
    padding-right: 30px;
}

.partners_logos_v3 {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partners_logos_v3 img {
    height: 35px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.partners_logos_v3 img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* 
   ==========================================================================
   PREMIUM ELITE SERVICES SECTION
   Inspired by High-End Automotive Service Design
   ==========================================================================
*/

:root {
    --elite-primary: #03598f;
    /* Red Accent */
    --elite-dark: #0c0b0b;
    /* Deep Charcoal */
    --elite-dark-alt: #161515;
    /* Lighter Charcoal */
    --elite-glass: rgba(255, 255, 255, 0.04);
    --elite-border: rgba(255, 255, 255, 0.1);
    --elite-text-muted: rgba(255, 255, 255, 0.6);
}


.services_full_dark {
    background: linear-gradient(rgba(12, 11, 11, 0.95), rgba(0, 0, 0, 0.85)), url('../img/service_bg_dark.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 320px;
    position: relative;
    color: #fff;
    margin-top: 50px;
}

/* --- Premium Static Video Banner V3 --- */
.hero_video_v3 {
    position: relative;
    height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.hero_video_bg_v3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.hero_content_v3 {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.pill-label-v3 {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(3, 89, 143, 0.15);
    color: #03598f;
    border: 1px solid rgba(3, 89, 143, 0.3);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero_content_v3 h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero_content_v3 h1 span {
    color: #03598f;
    display: block;
    font-size: 0.8em;
}

.hero_content_v3 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
}

.hero_btns_v3 {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary-v3 {
    background: #03598f;
    color: #fff;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(3, 89, 143, 0.3);
}

.btn-primary-v3:hover {
    background: #000;
    transform: translateY(-5px);
}

.btn-outline-v3 {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-outline-v3:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

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

.hero_stats_v3 .stat {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero_stats_v3 .stat span {
    display: block;
    color: #03598f;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .hero_content_v3 h1 { font-size: 4rem; }
}

@media (max-width: 991px) {
    .hero_video_v3 { height: 750px; }
    .hero_content_v3 { text-align: left; margin: 0; }
    .hero_content_v3 p { margin: 0 0 40px; }
    .hero_btns_v3 { justify-content: flex-start; }
    .hero_stats_v3 { justify-content: flex-start; }
}

@media (max-width: 575px) {
    .hero_content_v3 h1 { font-size: 2.8rem; }
    .hero_btns_v3 { flex-direction: column; gap: 15px; }
    .hero_stats_v3 { gap: 20px; flex-wrap: wrap; }
}


/* --- Services Section Decorative Glows --- */
.services_full_dark {
    position: relative;
    overflow: hidden;
}

/* Red Accent Glow */
.services_full_dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 29, 37, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translateY(-50%);
}

/* The actual notch bridge */
.services_full_dark::before {
    content: '';
    position: absolute;
    top: -51px;
    /* Overlap slightly to avoid line gaps */
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    /* The width of the white cutout zone */
    height: 52px;
    background: #fff;
    z-index: 5;
}

.notch_corner {
    position: absolute;
    top: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    z-index: 10;
    pointer-events: none;
}

.notch_left {
    left: 12.5%;
    /* Correctly positioned at the edge of the 75% width centered cutout (100-75)/2 */
    transform: translateX(-100%);
}

.notch_right {
    right: 12.5%;
    transform: translateX(100%);
}

.notch_left::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 50px 50px 0 0 var(--secondary);
}

.notch_right::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: -50px 50px 0 0 var(--secondary);
}

.position_relative {
    position: relative;
}

.section_main_head_v3 {
    margin-bottom: 60px;
}

.section_main_head_v3 .h_sub {
    color: var(--elite-primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.section_main_head_v3 h2 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.s_box_flex_v3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Start alignment like image */
    margin-bottom: 0;
    gap: 100px;
}

.layered_heading_v3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.layered_heading_v3 .top_line {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--elite-primary);
    letter-spacing: 2px;
}

.layered_heading_v3 .mid_line {
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 950;
    line-height: 0.85;
    margin: 10px 0;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.layered_heading_v3 .bot_line {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
}

.m_pill_v3 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    /* White as in image for dark bg */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.slash_red_v3 {
    width: 6px;
    height: 14px;
    background: #03598f;
    transform: skewX(-20deg);
    position: relative;
    display: inline-block;
    margin: 0 5px;
}

.slash_red_v3::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 6px;
    height: 14px;
    background: #03598f;
}

.s_right_v3 {
    max-width: 480px;
    text-align: right;
}

.s_right_v3 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn_more_dark {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--elite-primary);
    color: #fff;
    padding: 20px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 29, 37, 0.3);
}

.btn_more_dark:hover {
    background: #fff;
    color: var(--elite-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.modern_cards_grid_v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: absolute;
    bottom: -250px;
    left: 20px;
    right: 20px;
    z-index: 20;
}

.m_card_v3 {
    background: var(--elite-dark-alt);
    border: 1px solid var(--elite-border);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.m_card_v3:hover {
    transform: translateY(-20px);
    border-color: var(--elite-primary);
    box-shadow: 0 40px 90px rgba(255, 29, 37, 0.15);
}

.m_card_img_v3 {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.m_card_img_v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.m_card_v3:hover .m_card_img_v3 img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.m_card_v3:hover .m_card_img_v3 img {
    transform: scale(1.15);
}

.m_icon_v3 {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--elite-primary);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 29, 37, 0.3);
    z-index: 10;
}

.m_arrow_v3 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--elite-dark);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.m_arrow_v3:hover {
    background: var(--elite-primary);
    color: #fff;
    transform: rotate(-45deg);
}

.m_card_info_v3 {
    padding: 40px;
    background: var(--elite-dark-alt);
}

.m_card_info_v3 h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.m_card_info_v3 p {
    color: var(--elite-text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Redesigned Floating Badge */
.elite_badge_v3 {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--elite-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 15;
    text-transform: uppercase;
}

@keyframes float_elite {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

/* Margin to account for following section's overlap */
.stats_v2 {
    margin-top: 250px;
}

/* --- Stats Section --- */
.stats_v2 {
    background: var(--secondary);
    padding: 120px 0;
    color: #fff;
    border-radius: var(--radius-lg);
}

.stats_grid_v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat_item_v2 .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 29, 37, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    margin: 0 auto 25px;
}

.stat_item_v2 h3 {
    font-size: 4.5rem;
    margin-bottom: 0px;
}

.stat_item_v2 p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- Team --- */
.team_v2 {
    background: var(--accent);
    padding: 120px 0;
    border-radius: var(--radius-lg);
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team_card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

.team_img {
    height: 380px;
    overflow: hidden;
    position: relative;
}

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

.team_socials {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: 0.5s;
}

.team_card:hover .team_socials {
    bottom: 25px;
}

.s_icon_circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team_info {
    padding: 30px 20px;
    text-align: center;
}

.team_info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team_info span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 800;
}

/* --- Pricing --- */
.price_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price_card {
    background: #fff;
    border-radius: 50px;
    padding: 80px 50px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: 0.5s;
}

.price_card.popular {
    background: var(--secondary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

.price_card.popular p {
    color: rgba(255, 255, 255, 0.6);
}

.price_amount {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.p_features {
    list-style: none;
    margin-bottom: 50px;
    text-align: left;
}

.p_features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.p_features li span {
    color: var(--primary);
}

/* --- FAQ & Accordion --- */
.faq_section {
    padding: 120px 0;
}

.faq_flex {
    display: flex;
    gap: 60px;
}

.faq_accordion {
    flex: 1;
}

.accordion_item {
    background: #f8f9fa;
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.acc_header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.acc_header .icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: 0.3s;
}

.accordion_item.active {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
}

.accordion_item.active .acc_header .icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.acc_content {
    padding: 0 35px 25px;
    color: var(--text-muted);
    display: none;
}

/* --- Testimonials Refined --- */
.trust_box {
    background: var(--primary);
    border-radius: 50px;
    padding: 80px 60px;
    color: #fff;
    position: relative;
}

.float_head {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #fff;
    overflow: hidden;
}

.head1 {
    top: -20px;
    left: 20%;
}

.head2 {
    top: 30%;
    right: -30px;
}

/* --- Booking & Core Values (Elite Edition) --- */
.booking_v3 {
    position: relative;
    background: #fff;
    background-image: radial-gradient(#000 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    /* Technical Grid Pattern */
    background-color: #fafafa;
    padding: 120px 0 180px;
    overflow: hidden;
}

.booking_v3::after {
    content: 'PRAJ ELITE';
    position: absolute;
    top: 50px;
    left: -50px;
    font-size: 15rem;
    font-weight: 950;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    pointer-events: none;
}

.booking_container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    min-height: 600px;
    position: relative;
    z-index: 5;
}

.booking_left {
    flex: 1.2;
    padding-right: 80px;
    position: relative;
}

.booking_subtitle_v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #03598f;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.booking_left h2 {
    font-size: clamp(2.8rem, 6vw, 3.2rem);
    color: var(--secondary);
    line-height: 1;
    font-weight: 950;
    margin-bottom: 30px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.booking_left p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 580px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.booking_btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn_pill_red {
    background: #03598f;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 15px 30px rgba(255, 29, 37, 0.3);
}

.btn_pill_red:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.play_btn_mini {
    width: 60px;
    height: 60px;
    background: #03598f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.play_btn_mini:hover {
    transform: scale(1.1);
}

.booking_machine_img {
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 10;
}

.booking_machine_img img {
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.booking_v3:hover .booking_machine_img img {
    transform: translateY(-20px) rotate(-2deg);
}

/* Slanted Background Logic - Elite Refinement */
.booking_right {
    flex: 1;
    background: linear-gradient(135deg, #0c0b0b 0%, #03598f 100%);
    position: relative;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 50px 100px rgba(3, 89, 143, 0.2);
}

.booking_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -180px;
    width: 360px;
    height: 100%;
    background: inherit;
    transform: skewX(-18deg);
    z-index: -1;
    border-top-left-radius: 50px;
    border-left: 5px solid rgba(255, 255, 255, 0.1);
    /* Razor Sharp Bevel */
}

.values_glass_card {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px 45px;
    border-radius: 40px;
    width: 100%;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.values_glass_card h3 {
    font-size: 2.4rem;
    margin-bottom: 45px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -1px;
    border-bottom: 2px solid var(--elite-primary);
    display: inline-block;
    padding-bottom: 10px;
}

.stat_bar_v3 {
    margin-bottom: 25px;
}

.sb_labels {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.sb_track {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sb_fill {
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, #03598f 100%);
    box-shadow: 0 0 20px rgba(3, 89, 143, 0.6);
    border-radius: 20px;
    transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Floating Contact Bar - Elite Glass Edition */
.booking_contact_bar {
    max-width: 900px;
    margin: -80px auto 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid #fff;
    border-radius: 30px;
    display: flex;
    padding: 40px 60px;
    justify-content: space-between;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 100;
}

.bc_item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bc_icon {
    width: 50px;
    height: 50px;
    background: #03598f;
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bc_info .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.bc_info .val {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--secondary);
}

@media (max-width: 991px) {
    .booking_container {
        flex-direction: column;
    }

    .booking_right::before {
        display: none;
    }

    .booking_left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .booking_contact_bar {
        flex-direction: column;
        gap: 20px;
        margin: 50px 20px 0;
    }
}

/* --- Footer --- */
.footer_v2 {
    background: var(--secondary);
    padding: 120px 0 30px;
    color: #fff;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.footer_grid_v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer_col h4 {
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.footer_col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.f_links li {
    margin-bottom: 15px;
    list-style: none;
}

.f_links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.f_links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.f_contact {
    margin-top: 30px;
}

.f_item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6);
}

.f_item .icon {
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .about_v3_flex {
        flex-direction: column;
    }

    .hero_v2 h1 {
        font-size: 4rem;
    }

    .services_grid_v2,
    .footer_grid_v2,
    .team_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp_badge_v3 {
        right: 50px;
        top: -50px;
    }
}

@media (max-width: 991px) {

    .hero_flex,
    .faq_flex {
        flex-direction: column;
    }

    .hero_v2 h1 {
        font-size: 3.2rem;
    }

    .bar_grid,
    .stats_grid_v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .price_card.popular {
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero_v2 h1 {
        font-size: 2.5rem;
    }

    .stats_grid_v2,
    .services_grid_v2,
    .bar_grid,
    .team_grid,
    .price_grid {
        grid-template-columns: 1fr;
    }

    .footer_grid_v2 {
        grid-template-columns: 1fr;
    }

    .about_v3_left h2 {
        font-size: 3rem;
    }

    .about_v3_right {
        grid-template-columns: 1fr;
    }

    .img_box {
        height: 400px;
    }

    .img_box_2 {
        margin-top: 0;
    }
}

/* --- Testimonials Carousel (Elite v3) --- */
.testimonials_v3 {
    padding: 150px 0;
    background: #0c0b0b;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials_v3::before {
    content: "\"";
 position: absolute;
    top: -50px;
    right: 50px;
    font-size: 30rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
}

.testimonials_carousel_v3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0 60px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.testimonials_carousel_v3::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testi_card_v3 {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 40px;
    scroll-snap-align: center;
    transition: 0.5s;
    position: relative;
    backdrop-filter: blur(10px);
}

.testi_card_v3:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #03598f;
}

.testi_stars_v3 {
    color: #03598f;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testi_text_v3 {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

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

.user_avatar_v3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #03598f;
    overflow: hidden;
    position: relative;
}

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

.user_detail_v3 h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.user_detail_v3 span {
    font-size: 0.85rem;
    color: #03598f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll indicator controls */
.slider_controls_v3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.control_btn_v3 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.4s;
    font-size: 1.2rem;
}

.control_btn_v3:hover {
    background: #03598f;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .testi_card_v3 {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .testi_card_v3 {
        flex: 0 0 100%;
    }
}

/* --- Elite Counter Section (v3) --- */
.counter_v3 {
    padding: 100px 0;
    background: #fafafa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.counter_grid_v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter_item_v3 {
    text-align: center;
    padding: 20px;
    position: relative;
}

.counter_item_v3:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.counter_num_v3 {
    font-size: 4rem;
    font-weight: 950;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
    display: block;
}

.counter_num_v3 span {
    color: #03598f;
}

.counter_label_v3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

    .counter_item_v3:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .counter_grid_v3 {
        grid-template-columns: 1fr;
    }

    .counter_item_v3::after {
        display: none;
    }
}
/* Header Utility Action Buttons */
.h_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

.h_btn svg {
    transition: transform 0.3s ease;
}

.h_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.h_btn:hover svg {
    transform: scale(1.1);
}

.h_btn_call {
    background: #e02106;
    border-color: #e02106;
}

.h_btn_call:hover {
    background: #c01a05;
}

.h_btn_wa {
    background: #25d366;
    border-color: #25d366;
}

.h_btn_wa:hover {
    background: #128c7e;
}

/* --- Testimonials V5 (Solstar Design) --- */
.testimonials_v5 {
    padding: 120px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.section_header_v5 {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section_header_v5 .subtitle {
    color: #03598f;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.section_header_v5 .title {
    font-size: 3rem;
    color: #121111;
    margin-bottom: 20px;
}

.section_header_v5 p {
    color: #5a6a7e;
    font-size: 1.1rem;
}

.testimonials_slider_v5 {
    padding: 20px 20px 80px;
    overflow: visible;
}

.testi_card_v5 {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(3, 89, 143, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    border-top: 5px solid #03598f;
    position: relative;
}

.testi_card_v5:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(3, 89, 143, 0.15);
}

.card_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.client_icon img {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.quote_icon_box {
    color: rgba(3, 89, 143, 0.1);
}

.card_content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.card_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.client_meta h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #121111;
    text-transform: none;
    letter-spacing: 0;
}

.client_meta span {
    font-size: 0.85rem;
    color: #03598f;
    font-weight: 700;
}

.rating_box {
    display: flex;
    gap: 2px;
}

.rating_box svg {
    width: 16px;
    height: 16px;
    fill: #ffc107;
}

/* Slider Controls V5 */
.slider_controls_v5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 100;
}

.testi_prev_v5,
.testi_next_v5 {
    position: static !important;
    width: 55px !important;
    height: 55px !important;
    background: #fff !important;
    border: 2px solid #03598f !important;
    border-radius: 50% !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
}

.testi_prev_v5::after,
.testi_next_v5::after {
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #03598f !important;
}

.testi_prev_v5:hover,
.testi_next_v5:hover {
    background: #03598f !important;
    border-color: #03598f !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(3, 89, 143, 0.2) !important;
}

.testi_prev_v5:hover::after,
.testi_next_v5:hover::after {
    color: #fff !important;
}

.testi_pagination_v5 {
    position: static !important;
    width: auto !important;
}

.testi_pagination_v5 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #03598f;
    opacity: 0.2;
    margin: 0 6px !important;
}

.testi_pagination_v5 .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Floating Contact Buttons */
.floating-actions-wrapper {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.floating-action-item {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: none;
}

.whatsapp-float {
    background: #25d366;
}

.call-float {
    background: #03598f;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-popup {
    position: absolute;
    right: 85px;
    min-width: 220px;
    background: #fff;
    border-radius: 15px;
    padding: 12px 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-action-item:hover .whatsapp-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.popup-content {
    text-align: left;
}

.popup-name {
    font-weight: 700;
    color: #15161C;
    font-size: 14px;
    display: block;
    line-height: 1.2;
}

.popup-status {
    color: #25d366;
    font-size: 12px;
    font-weight: 600;
}