/*
Theme Name: GeneratePress Child
Description: Custom child theme for GeneratePress
Author: 
Template: generatepress
Version: 1.0.0
*/



.mb-0{
    margin-bottom: 0 !important;
}
.site-main > * {
    margin-bottom: 0;
}
.main-container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1280px){
    .main-container{
        max-width: 1300px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 991px){
    .main-container{
        max-width: 720px;
    }
}
@media (max-width: 767px){
    .main-container{
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.site-content main#main {
    margin: 0;
}

/* Button Style */
.defult-btn {
    background-color: #e5b376;
    color: #111111;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    padding: 12px 57px 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
    position: relative;
    float: left;
}
.defult-btn .btn-icon {
    background-color: #060E0D;
    color: #e5b376;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 5px;
    transition: all 0.5s ease 0s;
    padding: 15px;
}
.defult-btn:hover .btn-icon {
    width: calc(100% - 10px);
}
.defult-btn:hover .button-text {
    z-index: 99;
    position: relative;
    color: #ffffff;
    transition: all 0.5s ease 0s;
}

/******************************* Header Css Start ************************************/

/* Header Container */
.custom-claim-header {
    background-color: #203D36;
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid #536A64;
}

.custom-header-container {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}
.header-logo img {
    height: 50px;
}
/* Navigation CTA Group */
.header-nav-cta {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Dynamic Menu Style */
.custom-nav ul.dynamic-menu-list {
    display: flex;
    list-style: none !important;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.custom-nav ul.dynamic-menu-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
}

.custom-nav ul.dynamic-menu-list li a:hover {
    color: #e5b376;
}

/* Mobile Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle:focus {
    background: transparent;
}

/******************************* Header Css End ************************************/

/******************************* Hero Section Css Start ************************************/

.claim-hero-section {
    background-color: #203D36;
    position: relative;
}

.claim-hero-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Scrolling Container */
.image-scroll-wrapper {
    display: flex;
    gap: 20px;
    height: 800px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

/* Individual Columns */
.scroll-column {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Track jo move karega */
.scroll-track {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Half blocks for perfect looping math */
.scroll-half {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px; 
}

.scroll-half img {
    width: 100%;
    height: 320px; 
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animations Variables */
.track-up {
    animation: scrollUp 18s linear infinite;
}

.track-down {
    transform: translateY(-50%);
    animation: scrollDown 18s linear infinite;
}

/* Seamless Keyframes */
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } 
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); } 
}

/* Right Content Column */
.hero-content-col {
    position: relative;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
}

.crown-icon {
    color: #e5b376;
    margin-right: 5px;
}

.hero-title {
    font-size: 80px;
    color: #ffffff;
    font-weight: 700;
    line-height: .875;
    margin-bottom: 25px;
}

.highlight-text {
    color: #e5b376;
}

.hero-desc {
    color: #d1d5d3;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Primary Button */
.hero-btn-primary {
    background-color: #e5b376;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 14px 10px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.hero-btn-primary:hover {
    background-color: #d19f62;
    color: #111111;
}

.hero-btn-primary .btn-arrow {
    background-color: #111111;
    color: #e5b376;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}


/* Trusted By Section Styles */
.trusted-by-wrapper {
    margin-top: 45px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.trusted-text {
    font-size: 15px;
    color: #a4b3ae; 
    margin-bottom: 15px;
    font-weight: 500;
}
.trusted-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.trusted-logos img {
    height: 28px; 
    width: auto;
    opacity: 0.7; 
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1); 
}
.trusted-logos img:hover {
    opacity: 1; 
}

/******************************* Hero Section Css End ************************************/

/******************************* Marquee Section Wrapper Start ************************************/

/* Marquee Section Wrapper */
.claim-marquee-section {
    background-color: #D6B77D; 
    padding: 25px 0;
    width: 100%;
    overflow: hidden;
}

/* Flex Container */
.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

/* Track jo slide hoga (Animation yaha he) */
.marquee-track-inner {
    display: flex;
    flex-shrink: 0; 
    align-items: center;
    animation: marqueeSlide 40s linear infinite; 
}

/* Individual Items */
.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 30px 0 0;
}

.marquee-text {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-right: 30px;
    font-family: 'Geist', sans-serif;
}

/* Separator Icon */
.marquee-icon {
    width: 40px;
}
.marquee-icon img {
    height: 40px;
    width: auto;
    display: block;
}

/* Seamless Slide Animation */
@keyframes marqueeSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/******************************* Marquee Section Wrapper End ************************************/

/******************************* About Us Css Start ************************************/

/* About Section Wrapper */
.claim-about-section {
    background-color: #ffffff; 
    padding: 100px 0;
    color: #111111;
}

/* Top Row Styles */
.about-top-row {
    display: grid;
    grid-template-columns: 1fr .25fr;
    grid-auto-columns: 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.about-badge-style {
    border: 1px solid #e0e0e0; 
    color: #111111;
}

.about-heading {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-desc {
    color: #555555;
    margin-bottom: 40px;
    max-width: 800px;
}

.abstract-shape {
    text-align: center;
}
.abstract-shape img {
    max-width: 180px;
}

/* Bottom Row Styles */
.about-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Left Image Column */
.about-image-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Stats Column */
.about-stats-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-subheading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.13;
    color: #333333;
    margin-bottom: 30px;
    font-family: 'Geist';
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-num {
    font-size: 60px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px 0;
    line-height: 1;
}
.stat-txt {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/******************************* About Us Css End ************************************/

/******************************* Services Card css Start ************************************/
/* Plans Section Background */
.claim-plans-section {
    background-color: #2B3D36; 
    padding: 100px 0;
}

/* Header Alignment */
.plans-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.plans-badge {
    border-color: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
}

.plans-heading {
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 20px;
    font-family: 'Geist', sans-serif;
}

.plans-heading .highlight-text {
    color: #D6B77D; 
}

/* Responsive Grid System */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Individual Card Styling */
.plan-card {
    background-color: #445c55;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease 0s;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: #D6B77D;
    background-color: #D6B77D;
}

/* Card Top: Title & Icon */
.plan-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: center;
}

.plan-card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    padding-right: 15px;
    font-family: 'Geist', sans-serif;
}

.plan-card-icon img {
    min-width: 28px;
}

/* Card Image */
.plan-card-img-wrapper {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.plan-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Card Bottom: Text & Button */
.plan-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-card-desc {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-right: 20px;
    max-width: 80%;
}

/* Circular Arrow Button */
.plan-card-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.plan-card:hover .plan-card-btn {
    background: #060E0D;
}
    
.plan-card-btn img {
    width: 14px;
    filter: brightness(0) invert(1); 
    transition: all 0.3s ease;
}

.plan-card-btn:hover {
    background-color: #D6B77D;
    border-color: #D6B77D;
}

.plan-card-btn:hover img {
    filter: none; 
}
/******************************* Services Card css End ************************************/


/******************************* Features css Start ************************************/
/* Features List Section Wrapper */
.claim-features-list-section {
    background-color: #ffffff; 
    padding: 80px 0; 
    border-bottom: 1px solid #f0f0f0; 
}

/* Features Grid Layout */
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    width: 100%;
}

/* Individual Feature Item */
.feature-list-item {
    display: flex;
    align-items: flex-start; 
    gap: 20px; 
}

/* Dark Green Icon Box */
.feature-icon-box img {
    min-width: 60px;
}

/* Text Content */
.feature-content {
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 10px 0;
    font-family: 'Geist', sans-serif;
    line-height: 1.2;
}

.feature-desc {
    font-size: 16px;
    color: #666666; 
    margin: 0;
    line-height: 1.6;
}
/******************************* Features css End ************************************/

/******************************* Expertise css start ************************************/
/* Expertise Section Background */
.claim-expertise-section {
    background-color: #ffffff;
    padding: 100px 0;
}

/* 2-Column Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Col */
.expertise-content-col {
    padding-right: 40px;
}

.expertise-heading {
    font-size: 46px;
    font-weight: 700;
    color: #1a322b; 
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1px;
}

.expertise-desc {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Points List */
.expertise-points-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.expertise-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-icon {
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.point-icon img {
    width: 100%;
    height: auto;
}

.point-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a322b;
    margin: 0 0 10px 0;
    font-family: 'Geist', sans-serif;
}

.point-desc {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Right Image Col */
.expertise-image-col {
    width: 100%;
}

.expertise-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px; 
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
/******************************* Expertise css End ************************************/

/******************************* Why Choose Us css start ************************************/
/* WCU Section Background */
.claim-wcu-section {
    background-color: #1a322b;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.wcu-header {
    text-align: center;
    margin-bottom: 50px;
}

.wcu-heading {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 20px;
    font-family: 'Geist', sans-serif;
}

.wcu-heading .highlight-text {
    color: #D6B77D;
}

/* Tabs Navigation */
.wcu-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

/* Tab Buttons */
.wcu-tab-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Geist', sans-serif;
}

.wcu-tab-btn:hover {
    border-color: #ffffff;
}

.wcu-tab-btn.active {
    background-color: #D6B77D;
    border-color: #D6B77D;
    color: #111111;
    font-weight: 600;
}

/* Tabs Content Area */
.wcu-tab-panel {
    display: none; 
    animation: fadeInTab 0.5s ease-in-out;
}

.wcu-tab-panel.active {
    display: block; 
}

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

/* Grid Layout for Tab Content */
.wcu-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wcu-tab-image-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.wcu-tab-heading {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Geist', sans-serif;
}

.wcu-tab-desc {
    font-size: 16px;
    color: #a4b3ae;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Bullet Points List */
.wcu-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcu-points-list li {
    font-size: 16px;
    color: #a4b3ae;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}
/******************************* Why Choose Us css End ************************************/

/******************************* Testimonial css start ************************************/
/* Testimonials Section */
.claim-testi-section {
    background-color: #ffffff;
    padding: 100px 0;
}

/* Header Row */
.testi-header-row {
    margin-bottom: 60px;
}

.testi-badge-col {
    flex-shrink: 0;
}

.testi-main-heading {
    font-size: 55px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1.5px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Content Row Grid */
.testi-content-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

/* Left Dark Box */
.testi-left-box {
    background-color: #1a322b;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: #ffffff;
    min-height: 450px;
}

.testi-rating-num {
    font-size: 70px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1;
    font-family: 'Geist', sans-serif;
    color: #ffffff;
}

.testi-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.testi-review-count {
    font-size: 14px;
    color: #a4b3ae;
    margin-bottom: 30px;
}

.testi-left-desc {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

/* Navigation Arrows */
.testi-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testi-nav-arrows button {
    background-color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 0;
}

.testi-nav-arrows button:hover {
    background-color: #D6B77D;
    transform: scale(1.05);
}

/* Right Light Box */
.testi-right-box {
    background-color: #f5f4ef; 
    border-radius: 20px;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testi-quote-icon {
    margin-bottom: 20px;
}

.testi-quote-icon img {
    width: 60px;
    height: auto;
}

/* Slick Slide Item */
.testi-slide {
    outline: none; 
}

.testi-slide-title {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 20px;
    font-family: 'Geist', sans-serif;
}

.testi-slide-quote {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Author Box */
.testi-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 3px 0;
    font-family: 'Geist', sans-serif;
}

.author-role {
    font-size: 15px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}
/******************************* Testimonial css End ************************************/

/******************************* FAQ Section css End ************************************/
/* FAQ Section */
.claim-faq-section {
    background-color: #1a322b; 
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Content */
.faq-heading {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 20px;
    font-family: 'Geist', sans-serif;
}

.faq-heading .highlight-text {
    color: #D6B77D; 
}

.faq-desc {
    font-size: 18px;
    color: #a4b3ae;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 400;
}

.faq-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.faq-cta-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Agent Card & Button */
.faq-agent-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.agent-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Geist', sans-serif;
}

.agent-role {
    font-size: 16px;
    color: #a4b3ae;
    margin: 0;
}

.faq-book-btn {
    background-color: #D6B77D;
    color: #111111;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
}

.faq-book-btn .btn-arrow {
    background-color: #111111;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-book-btn .btn-arrow img {
    width: 10px;
    filter: brightness(0) invert(1);
}

.faq-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(214, 183, 125, 0.3);
}

/* Right Accordion */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #26433a; 
    border-radius: 12px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Geist', sans-serif;
}
.faq-question-btn:hover,
.faq-question-btn:focus {
    background: transparent;
}

/* Toggle Icon logic via CSS +/× */
.faq-toggle-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-toggle-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

/* Active State Styles */
.faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer-content {
    max-height: 200px; 
    padding-bottom: 25px;
}

.faq-answer-content p {
    color: #a4b3ae;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}
/******************************* FAQ Section css End ************************************/

/******************************* Contact Form start End ************************************/
/* Contact Section Wrapper */
.claim-contact-section {
    position: relative;
    background-color: #f7f6f2; 
    padding: 100px 0;
    z-index: 1;
}

/* Absolute Left Edge Image */
.contact-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 32%; 
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Form Box */
.contact-form-box {
    background-color: #23322B;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.c-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Geist', sans-serif;
}

.c-form-desc {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cf7-form-container form .wpforms-field-container > * {
    padding: 0;
}
.cf7-form-container .wpforms-container {
    margin: 0 !important;
}
.cf7-form-container form .wpforms-field-container select,
.cf7-form-container form .wpforms-field-container textarea,
.cf7-form-container form .wpforms-field-container input[type="text"],
.cf7-form-container form .wpforms-field-container input[type="password"],
.cf7-form-container form .wpforms-field-container input[type="datetime"],
.cf7-form-container form .wpforms-field-container input[type="datetime-local"],
.cf7-form-container form .wpforms-field-container input[type="date"],
.cf7-form-container form .wpforms-field-container input[type="month"],
.cf7-form-container form .wpforms-field-container input[type="time"],
.cf7-form-container form .wpforms-field-container input[type="week"],
.cf7-form-container form .wpforms-field-container input[type="number"],
.cf7-form-container form .wpforms-field-container input[type="email"],
.cf7-form-container form .wpforms-field-container input[type="url"],
.cf7-form-container form .wpforms-field-container input[type="search"],
.cf7-form-container form .wpforms-field-container input[type="tel"],
.cf7-form-container form .wpforms-field-container input[type="color"],
.cf7-form-container form .wpforms-field-container .uneditable-input{
    height: 50px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #3B554E;
    background: transparent;
    font-size: 16px;
    transition: all .3s;
    color: #ffffff !important;
    line-height: 1.42857;
    border-radius: 10px;
    opacity: 1;
}
.cf7-form-container form .wpforms-field-container select::placeholder,
.cf7-form-container form .wpforms-field-container textarea::placeholder,
.cf7-form-container form .wpforms-field-container input[type="text"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="password"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="datetime"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="datetime-local"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="date"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="month"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="time"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="week"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="number"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="email"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="url"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="search"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="tel"]::placeholder,
.cf7-form-container form .wpforms-field-container input[type="color"]::placeholder,
.cf7-form-container form .wpforms-field-container .uneditable-input::placeholder{
    color: #ffffff;
    opacity: 1;
}
.cf7-form-container form .wpforms-field-container select:focus,
.cf7-form-container form .wpforms-field-container textarea:focus,
.cf7-form-container form .wpforms-field-container input[type="text"]:focus,
.cf7-form-container form .wpforms-field-container input[type="password"]:focus,
.cf7-form-container form .wpforms-field-container input[type="datetime"]:focus,
.cf7-form-container form .wpforms-field-container input[type="datetime-local"]:focus,
.cf7-form-container form .wpforms-field-container input[type="date"]:focus,
.cf7-form-container form .wpforms-field-container input[type="month"]:focus,
.cf7-form-container form .wpforms-field-container input[type="time"]:focus,
.cf7-form-container form .wpforms-field-container input[type="week"]:focus,
.cf7-form-container form .wpforms-field-container input[type="number"]:focus,
.cf7-form-container form .wpforms-field-container input[type="email"]:focus,
.cf7-form-container form .wpforms-field-container input[type="url"]:focus,
.cf7-form-container form .wpforms-field-container input[type="search"]:focus,
.cf7-form-container form .wpforms-field-container input[type="tel"]:focus,
.cf7-form-container form .wpforms-field-container input[type="color"]:focus,
.cf7-form-container form .wpforms-field-container .uneditable-input:focus{
    outline: none;
    border: 1px solid #3B554E;
    box-shadow: none;
}

.cf7-form-container form .wpforms-submit-container button[type=submit] {
    background-color: #D6AB66 !important;
    height: 50px;
    color: #020e0d !important;
    font-size: 18px;
    font-weight: 500;
    border-radius: 100px;
    padding: 7px 20px;
    transition: all 0.5s ease 0s;
}
.cf7-form-container form .wpforms-submit-container button[type=submit]:hover, 
.cf7-form-container form .wpforms-submit-container button[type=submit]:focus {
    background: #ffffff !important;
    color: #C9AF6E !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.cf7-form-container form .wpforms-submit-container button[type=submit]:focus:after{
    display: none !important;
}

/* Right Side Content */
.contact-info-col {
    padding-right: 40px;
}

.contact-badge {
    background: #ffffff;
    border-color: #e0e0e0;
    color: #111111;
}

.contact-main-title {
    font-size: 55px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin: 25px 0;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1px;
}

.contact-main-desc {
    font-size: 17px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
    font-weight: 400;
}

/* Contact Cards */
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 4px;
    background-color: #020e0d1a;
    border-radius: 8px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.c-card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.c-card-label {
    font-size: 13px;
    color: #888888;
}

.c-card-link {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
}
/******************************* Contact Form css End ************************************/

/******************************* Footer css End ************************************/
/* Footer Wrapper */
.custom-claim-footer {
    background-color: #2c2c2c; 
    color: #ffffff;
    padding: 80px 20px 30px 20px;
    font-family: 'Geist', sans-serif;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Left Column Styling */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.f-logo {
    max-height: 70px;
    width: 100%;
}

.f-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.f-socials {
    display: flex;
    gap: 10px;
}

.f-social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.f-social-icon:hover {
    background-color: rgba(255,255,255,0.2);
}

.f-social-icon img {
    width: 10px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 50px;
    max-width: 350px;
    font-weight: 500;
}

.footer-inline-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-inline-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-inline-menu a:hover {
    color: #D6B77D;
}

/* Right Column Styling */
.footer-form-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

/* CF7 Inline Pill Form */
.footer-form-wrapper form {
    position: relative;
    max-width: 450px;
    display: flex;
}

.footer-form-wrapper .wpforms-field-container .wpforms-field {
    padding: 0;
} 
.footer-form-wrapper .wpforms-field-container input {
    width: 100% !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    border-radius: 40px !important;
    padding: 16px 160px 16px 25px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    height: auto;
    max-width: inherit !important;
}
.footer-form-wrapper .wpforms-field-container input::placeholder{
    color: #ffffff !important;
    opacity: 1 !important;
}

.footer-form-wrapper .wpforms-field-container input:focus {
    outline: none;
    border-color: #ffffff;
}

.footer-form-wrapper .wpforms-submit-container button.wpforms-submit {
    position: absolute;
    right: 5px;
    top: -5px;
    background-color: #ffffff !important;
    color: #111111 !important;
    border: none;
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    min-width: 140px;
    height: auto;
}

.footer-form-wrapper .wpforms-submit-container button.wpforms-submit:hover {
    transform: scale(0.96);
}

/* Divider & Bottom Section */
.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.15);
    margin: 40px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #b0b0b0;
    flex-wrap: wrap;
    gap: 20px;
}
/******************************* Footer css End ************************************/




/* ==========================================================================================
   About Us Page CSS Start
   ========================================================================================== */
.claim-inner-hero {
    position: relative;
    background-color: #1a322b; /* Fallback dark green color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    z-index: 1;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left se dark, right se thoda transparent gradient */
    background: linear-gradient(90deg, rgba(26,50,43,0.95) 0%, rgba(26,50,43,0.4) 100%);
    z-index: -1;
}

.inner-hero-content {
    max-width: 700px;
}

.inner-breadcrumbs {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.inner-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumbs a:hover {
    color: #D6B77D; /* Hover par gold color */
}

.inner-breadcrumbs span {
    color: #ffffff;
    opacity: 0.8; /* Current page ko thoda light dikhayega */
}

.inner-hero-title {
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1px;
}



/* About V2 Section (Desktop) */
.claim-about-v2-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-v2-image-col {
    height: 100%;
}

/* Left Image Column */
.about-v2-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
}

.ab2-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab2-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}

.ab2-exp-box {
    position: absolute;
    bottom: 35px;
    left: 40px;
    color: #ffffff;
    z-index: 2;
}

.ab2-exp-num {
    font-size: 70px;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1;
    font-family: 'Geist', sans-serif;
}

.ab2-exp-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Right Content Column */
.ab2-heading {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin: 0 0 20px 0;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1px;
}

.ab2-desc {
    font-size: 17px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Feature Cards Stack */
.ab2-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab2-card {
    background-color: #f7f6f2; /* Light cream */
    border-left: 4px solid #D6B77D; /* Gold left border */
    border-radius: 12px;
    padding: 30px;
}

.ab2-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 10px 0;
    font-family: 'Geist', sans-serif;
}

.ab2-card-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Team Section (Desktop) */
.claim-team-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.team-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.team-heading {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin: 0 auto 0 auto;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1px;
    max-width: 500px;
}

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

/* Card Styling & Hover Logic */
.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    background-color: #f7f6f2; /* Cream background for hover state */
    cursor: pointer;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
}

.team-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Hover Triggers */
.team-card:hover .team-img {
    opacity: 0;
    transform: scale(1.05); /* Slight zoom out while fading */
}

.team-card:hover .team-content-overlay {
    opacity: 1;
    z-index: 3;
}

/* Hover Content Typography */
.team-member-name {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 5px 0;
    font-family: 'Geist', sans-serif;
}

.team-member-role {
    font-size: 13px;
    color: #666666;
    display: block;
    margin-bottom: 25px;
}

.team-member-desc {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}



/* Transparent Communication Section (Desktop) */
.claim-trans-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.trans-box-wrapper {
    display: flex;
    background-color: #D2A868; /* Theme matching Gold/Tan */
    border-radius: 20px;
    padding: 70px 60px;
    gap: 60px;
}

/* Left Column */
.trans-left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trans-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trans-badge-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trans-badge-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.trans-quote-text {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.trans-author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.trans-author-name {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    font-family: 'Geist', sans-serif;
}

.trans-author-role {
    font-size: 15px;
    color: #444444;
    margin: 0;
    font-weight: 500;
}

/* Divider */
.trans-divider {
    width: 1px;
    background-color: rgba(17, 17, 17, 0.1);
    flex-shrink: 0;
}

/* Right Column */
.trans-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trans-heading {
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    font-family: 'Geist', sans-serif;
    letter-spacing: -1.5px;
    margin: 0;
    max-width: 95%;
}

.trans-stat-box {
    margin-top: 50px;
}

.trans-stat-num {
    font-size: 85px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 5px 0;
    line-height: 1;
    font-family: 'Geist', sans-serif;
}

.trans-stat-text {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}


/* ==========================================================================================
   About Us Page CSS End
   ========================================================================================== */


/* ==========================================================================
   MASTER RESPONSIVE CSS (Laptop, Tablet, Mobile)
   Desktop styling above is kept 100% untouched.
   ========================================================================== */

   /* Horizontal Animation Keyframes for Tablet & Mobile */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); } 
}

/* --- LAPTOP SCREENS (1199px and below) --- */
@media (max-width: 1199px) {
    /* Scale down large typography slightly */
    .hero-title { font-size: 65px; }
    .claim-hero-container { gap: 30px; }
    .about-heading, .plans-heading, .testi-main-heading, .contact-main-title { font-size: 48px; }
    .wcu-heading, .faq-heading, .expertise-heading { font-size: 42px; }
    
    /* Adjust Testimonial layout to fit screen */
    .testi-content-row { grid-template-columns: 300px 1fr; }
    .contact-left-bg { width: 35%; }
}

/* --- TABLET SCREENS (991px and below) --- */
@media (max-width: 991px) {
    
    /* 1. Global Padding Fix */
    .claim-hero-section, .claim-about-section, .claim-plans-section, 
    .claim-features-list-section, .claim-expertise-section, .claim-wcu-section, 
    .claim-testi-section, .claim-faq-section, .claim-contact-section, .custom-claim-footer {
        padding: 70px 0;
    }
    .trusted-logos {
        justify-content: center;
    }
    
    /* 2. Header Mobile Menu Config */
    .custom-claim-header { padding: 15px 20px; }
    .mobile-menu-toggle { display: block; }
    .header-nav-cta {
        display: none; 
        flex-direction: column;
        background-color: #1a322b;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 999;
        gap: 20px;
        box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    }
    .header-nav-cta.active { display: flex; }
    .custom-nav ul.dynamic-menu-list {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 5px;
    }
    .custom-nav ul.dynamic-menu-list li { width: 100%; }
    .custom-nav ul.dynamic-menu-list li a { padding: 10px 0; }
    .header-cta { display: flex; justify-content: center; width: 100%; }

    /* 3. Convert all 2-Column Grids to 1-Column */
    .claim-hero-container, .about-top-row, .about-bottom-row, .stats-grid, 
    .expertise-grid, .wcu-tab-grid, .testi-header-row, .testi-content-row, 
    .faq-grid, .contact-grid, .footer-top-grid, .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-grid{
        grid-template-columns: 1fr 1fr;
    }
    .contact-cards-wrapper{
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    /* 4. Typography Adjustments for Tablet */
    .hero-title { font-size: 50px; }
    .about-heading, .plans-heading, .testi-main-heading, .contact-main-title { font-size: 40px; }
    .wcu-heading, .faq-heading, .expertise-heading { font-size: 36px; }
    .about-subheading { font-size: 26px; }
    .stat-num, .testi-rating-num { font-size: 50px; }
    .footer-form-heading { font-size: 38px; }

    /* 5. Specific Element Fixes */
    .hero-content-col { padding: 40px 0; text-align: center; }
    .hero-desc { margin: 0 auto 30px auto; }
    .hero-btn-primary { float: none; }
    
    /* Hero Image Scroll - Vertical to Horizontal for Tablet */
    .image-scroll-wrapper { 
        height: auto; 
        flex-direction: column; /* Dono columns ab horizontally stack honge */
        overflow: hidden;
        gap: 20px;
    }
    .scroll-column { 
        width: 100%; 
        height: auto; 
    }
    .scroll-track { 
        flex-direction: row; 
        width: max-content; /* Horizontal scroll ke liye bohot zaroori he */
    }
    .scroll-half { 
        flex-direction: row; 
        padding-bottom: 0; 
        padding-right: 20px; /* Horizontal seamless gap */
    }
    .scroll-half img { 
        height: 250px; 
        width: 350px; /* Fixed width zaroori he varna image sikud jayegi */
    }
    
    /* Animation Change: Y (up/down) se X (left/right) */
    .track-up { animation: scrollLeft 18s linear infinite; }
    .track-down { transform: translateX(-50%); animation: scrollRight 18s linear infinite; }
    
    .about-top-graphic { display: none; }
    .about-image-col { min-height: 350px; }
    
    .expertise-content-col, .contact-info-col { padding-right: 0; }
    .expertise-main-img, .wcu-tab-image-col img { height: 350px; }
    
    .contact-left-bg { display: none; }
    .contact-form-box { padding: 40px 30px; }
    
    .testi-left-box { min-height: auto; padding: 40px 30px; }
    .testi-right-box { padding: 40px 30px; }
    
    .footer-bottom-flex { flex-direction: column; text-align: center; }

    /* Inner Hero Tablet */
    .claim-inner-hero { padding: 90px 0; }
    .inner-hero-title { font-size: 45px; }

    /* About V2 Tablet */
    .about-v2-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-v2-img-wrapper { min-height: 450px; }
    .ab2-heading { font-size: 42px; }

    /* Team Section Tablet */
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .team-heading { font-size: 42px; }
    .team-card { height: 420px; }


    /* Trans Section Tablet */
    .trans-box-wrapper { flex-direction: column; gap: 40px; padding: 50px; }
    .trans-divider { width: 100%; height: 1px; } /* Divider becomes horizontal */
    .trans-heading { font-size: 42px; }
    .trans-stat-num { font-size: 65px; }
}

/* --- MOBILE SCREENS (767px and below) --- */
@media (max-width: 767px) {
    
    /* 1. Reduce Layout Padding */
    .claim-hero-section, .claim-about-section, .claim-plans-section, 
    .claim-features-list-section, .claim-expertise-section, .claim-wcu-section, 
    .claim-testi-section, .claim-faq-section, .claim-contact-section, .custom-claim-footer {
        padding: 50px 0;
    }

    /* Hero Scroll Horizontal for Mobile */
    .image-scroll-wrapper { height: auto; gap: 15px;}
    .scroll-half { gap: 15px; padding-right: 15px; }
    .scroll-half img { height: 180px; width: 260px; } /* Mobile ke liye chhota size */

    /* 2. Scale Down Typography for Phone Sizes */
    .hero-title { font-size: 38px; margin-bottom: 20px;}
    .about-heading, .plans-heading, .testi-main-heading, .contact-main-title { font-size: 32px; margin-bottom: 15px;}
    .wcu-heading, .faq-heading, .expertise-heading { font-size: 30px; margin-bottom: 15px;}
    .about-subheading { font-size: 22px; }
    .stat-num, .testi-rating-num { font-size: 42px; }
    .f-logo-text { font-size: 28px; }
    .footer-form-heading { font-size: 28px; margin-bottom: 20px; text-align: center;}
    .c-form-title { font-size: 26px; }
    
    /* Paragraphs and Descriptions */
    .hero-desc, .about-desc, .plan-card-desc, .expertise-desc, 
    .wcu-tab-desc, .testi-slide-quote, .faq-desc, .contact-main-desc, .footer-desc {
        font-size: 15px; 
        margin-bottom: 25px;
    }

    /* 3. Button Adjustments */
    .defult-btn, .hero-btn-primary, .faq-book-btn { font-size: 15px; padding: 10px 45px 10px 15px;}
    .defult-btn .btn-icon, .hero-btn-primary .btn-arrow { width: 35px; height: 35px; padding: 12px;}

    /* 4. Section Specific Adjustments */
    /* Hero Scroll */
    .image-scroll-wrapper { height: 400px; gap: 10px;}
    .scroll-half { gap: 10px; padding-bottom: 10px; }
    .scroll-half img { height: 200px; }
    
    /* Marquee */
    .marquee-text { font-size: 18px; margin-right: 20px; }
    .marquee-icon { width: 30px; }
    .marquee-icon img { height: 30px; }
    
    /* Feature & Plans */
    .plans-grid, .features-list-grid { grid-template-columns: 1fr; }
    .feature-list-item { flex-direction: column; align-items: center; text-align: center; }
    .feature-content { padding-top: 15px; }
    .plan-card { padding: 20px; }
    .plan-card-img { height: 180px; }
    
    /* WCU Tabs */
    .wcu-tabs-nav { gap: 10px; padding-bottom: 20px; margin-bottom: 30px;}
    .wcu-tab-btn { padding: 8px 20px; font-size: 14px; }
    
    /* FAQ Section */
    .faq-question-btn { padding: 18px 20px; font-size: 16px; }
    .faq-answer-content { padding: 0 20px; }
    .faq-item.active .faq-answer-content { padding-bottom: 20px; }
    .faq-agent-card { flex-direction: column; align-items: flex-start; }
    
    /* Contact Section */
    .contact-form-box { padding: 30px 20px; }
    .custom-cf7-wrapper .cf7-split { grid-template-columns: 1fr; }
    .contact-card { padding: 20px; }
    
    /* Footer Section */
    .footer-logo-row { flex-direction: column; text-align: center;}
    .footer-desc { text-align: center; margin: 0 auto 30px auto;}
    .footer-inline-menu { justify-content: center; gap: 15px;}
    
    .footer-form-wrapper form {
        position: relative;
        max-width: inherit;
        display: flex;
        justify-content: center;
    }

    /* Inner Hero Mobile */
    .claim-inner-hero { padding: 60px 0; }
    .inner-hero-title { font-size: 36px; }
    .inner-breadcrumbs { font-size: 14px; margin-bottom: 15px;}

    /* About V2 Mobile */
    .about-v2-img-wrapper { min-height: 350px; border-radius: 15px; }
    .ab2-exp-box { bottom: 25px; left: 20px; }
    .ab2-exp-num { font-size: 45px; }
    .ab2-heading { font-size: 32px; margin: 20px 0 15px 0; }
    .ab2-desc { font-size: 15px; margin-bottom: 30px; }
    .ab2-card { padding: 20px; }

    /* Team Section Mobile */
    .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .team-heading { font-size: 36px; }
    .team-card { height: 400px; }
    .team-content-overlay { padding: 25px 20px; }


    /* Trans Section Mobile */
    .trans-box-wrapper { padding: 40px 20px; gap: 30px; }
    .trans-badges { margin-bottom: 30px; }
    .trans-badge-circle { width: 90px; height: 90px; padding: 10px;}
    .trans-quote-text { font-size: 16px; margin-bottom: 25px; }
    .trans-heading { font-size: 34px; letter-spacing: -0.5px;}
    .trans-stat-box { margin-top: 30px; }
    .trans-stat-num { font-size: 55px; }
    .trans-author-name { font-size: 18px; }
}

@media (max-width: 575px){
    .contact-cards-wrapper{
        grid-template-columns: 1fr;
        gap: 4px;
    }
}