/*!
Theme Name: Kapra
Theme URI: http://underscores.me/
Author: Muhammad Waseem
Author URI: http://
Description: Description
Version: 1.2.0
Text Domain: kaprafalconeri
*/
:root{
  --blue: #1C3F60;
  --yellow: #fbc32c;
  --white: #f1f1f1;
  --black: #000;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  border-radius: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}


ul,
ol {
  list-style-type: disc;
}

/* Container */
.container {
  /*max-width: 1366px;*/
  width: 100%;
  padding: 3px;
  margin: 0px;
}

:root {
    --blue: #1C3F60;
    --yellow: #FBC333;
    --white: #ffffff;
}





/* ====================================
   HOME PAGE NEW DESIGN - COMPLETE CSS
   ==================================== */

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-primary:hover {
    background: #333;
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}


/* ===== BRANDS SECTION - SMART DESIGN ===== */
.new-brands {
    padding: 70px 0;
    background: #fbc333;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.new-brands::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(251, 195, 51, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/*.new-brands::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -50px;*/
/*    left: -50px;*/
/*    width: 250px;*/
/*    height: 250px;*/
/*    background: rgba(28, 63, 96, 0.03);*/
/*    border-radius: 50%;*/
/*    pointer-events: none;*/
/*}*/

.new-brands__title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
}

.new-brands__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ffff;
    margin: 15px auto 0;
    border-radius: 2px;
}

.new-brands__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Brand Card - Smart Design */
.brand-card {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.brand-card__inner {
    /*background: #ffffff;*/
    /*border-radius: 16px;*/
    /*padding: 30px 20px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
    /*border: 1px solid rgba(0, 0, 0, 0.03);*/
    transition: all 0.3s ease;
    height: 70%;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

/* Smart hover effect */
.brand-card:hover .brand-card__inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 195, 51, 0.15);
    border-color: #FBC333;
}

/* Logo wrapper for better image control */
.brand-card__logo-wrapper {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo {
    /*max-width: 100%;*/
    /*max-height: 100%;*/
    /*width: auto;*/
    /*height: auto;*/
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1);
    width: 500px !important;
}

.brand-card:hover .brand-logo {
    transform: scale(1.08);
}

/* Brand name styling */
.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #1C3F60;
    margin-top: 5px;
    transition: color 0.3s ease;
    text-align: center;
}

.brand-card:hover .brand-name {
    color: #FBC333;
}

/* Smart border animation on hover */
.brand-card__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: #FBC333;
    transition: height 0.3s ease;
    z-index: 1;
}

.brand-card__inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: #FBC333;
    transition: height 0.3s ease;
    z-index: 1;
}

.brand-card:hover .brand-card__inner::before,
.brand-card:hover .brand-card__inner::after {
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .new-brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .new-brands__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .new-brands {
        padding: 50px 0;
    }
    
    .brand-card__inner {
        padding: 25px 15px;
        min-height: 160px;
    }
    
    .brand-card__logo-wrapper {
        width: 100px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .new-brands__grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .brand-card__inner {
        min-height: 150px;
    }
}
/**********************************************************************/
/* ===== MORE BRANDS SECTION - INFINITE CAROUSEL ===== */
.more-brands {
    padding: 60px 0;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.more-brands__title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #1C3F60;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.more-brands__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #FBC333;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Clickable title */
.more-brands__title-link {
    text-decoration: none;
    display: flex;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.more-brands__title-link:hover {
    transform: translateY(-2px);
}

.more-brands__title-link .more-brands__title {
    margin-bottom: 0;
    cursor: pointer;
}

.more-brands__title-link .more-brands__title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FBC333;
    transition: width 0.3s ease;
}

.more-brands__title-link:hover .more-brands__title::after {
    width: 100%;
}

.more-brands__carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient overlays - softer */
.more-brands__carousel::before,
.more-brands__carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.more-brands__carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.more-brands__carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.more-brands__track {
    display: flex;
    animation: scroll 100s linear infinite;
    width: fit-content;
    gap: 30px;
    /* Ensure hardware acceleration for smoother animation */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
    will-change: transform;
}

/* FIXED: Completely pause on hover - NOT SLOW DOWN */
.more-brands__carousel:hover .more-brands__track {
    animation-play-state: paused !important; /* Force pause, not slow */
}

.more-brands__item {
    flex: 0 0 auto;
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.more-brands__item:hover {
    transform: translateY(-8px);
}

/* Logo Container */
.more-brands__logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 16px;
    min-width: 180px;
    height: 120px;
    transition: all 0.4s ease;
    border: 1px solid #eaeef2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* FIXED: Ensure hover effects work even when carousel is paused */
.more-brands__carousel:hover .more-brands__item {
    animation-play-state: paused; /* Keep items pause when carousel hovered */
}

.more-brands__item:hover .more-brands__logo-wrapper {
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(251, 195, 51, 0.2);
    border-color: #FBC333;
}

/* Logo Image */
.more-brands__logo {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1);
}

.more-brands__item:hover .more-brands__logo {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

/* Brand name - appears on hover */
.more-brands__logo-name {
    font-size: 13px;
    font-weight: 600;
    color: #1C3F60;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(251, 195, 51, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.more-brands__item:hover .more-brands__logo-name {
    opacity: 1;
    transform: translateY(0);
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .more-brands__logo-wrapper {
        min-width: 160px;
        height: 110px;
        padding: 18px 25px;
    }
    
    .more-brands__logo {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 1024px) {
    .more-brands__logo-wrapper {
        min-width: 140px;
        height: 100px;
        padding: 15px 20px;
    }
    
    .more-brands__logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    .more-brands__carousel::before,
    .more-brands__carousel::after {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .more-brands {
        padding: 40px 0;
    }
    
    .more-brands__title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .more-brands__track {
        gap: 20px;
        animation: scroll 100s linear infinite;
    }
    
    .more-brands__logo-wrapper {
        min-width: 120px;
        height: 90px;
        padding: 12px 15px;
    }
    
    .more-brands__logo {
        max-width: 90px;
        max-height: 45px;
    }
    
    .more-brands__carousel::before,
    .more-brands__carousel::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .more-brands__logo-wrapper {
        min-width: 100px;
        height: 80px;
        padding: 10px 12px;
    }
    
    .more-brands__logo {
        max-width: 140px;
        max-height: 45px;
    }
    
    .more-brands__track {
        gap: 15px;
    }
    
    .more-brands__logo-name {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .more-brands__carousel::before,
    .more-brands__carousel::after {
        width: 40px;
    }
}
/* ===== INDUSTRY DIVISIONS - UPDATED STYLES ===== */
.new-industry {
    padding: 80px 0;
    background: #f8f8f8;
}

.new-industry__header {
    text-align: center;
    margin-bottom: 50px;
}

.new-industry__pretitle {
    display: block;
    font-size: 20px; /* Increased from 14px to 20px as requested */
    letter-spacing: 3px;
    color: #FBC333;
    margin-bottom: 10px;
    font-weight: 700; /* Made bolder */
    text-transform: uppercase;
}

.new-industry__title {
    font-size: 42px;
    font-weight: 700;
    color: #1D2939;
    margin: 0;
}

.new-industry__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Division Card */
.division-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.division-card:hover {
    transform: translateY(-10px);
}

/* Dark overlay */
.division-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.division-card:hover .division-card__overlay {
    background: linear-gradient(to top, rgba(249,190,49,0.9) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.4) 100%);
}

/* Content */
.division-card__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.division-card__pretitle {
    display: inline-block;
    font-size: 14px; /* Increased from 12px for better visibility */
    font-weight: 700; /* Made bold as requested */
    letter-spacing: 2px;
    color: #FBC333;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5); /* Darker background for better contrast */
    padding: 6px 15px; /* Slightly larger padding */
    border-radius: 30px;
    width: fit-content;
    border: 1px solid rgba(249,190,49,0.3); /* Subtle border */
}

.division-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.division-card__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 90%;
}

/* Category tags - kept commented as in original */
.category-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.division-card:hover .category-tag {
    background: #ffffff;
    color: #1D2939;
    border-color: #FBC333;
}

/* Catalogue Button - Fully Dynamic */
.division-card__link {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 30px;  /* Slightly larger padding */
    position: relative;
    width: fit-content;
    border: 2px solid #FBC333;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 15px; /* Slightly larger font */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Arrow using pseudo-element */
.division-card__link::after {
    content: '→';
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #FBC333;
    font-weight: 400;
    font-size: 16px;
}

/* Hover effect */
.division-card__link:hover {
    background: #FBC333;
    color: #1D2939;
    border-color: #FBC333;
}

.division-card__link:hover::after {
    color: #1D2939;
    transform: translateX(8px); /* Arrow moves right */
}

/* Responsive */
@media (max-width: 768px) {
    .new-industry__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .new-industry__title {
        font-size: 32px;
    }
    
    .new-industry__pretitle {
        font-size: 18px; /* Slightly smaller on mobile but still larger than before */
    }
    
    .division-card {
        min-height: 400px;
    }
    
    .division-card__content {
        padding: 30px;
    }
    
    .division-card__title {
        font-size: 28px;
    }
    
    .division-card__pretitle {
        font-size: 13px;
        padding: 5px 12px;
    }
    
    .division-card__link {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .division-card {
        min-height: 350px;
    }
    
    .division-card__title {
        font-size: 24px;
    }
    
    .division-card__description {
        font-size: 14px;
        max-width: 100%;
    }
    
    .division-card__pretitle {
        font-size: 12px;
    }
    
    .division-card__link {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===== TRADE ACCOUNT SECTION ===== */
/* ===== OPEN A TRADE ACCOUNT SECTION - CENTERED ===== */
.new-trade-account {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.trade-account__bg {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trade-account__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.trade-account__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
    padding: 80px 20px;
    margin: 0 auto;
    text-align: center;
}

.trade-account__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

/* Yellow accent line - centered */
.trade-account__title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #FBC333;
    margin: 20px auto 0;
}

.trade-account__description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trade-account__btn {
    display: inline-block;
    background: #FBC333;
    color: #1D2939;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #FBC333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 190, 49, 0.3);
}

.trade-account__btn:hover {
    background: transparent;
    color: #FBC333;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 190, 49, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .trade-account__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .trade-account__bg {
        min-height: 500px;
    }
    
    .trade-account__content {
        text-align: center;
        max-width: 100%;
        padding: 60px 0;
    }
    
    .trade-account__title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trade-account__description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trade-account__title {
        font-size: 36px;
    }
    
    .trade-account__btn {
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .trade-account__title {
        font-size: 30px;
    }
    
    .trade-account__btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ===== SCALE YOUR BRAND GLOBALLY SECTION ===== */
.new-scale-brand {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.scale-brand__bg {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.scale-brand__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.scale-brand__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
    padding: 80px 20px;
    margin: 0 auto;
    text-align: center;
}

.scale-brand__pretitle {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #FBC333;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: rgb(0 0 0 / 45%);
    padding: 5px 20px;
    border-radius: 30px;
}


.scale-brand__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
}

.scale-brand__description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.scale-brand__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.scale-brand__btn-primary {
    display: inline-block;
    background: #FBC333;
    color: #1D2939;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #FBC333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 190, 49, 0.3);
}

.scale-brand__btn-primary:hover {
    background: transparent;
    color: #FBC333;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 190, 49, 0.4);
}

/*.scale-brand__btn-link {*/
/*    display: inline-block;*/
/*    color: #ffffff;*/
/*    font-weight: 600;*/
/*    font-size: 16px;*/
/*    text-decoration: none;*/
/*    border-bottom: 2px solid #FBC333;*/
/*    padding-bottom: 5px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.scale-brand__btn-link:hover {*/
/*    color: #FBC333;*/
/*    transform: translateX(5px);*/
/*}*/

/* Responsive */
@media (max-width: 1024px) {
    .scale-brand__title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .scale-brand__bg {
        min-height: 550px;
    }
    
    .scale-brand__content {
        text-align: center;
        max-width: 100%;
        padding: 60px 0;
    }
    
    .scale-brand__description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .scale-brand__buttons {
        justify-content: center;
    }
    
    .scale-brand__title {
        font-size: 40px;
    }
    
    .scale-brand__title br {
        display: none;
    }
}

@media (max-width: 480px) {
    .scale-brand__title {
        font-size: 32px;
    }
    
    .scale-brand__buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .scale-brand__btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}



/* ===== INSIGHTS CAROUSEL ===== */
.new-insights {
    padding: 60px 0;
    background: #1c3f60;
    position: relative;
    overflow: hidden;
}

.insights__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.insights__title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFF;
    position: relative;
    margin: 0;
}

.insights__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FBC333;
    margin-top: 10px;
}

.insights__view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid #FBC333;
    border-radius: 30px;
}

.insights__view-all:hover {
    background: #FBC333;
    color: #1C3F60;
    gap: 15px;
}

/* Swiper Container */
.insightsSwiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}

.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Insights Card */
.insights__card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insights__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(251, 195, 51, 0.15);
}

.insights__card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.insights__card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
    z-index: 1;
}

.insights__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insights__card:hover .insights__image {
    transform: scale(1.05);
}

.insights__card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insights__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.insights__category {
    background: #FBC333;
    color: #1C3F60;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insights__date {
    color: #666;
    font-weight: 500;
}

.insights__post-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.insights__post-title a {
    color: #1C3F60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights__post-title a:hover {
    color: #FBC333;
}

.insights__read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #FBC333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.insights__read-more:hover {
    gap: 10px;
    color: #1C3F60;
}

/* Navigation Buttons */
.insights-button-prev,
.insights-button-next {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 2px solid #FBC333;
    border-radius: 50%;
    color: #1C3F60;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insights-button-prev::after,
.insights-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.insights-button-prev:hover,
.insights-button-next:hover {
    background: #FBC333;
    color: #1C3F60;
    transform: scale(1.1);
}

.insights-button-prev {
    left: -20px;
}

.insights-button-next {
    right: -20px;
}

/* Pagination */
.insights-pagination {
    bottom: 0 !important;
}

.insights-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d0d7e2;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.insights-pagination .swiper-pagination-bullet-active {
    background: #FBC333;
    transform: scale(1.2);
    width: 12px;
    height: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .insights__grid {
        gap: 20px;
    }
    
    .insights-button-prev {
        left: -10px;
    }
    
    .insights-button-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .insights__header {
        flex-direction: column;
        text-align: center;
    }
    
    .insights__title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .insights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-button-prev,
    .insights-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .insights__grid {
        grid-template-columns: 1fr;
    }
    
    .insights__card-image {
        height: 180px;
    }
}


/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 70px 0;
    background: #f8f9fc;  /* Light background */
    text-align: center;
}

.reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews .main {
    width: 100%;
}

.reviews .heading {
    margin-bottom: 50px;
}

.reviews__title {
    font-size: 36px;
    font-weight: 700;
    color: #1D2939;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.reviews__title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #FBC333;  /* Yellow underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.reviews__desc {
    font-size: 18px;
    color: #5a6a7e;
    margin-top: 15px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Review Platforms Container */
.reviews .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

/* Review Platform Card */
.review-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 30px 45px;
    border-radius: 16px;
    background: #ffffff;  /* White card background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 240px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-platform:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Trustpilot specific hover */
.review-platform--trustpilot:hover {
    box-shadow: 0 20px 40px rgba(0, 180, 82, 0.12);
}

/* Google specific hover */
.review-platform--google:hover {
    box-shadow: 0 20px 40px rgba(66, 133, 244, 0.12);
}

/* Platform Logo */
.review-platform__logo {
    max-width: 160px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.review-platform:hover .review-platform__logo {
    filter: brightness(1.05);
}

/* Stars Container */
.review-platform .stars {
    display: flex;
    gap: 6px;
    margin-top: 5px;
}

.review-platform .stars svg {
    width: 22px;
    height: 22px;
    fill: #FBC333;  /* Yellow stars */
    transition: transform 0.2s ease;
}

.review-platform:hover .stars svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews__title {
        font-size: 32px;
    }
    
    .reviews__desc {
        font-size: 17px;
    }
    
    .review-platform {
        padding: 25px 40px;
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }
    
    .reviews .content {
        gap: 25px;
    }
    
    .review-platform {
        padding: 25px 35px;
        min-width: 200px;
    }
    
    .review-platform__logo {
        max-width: 140px;
        max-height: 45px;
    }
    
    .review-platform .stars svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 600px) {
    .reviews .content {
        flex-direction: column;
        gap: 20px;
    }
    
    .review-platform {
        width: 100%;
        max-width: 320px;
        padding: 25px 30px;
    }
    
    .reviews__title {
        font-size: 28px;
    }
    
    .reviews__desc {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 50px 0;
    }
    
    .reviews__title {
        font-size: 26px;
    }
    
    .review-platform {
        max-width: 280px;
        padding: 20px 25px;
    }
    
    .review-platform__logo {
        max-width: 130px;
        max-height: 40px;
    }
}




/* ===== NEWSLETTER SECTION - UPDATED ===== */
section.newsletter {
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

section.newsletter .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

section.newsletter .main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--yellow, #FBC333);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

section.newsletter .main h2 {
    font-size: 28px;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #1D2939;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
}

section.newsletter .main p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    color: #1D2939;
    text-align: center;
    max-width: 100%;
}

/* Email Form */
.newsletter__form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.email-form {
    width: 100%;
}

.email-form form,
.email-form .wpcf7-form {
    display: flex !important;
    align-items: center;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.email-form p {
    display: flex !important;
    align-items: center;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
}

/* Input wrapper */
.wpcf7-form-control-wrap {
    flex: 1;
    display: block;
    width: auto;
}

.email-form input[type="email"] {
    width: 100%;
    height: 50px;
    background-color: #1C3F60;
    border: none;
    outline: none;
    padding: 0 15px;
    color: white;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px 0 0 30px;
    box-sizing: border-box;
    margin: 0;
}

.email-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* ORIGINAL ARROW BUTTON - CIRCLE STYLE */
.email-form button {
    height: 50px;
    width: 50px;
    background-color: #FBC333;
    border: none;
    border-radius: 50%; /* Full circle */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: -25px; /* Half overlap to create circle effect */
    padding: 0;
    box-shadow: 0 5px 15px rgba(251, 195, 51, 0.3);
    position: relative;
    z-index: 3;
}

/* ORIGINAL ARROW STYLE - rotated 135deg */
.email-form button svg {
    width: 18px;
    height: 18px;
    fill: #1C3F60;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
}

/* ORIGINAL HOVER EFFECT */
.email-form button:hover {
    background-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.email-form button:hover svg {
    transform: rotate(135deg) scale(1.1);
    fill: #1C3F60;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    section.newsletter .main {
        padding: 30px 15px;
    }
    
    section.newsletter .main h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    section.newsletter .main p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .email-form input[type="email"] {
        height: 45px;
        font-size: 13px;
        padding: 0 12px;
    }
    
    .email-form button {
        height: 45px;
        width: 45px;
        margin-left: -22px; /* Adjusted for smaller size */
    }
    
    .email-form button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    section.newsletter .main {
        padding: 25px 12px;
    }
    
    section.newsletter .main h2 {
        font-size: 20px;
    }
    
    section.newsletter .main p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .email-form input[type="email"] {
        height: 42px;
        font-size: 12px;
        padding: 0 10px;
    }
    
    .email-form input[type="email"]::placeholder {
        font-size: 11px;
    }
    
    .email-form button {
        height: 42px;
        width: 42px;
        margin-left: -21px; /* Adjusted for smaller size */
    }
    
    .email-form button svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 360px) {
    .email-form input[type="email"] {
        height: 40px;
        font-size: 11px;
        padding: 0 8px;
    }
    
    .email-form button {
        height: 40px;
        width: 40px;
        margin-left: -20px; /* Adjusted for smaller size */
    }
}


/* ===== DELIVERY PARTNERS SECTION ===== */
.delivery-partners {
    padding: 20px 0;
    background: #F1F1F1;
    text-align: center;
}

.delivery-partners__title {
    font-size: 28px;
    font-weight: 600;
    color: #1D2939;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.delivery-partners__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FBC333;
    margin: 12px auto 0;
    border-radius: 2px;
}

.delivery-partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.delivery-partner {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.delivery-partner:hover {
    transform: translateY(-5px);
}

.delivery-partner__logo {
    max-width: 170px;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.7);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.delivery-partner:hover .delivery-partner__logo {
    filter: brightness(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .delivery-partners {
        padding: 40px 0;
    }
    
    .delivery-partners__title {
        font-size: 24px;
    }
    
    .delivery-partners__grid {
        gap: 30px;
    }
    
    .delivery-partner__logo {
        max-width: 100px;
        max-height: 50px;
    }
}



/****************************************************************************************************************************************/



/* ===== HERO SLIDER SECTION ===== */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 75vh; /* Increased slightly for better spacing */
    min-height: 600px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 63, 96, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
    padding: 60px 20px;
    text-align: left;
    width: 100%;
}

/* EST Line and Text */
.hero__est-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px; /* Increased spacing */
    justify-content: flex-start;
}

.hero__est-line {
    height: 2px;
    width: 48px;
    background-color: #FBC333;
}

.hero__est {
    color: #FBC333;
    font-size: 13px; /* Slightly larger */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1;
}

/* ===== TWO-COLOR TITLE STYLING ===== */
.hero__title {
    font-size: 4rem; /* Adjusted for better proportion */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: left;
}

/* First line - White */
.hero__title .line1 {
    color: #ffffff;
    display: block;
}

/* Second line - Yellow */
.hero__title .line2 {
    color: #FBC333;
    display: block;
}

/* If title doesn't have spans, default to white */
.hero__title:not(.line1):not(.line2) {
    color: #ffffff;
}

/* Description */
.hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    text-align: left;
}

/* Buttons */
.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 50px;
}

.hero__buttons .btn {
    display: inline-block;
    font-weight: 700;
    padding: 16px 35px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hero__buttons .btn-primary {
    background: #FBC333;
    color: #1C3F60;
    border: 2px solid #FBC333;
}

.hero__buttons .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #1C3F60;
}

.hero__buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero__buttons .btn-outline:hover {
    background: #FBC333;
    border-color: #FBC333;
    color: #1C3F60;
}

/* Pagination */
.hero-pagination {
    bottom: 30px !important;
    z-index: 10;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #FBC333;
    width: 30px;
    border-radius: 0;
}

/* Remove navigation buttons */
.hero-button-prev,
.hero-button-next,
.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1600px and up) */
@media screen and (min-width: 1600px) {
    .hero-slider .swiper {
        height: 70vh;
        min-height: 650px;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .hero__title {
        font-size: 5.5rem;
    }
    
    .hero__description {
        font-size: 20px;
        max-width: 700px;
    }
}

/* Desktop (1367px - 1599px) */
@media screen and (min-width: 1367px) and (max-width: 1599px) {
    .hero-slider .swiper {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero__title {
        font-size: 5rem;
    }
}

/* Small Desktop (1200px - 1366px) */
@media screen and (max-width: 1366px) {
    .hero-slider .swiper {
        height: 70vh;
        min-height: 550px;
    }
    
    .hero__title {
        font-size: 4.2rem;
    }
    
    .hero-content {
        padding: 50px 20px;
    }
}

/* Medium Desktop (1025px - 1199px) */
@media screen and (max-width: 1199px) {
    .hero-slider .swiper {
        height: 65vh;
        min-height: 500px;
    }
    
    .hero__title {
        font-size: 3.8rem;
    }
    
    .hero__description {
        font-size: 17px;
    }
}

/* Small Desktop / Large Tablet (992px - 1024px) */
@media screen and (max-width: 1024px) {
    .hero-slider .swiper {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media screen and (max-width: 991px) {
    .hero-slider .swiper {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__est-wrapper {
        margin-bottom: 15px;
    }
    
    .hero__est-line {
        width: 40px;
    }
    
    .hero__est {
        font-size: 11px;
    }
    
    .hero__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media screen and (max-width: 767px) {
    .hero-slider .swiper {
        height: 65vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero__est-wrapper {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .hero__est-line {
        width: 35px;
    }
    
    .hero__est {
        font-size: 10px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__description {
        font-size: 15px;
    }
    
    .hero__buttons .btn {
        padding: 14px 25px;
        font-size: 13px;
    }
}

/* Mobile (480px - 575px) */
@media screen and (max-width: 575px) {
    .hero-slider .swiper {
        height: 70vh;
        min-height: 550px;
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .hero__description {
        font-size: 14px;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero__buttons .btn {
        max-width: 280px;
        width: 100%;
    }
    
    .hero-pagination {
        bottom: 15px !important;
    }
}

/* Small Mobile (360px - 479px) */
@media screen and (max-width: 479px) {
    .hero-slider .swiper {
        min-height: 520px;
    }
    
    .hero__title {
        font-size: 1.5rem;
    }
    
    .hero__description {
        font-size: 13px;
    }
    
    .hero__buttons .btn {
        max-width: 240px;
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Very Small Mobile (below 360px) */
@media screen and (max-width: 359px) {
    .hero-slider .swiper {
        min-height: 500px;
    }
    
    .hero__title {
        font-size: 1.3rem;
    }
    
    .hero__description {
        font-size: 12px;
    }
    
    .hero__buttons .btn {
        max-width: 200px;
    }
}