/* ============================================
   COLD TEMPLATE STYLES
   Minimalist Design with Geometric Elements
   Mobile-First Responsive Design
   ============================================ */

/* Color Palette - Extracted from Pro Template */
:root {
    --primary-blue: #d64238;
    --primary-blue-dark: #b8352d;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --green-whatsapp: #25D366;
    --green-whatsapp-dark: #128C7E;
    --blue-telegram: #0088CC;
    --blue-telegram-dark: #006699;
    --green-service: #4CAF50;
    --blue-service: #2196F3;
    --peach-bg: #FFE5D9;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-angle: 0deg;
}

@font-face {
    font-family: 'Creative Teacher';
    src: url('../creative-teacher/Creative Teacher.woff') format('woff'),
         url('../creative-teacher/Creative Teacher.ttf') format('truetype'),
         url('../creative-teacher/Creative Teacher.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Add @property for the animation */
@property --gradient-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@property --pointer-° {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    background-color: #000000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
    height: auto;
}

/* Navigation */


.navbar {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2px; /* Reduced to match border thickness */
    transition: var(--transition);
    position: relative;
    z-index: 1000;
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.3);
    width: 1100px; /* Reduced from 1400px */
    max-width: 100%;
    margin: 0 auto;
    margin-top: 0.7rem;
}

/* Add the rotating gradient border as ::before */
.navbar::before {
    content: "";
    position: absolute;
    inset: 0; /* Covers the entire navbar */
    border-radius: 16px; /* Match navbar border-radius */
    padding: 2px; /* Border thickness */
    background: conic-gradient(
        from var(--gradient-angle),
        rgba(255, 255, 255, 0.1) 0deg,
        rgba(255, 255, 255, 0.1) 60deg,
        rgba(255, 255, 255, 0.9) 120deg,
        rgba(255, 255, 255, 0.1) 180deg,
        rgba(255, 255, 255, 0.1) 240deg,
        rgba(255, 255, 255, 0.9) 300deg,
        rgba(255, 255, 255, 0.1) 360deg
    );
    mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
    -webkit-mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
    animation: loading 4s linear infinite;
    z-index: -1; /* Place behind navbar content */
}

/* Reduce navbar container height */
.navbar .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0.25rem 1.7rem; /* Reduced from 0.5rem to 0.25rem */
    margin: 0;
    background: #0d0c12;
    border-radius: 14px;
    z-index: 1;
    box-sizing: border-box;
}

/* Adjust brand logo size */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced from 12px */
    font-weight: 700;
    font-size: 1.1rem; /* Reduced from 1.25rem */
    color: var(--text-light);
    text-decoration: none;
    z-index: 10;
    position: relative;
    left: 0;
}

/* Compact navbar navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    gap: 0;
    
}

.nav-item {
    flex: 1;
    text-align: left;
    margin-left: 190px;
}

/* Reduce logo height */
.logo-img {
    height: 40px; /* Reduced from 40px */
    width: auto;
    object-fit: contain;
    filter: none;
    margin: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    
}

.site-name-nav {
    color: var(--text-light);
}

/* Reduce nav-link padding */
.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.9rem; /* Reduced from 0.95rem */
    margin: 0;
    transition: var(--transition);
    position: relative;
    padding: 0rem 0rem !important; /* Reduced from 0.5rem */
    flex: 1;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.2rem 0.4rem; /* Reduced from 0.25rem 0.5rem */
    color: var(--text-light);
    position: absolute;
    right: 1.5rem;
    z-index: 10;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-wrapper {
        padding: 15px 15px 0;
    }
    
    .navbar {
        width: 100%;
        padding: 0.5rem 1.2rem; /* Slightly reduced */
    }
    
    .navbar-brand {
        position: relative;
        left: 0;
    }
    
    .navbar .container {
        justify-content: space-between;
        padding: 0.3rem 1.2rem; /* Reduced mobile padding */
    }
    
    .navbar-nav {
        margin-top: 0.75rem; /* Reduced from 1rem */
        width: 100%;
        flex-direction: column;
        gap: 0.35rem; /* Reduced from 0.5rem */
        padding: 0;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important; /* Reduced from 0.75rem */
        width: 100%;
        text-align: left;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    
}

/* Ensure container and content are above the background */
.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section .hero-content-left,
.hero-section .hero-content-right {
    position: relative;
    z-index: 10;
}

/* Solar Light Effect */


.hero-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--blue-service);
    border-radius: 50%;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--green-service);
    transform: rotate(45deg);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes loading {
    0% {
        --gradient-angle: 0deg;
    }
    100% {
        --gradient-angle: 360deg;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: normal;
    color: #ffffff;
    margin-left: 10px;
}

.hero-title-desktop {
    display: block;
}

.hero-title-mobile {
    display: none;
}

.hero-title-white {
    color: #FFFFFF;
    display: block;
    font-size: 2.5rem;
}

.hero-title-orange {
    color: #fb8900;
    display: block;
}

/* Line breaks - visible on both desktop and mobile */
.mobile-break {
    display: block;
}

.text-highlight {
    color: var(--primary-blue);
    position: relative;
}

.text-accent {
    color: var(--blue-service);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero CTA Button - Styled like the image with transparent hover effect */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50px; /* Pill shape */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    margin-left: 10px;
}

/* Orange arrow icon circle */
.hero-cta-btn .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff8c00; /* Orange color */
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-cta-btn .arrow-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Hover state - inverted colors with transparency */
.hero-cta-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-cta-btn:hover .arrow-icon {
    background-color: #ff8c00; /* Arrow stays orange */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-cold {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cold:hover {
    background: var(--primary-blue-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-cold {
    background: transparent;
    color: var(--primary-blue);
    padding: 14px 32px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-cold:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.hero-video-wrapper {
    position: relative;
    z-index: 2;
}

.video-container-cold {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 66, 56, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    pointer-events: none;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Section Header - Matching Testimonials Design */
.section-header {
    text-align: center;
    margin-bottom: -70px;
    padding-bottom: 1.5rem;
}

.section-label-pill {
    display: inline-block;
    background: #fb8900;
    color: #1a1a1a;
    padding: 0.5rem 3rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Reduce spacing for services section specifically */
.services-section .section-label-pill {
    margin-bottom: 0.5rem;
}

.services-section .section-header {
    margin-bottom: -30px;
    
    padding-bottom: 0.1rem;
}

.services-section .row.mb-5 {
    margin-bottom: 0.5rem !important;
}

.services-section .row:first-child {
    margin-bottom: 0.5rem !important;
}

.section-main-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #000000;
    white-space: nowrap;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: -10px;
}

.how-it-works-section-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    text-align: center;
}

.why-choose-us-section-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    text-align: center;
}

.testimonials-section-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ff8c00;
    margin: 0 0 1rem 0;
    text-align: center;
}

.faq-section-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    text-align: center;
}
.divider-services {
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
    position: relative;
}
.divider-testimonials{
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
    position: relative;
}
.divider-contact{
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #000000);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
    position: relative;
}
/* Section Dividers - Each section has its own divider class for individual control */
.divider-how-it-works,
.divider-why-choose-us,

.divider-faq{
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #000000);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
    position: relative;
}

.divider-get-in-touch {
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #000000);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
    position: relative;
}


.divider-how-it-works::after,
.divider-services::after,
.divider-why-choose-us::after,
.divider-contact::after,
.divider-faq::after,
.divider-testimonials::after,
.divider-get-in-touch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ff8c00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Individual divider customization - You can now style each divider separately */
/* Example:
.divider-services {
    width: 180px;
    background: linear-gradient(90deg, #ff8c00, #fb8900);
}

.divider-services::after {
    background: #ff8c00;
}
*/

.section-subtitle-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 40px;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: var(--bg-white) ;
    margin-top: -60px;
    margin-bottom: -70px;
    position: relative;
    padding: 1.5rem 0rem 2rem 0rem;
}

/* How It Works Section */
.how-it-works-section {
    background: #f4f4f4;
    position: relative;
    
    margin-bottom: -40px;
    padding-top: 0.8rem;
    
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: var(--bg-white);
}

.step-item:hover {
    background: rgba(51, 167, 194, 0.05);
    border-color: rgba(58, 179, 197, 0.2);
    transform: translateX(10px);
}

.step-item.active {
    background: rgba(60, 155, 199, 0.1);
    border-color: #0d0c12;
    box-shadow: 0 4px 12px rgba(53, 140, 178, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0c12;
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: #fb8900;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.step-item.active .step-title {
    color: #031a25;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: var(--shadow-lg);
}

.step-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.step-image.active {
    opacity: 1;
    pointer-events: auto;
}

.feature-card-cold {
    --glow-sens: 30;
    --color-sens: calc(var(--glow-sens) + 20);
    --pointer-°: 0deg;
    --glow-color: 5deg 100% 55%; /* Red glow color matching #d64238 */
    --glow-boost: 0%;
    --dark: #1a1a1a;
    
    --card-bg: linear-gradient(8deg, var(--bg-white) 75%, color-mix(in hsl, var(--bg-white), var(--dark) 2.5%) 75.5%);
    --blend: soft-light;
    --glow-blend: plus-lighter;
    
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: 100%;
    border: 1px solid rgb(255 255 255 / 25%);
    background: var(--card-bg);
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    transform: translate3d(0, 0, 0.01px);
    overflow: visible;
    box-shadow: 
        rgba(0, 0, 0, 0.1) 0px 1px 2px, 
        rgba(0, 0, 0, 0.1) 0px 2px 4px, 
        rgba(0, 0, 0, 0.1) 0px 4px 8px, 
        rgba(0, 0, 0, 0.1) 0px 8px 16px;
    animation: glowRotate 4s linear infinite;
}

.feature-card-cold::before,
.feature-card-cold::after,
.feature-card-cold > .glow {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

.feature-card-cold::before {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg) 0 100%) padding-box,
        linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
        radial-gradient(at 80% 55%, hsla(5, 100%, 55%, 1) 0px, transparent 50%) border-box,
        radial-gradient(at 69% 34%, hsla(5, 100%, 60%, 1) 0px, transparent 50%) border-box,
        radial-gradient(at 8% 6%, hsla(5, 100%, 50%, 1) 0px, transparent 50%) border-box,
        radial-gradient(at 41% 38%, hsla(5, 100%, 58%, 1) 0px, transparent 50%) border-box,
        radial-gradient(at 86% 85%, hsla(5, 100%, 62%, 1) 0px, transparent 50%) border-box,
        radial-gradient(at 82% 18%, hsla(5, 100%, 53%, 1) 0px, transparent 50%) border-box,
        radial-gradient(at 51% 4%, hsla(5, 100%, 60%, 1) 0px, transparent 50%) border-box,
        linear-gradient(#d64238 0 100%) border-box;
    opacity: 1;
    mask-image: 
        conic-gradient( 
            from var(--pointer-°) at center, black 15%, transparent 30%, transparent 70%, black 85%
        );
    will-change: mask-image;
    animation: inherit;
}

.feature-card-cold::after {
    border: 1px solid transparent;
    background:
        radial-gradient(at 80% 55%, hsla(5, 100%, 55%, 1) 0px, transparent 50%) padding-box,
        radial-gradient(at 69% 34%, hsla(5, 100%, 60%, 1) 0px, transparent 50%) padding-box,
        radial-gradient(at 8% 6%, hsla(5, 100%, 50%, 1) 0px, transparent 50%) padding-box,
        radial-gradient(at 41% 38%, hsla(5, 100%, 58%, 1) 0px, transparent 50%) padding-box,
        radial-gradient(at 86% 85%, hsla(5, 100%, 62%, 1) 0px, transparent 50%) padding-box,
        radial-gradient(at 82% 18%, hsla(5, 100%, 53%, 1) 0px, transparent 50%) padding-box,
        radial-gradient(at 51% 4%, hsla(5, 100%, 60%, 1) 0px, transparent 50%) padding-box,
        linear-gradient(#d64238 0 100%) padding-box;
    mask-image:
        linear-gradient( to bottom, black, black ),
        radial-gradient( ellipse at 50% 50%, black 40%, transparent 65% ),
        radial-gradient( ellipse at 66% 66%, black 5%, transparent 40% ),
        radial-gradient( ellipse at 33% 33%, black 5%, transparent 40% ),
        radial-gradient( ellipse at 66% 33%, black 5%, transparent 40% ),
        radial-gradient( ellipse at 33% 66%, black 5%, transparent 40% ),
        conic-gradient( from var(--pointer-°) at center, transparent 5%, black 15%, black 85%, transparent 95% );
    mask-composite: subtract, add, add, add, add, add;
    -webkit-mask-composite: source-out, source-over, source-over, source-over, source-over, source-over;
    opacity: 0.8;
    mix-blend-mode: var(--blend);
    will-change: mask-image;
    animation: inherit;
}

.feature-card-cold > .glow {
    --outset: 20px;
    inset: calc(var(--outset) * -1);
    z-index: 1;
    mask-image: 
        conic-gradient( 
            from var(--pointer-°) at center, black 8%, transparent 15%, transparent 85%, black 92%
        );
    opacity: 1;
    mix-blend-mode: var(--glow-blend);
    will-change: mask-image;
    animation: inherit;
}

.feature-card-cold > .glow::before {
    content: "";
    position: absolute;
    inset: var(--outset);
    border-radius: inherit;
    box-shadow: 
        inset 0 0 0 1px hsl( var(--glow-color) / 100%), 
        inset 0 0 1px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 60%)), 
        inset 0 0 3px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 50%)), 
        inset 0 0 6px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 40%)), 
        inset 0 0 15px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 30%)), 
        inset 0 0 25px 2px hsl( var(--glow-color) / calc(var(--glow-boost) + 20%)), 
        inset 0 0 50px 2px hsl( var(--glow-color) / calc(var(--glow-boost) + 10%)), 
        0 0 1px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 60%)), 
        0 0 3px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 50%)), 
        0 0 6px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 40%)), 
        0 0 15px 0 hsl( var(--glow-color) / calc(var(--glow-boost) + 30%)), 
        0 0 25px 2px hsl( var(--glow-color) / calc(var(--glow-boost) + 20%)), 
        0 0 50px 2px hsl( var(--glow-color) / calc(var(--glow-boost) + 10%));
}

.feature-card-cold:hover {
    transform: translateY(-8px);
}

@keyframes glowRotate {
    0% {
        --pointer-°: 0deg;
    }
    100% {
        --pointer-°: 360deg;
    }
}

.feature-card-cold > *:not(.glow) {
    position: relative;
    z-index: 2;
}

.feature-icon-cold {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-service));
    border-radius: 50%;
    opacity: 0.1;
    animation: iconPulse 3s ease-in-out infinite;
}

.feature-icon-cold i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: #fb8900;
    animation: iconFloat 4s ease-in-out infinite;
    display: inline-block;
}

.feature-card-cold:nth-child(1) .feature-icon-cold i {
    animation-delay: 0s;
}

.feature-card-cold:nth-child(2) .feature-icon-cold i {
    animation-delay: 0.5s;
}

.feature-card-cold:nth-child(3) .feature-icon-cold i {
    animation-delay: 1s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Services Section - Platform Cards Style */
.services-section {
    background: #0d0c12;
    position: relative;
    padding: 1.5rem 0rem 3rem 0rem;
    margin-bottom: 30px;
}

.services-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ff8c00;
    margin: 0 0 1rem 0;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0;
    padding-top: 0;
}

.service-platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: cardFloat 6s ease-in-out infinite;
    
}

.service-platform-card:nth-child(1) {
    animation-delay: 0s;
}

.service-platform-card:nth-child(2) {
    animation-delay: 1.5s;
}

.service-platform-card:nth-child(3) {
    animation-delay: 3s;
}

.service-platform-card:nth-child(4) {
    animation-delay: 4.5s;
}

.service-platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    
}

.service-platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.service-platform-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-platform-logo svg {
    width: 100%;
    height: 100%;
}

.service-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-logo-icon {
    font-size: 2rem;
    color: #1877F2;
}

.service-platform-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-platform-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-platform-features li i {
    color: #fb8900;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.service-platform-features li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-platform-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #fb8900;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.service-platform-btn:hover {
    background: #fb8900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

/* Animated Hover Line */
.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb8900, #fb8900);
    transition: width 0.6s ease;
    opacity: 0;
}

.service-platform-card:hover .service-hover-line {
    width: 100%;
    opacity: 1;
    animation: lineDraw 0.6s ease forwards;
}

@keyframes lineDraw {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-platform-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-platform-title {
        font-size: 1.25rem;
    }
    
    .service-platform-description {
        font-size: 0.9rem;
    }
    
    .service-platform-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    html, body {
        overflow-x: hidden;
    }
    .services-section-title {
        font-size: 2rem;
    }
}



/* Clients Issues Section */
.clients-issues-section {
    background: var(--bg-white);
}

.clients-issues-image-cold {
    position: relative;
    padding: 2rem;
}

.clients-issues-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-blue);
    border-radius: var(--border-radius);
    opacity: 0.3;
    pointer-events: none;
}

.clients-issues-content-cold {
    padding: 2rem 0;
}

.clients-issues-content-cold p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Testimonials Section */
/* Custom Property for Rotation */
@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}

/* Testimonials Section */
.testimonials-section {
    background: #0d0c12;
    padding-top: 4rem;
    padding-bottom: 3rem;
    
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 0;
    padding-top: 2rem;
}

.testimonials-label-pill {
    display: inline-block;
    background: #ff8c00;
    color: #1a1a1a;
    padding: 0.5rem 3rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.testimonials-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 0rem;
}

.testimonials-wreath {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wreath-image {
    max-width: 100px;
    height: auto;
    opacity: 0.4;
}

.testimonials-main-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

@media (max-width: 991px) {
    .testimonials-main-title {
        font-size: 2.5rem;
    }
    
    .wreath-image {
        max-width: 150px;
    }
    
    .testimonials-title-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .testimonials-main-title {
        font-size: 2rem;
    }
    
    .wreath-image {
        max-width: 100px;
    }
    
    .testimonials-title-wrapper {
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-main-title {
        font-size: 1.75rem;
    }
    
    .testimonials-wreath {
        display: none;
    }
}

/* Testimonial Card with Animated Gradient Border */
.testimonial-card {
    background: #191c29;
    width: 100%;
    min-height: 380px;
    padding: 3px;
    position: relative;
    border-radius: 12px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.testimonial-card::before {
    content: "";
    width: 104%;
    height: 102%;
    border-radius: 12px;
    background-image: linear-gradient(
        132deg,
        #5ddcff,
        #3c67e3 43%,
        #4e00c2
    );
    position: absolute;
    z-index: 0;
    top: -1%;
    left: -2%;
}

.testimonial-card::after {
    position: absolute;
    content: "";
    top: 15%;
    left: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.8);
    filter: blur(60px);
    background-image: linear-gradient(
        132deg,
        #5ddcff,
        #3c67e3 43%,
        #4e00c2
    );
    opacity: 1;
    transition: opacity 0.5s;
}

/* Card Inner Content */
.testimonial-card-inner {
    background: #191c29;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.rating-number {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #4CAF50;
    font-size: 0.875rem;
}

.testimonial-headline {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.testimonial-text .fw-bold {
    color: #5ddcff;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-author-info strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .testimonial-card {
        min-height: 350px;
    }
    
    .testimonial-card-inner {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        min-height: auto;
    }
    
    .testimonial-card-inner {
        padding: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .testimonial-card::after {
        filter: blur(40px);
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
        margin-top: -80px;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }
    
    .testimonial-card-inner {
        padding: 1.5rem;
    }
}


/* Partners Section (Trust By) */
/* Partners Section (Trust By) */
.partners-section-cold {
    background: #ff8c00;
    padding: 0rem 0rem 0rem 0rem;
   
    border: none !important;
    outline: none !important;
    overflow: hidden;
    margin-top: -15px;
    margin-bottom: -15px;
    --partners-scroll-speed: 20s;
}

.partners-section-cold .container {
    overflow: hidden !important;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    border: none !important;
    outline: none !important;
}

/* Uproas logo loop */
.logo1-loop {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

.logo1-loop_overlay {
    display: none;
}

.logo1-loop-animated {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: logo1-loop-scroll 30s linear infinite;
}

.logo1-loop-wrapper {
    display: flex;
}

.logo1-loop-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.logo1-loop-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
}

.logo1-loop_image {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@keyframes logo1-loop-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo1-loop_image {
        height: 28px;
    }
    .logo1-loop_overlay {
        width: 60px;
    }
}

.partners-content-cold {
    text-align: center;
    border: none !important;
    outline: none !important;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.partners-title-cold {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.partners-logos-cold {
    overflow: hidden !important;
    margin: 2rem 0;
    position: relative;
    width: 100%;
    white-space: nowrap;
    padding: 0;
    border: none !important;
    outline: none !important;
}

.partners-logos-row-1-cold {
    margin-bottom: 1.5rem;
}

.partners-logos-row-2-cold {
    margin-top: 1.5rem;
}

.partners-logos-track-cold {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-left-cold var(--partners-scroll-speed) linear infinite;
    padding: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.partners-logos-row-2-cold .partners-logos-track-cold {
    animation: scroll-right-cold var(--partners-scroll-speed) linear infinite;
}

@keyframes scroll-left-cold {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right-cold {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.partner-logo-item-cold {
    flex: 0 0 auto;
    transition: var(--transition);
}

.partner-logo-item-cold:hover {
    transform: translateY(-10px) scale(1.05);
}

.partner-logo-box-cold {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    transition: var(--transition);
}

.partner-logo-box-cold:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.partner-logo-img-cold {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo-item-cold:hover .partner-logo-img-cold {
    opacity: 1;
}

/* Mobile optimization for seamless scrolling */
@media (max-width: 768px) {
    .partners-logos-track-cold {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    .partners-logos-row-1-cold .partners-logos-track-cold {
        animation: scroll-left-cold var(--partners-scroll-speed) linear infinite;
    }
    
    .partners-logos-row-2-cold .partners-logos-track-cold {
        animation: scroll-right-cold var(--partners-scroll-speed) linear infinite;
    }
    
    .partner-logo-box-cold {
        padding: 2rem 2.5rem;
        min-width: 180px;
        min-height: 80px;
    }
    
    .partner-logo-img-cold {
        max-width: 140px;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .partners-title-cold {
        font-size: 2rem;
    }
    
    .partner-logo-box-cold {
        padding: 1.5rem 2rem;
        min-width: 160px;
    }
    
    .partners-logos-track-cold {
        gap: 2rem;
    }
}


/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 1rem 0rem;
}

.faq-chat-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    cursor: pointer;
    transition: var(--transition);
}

.faq-chat-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

/* Question Bubble - Left Side (Dark Gray) */
.faq-question-bubble {
    background: #2a2a2a;
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    max-width: 60%;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.faq-question-bubble h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

/* Question Bubble Small - For "Also Asked" */
.faq-question-bubble-small {
    background: #2a2a2a;
    color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    max-width: 60%;
    align-self: flex-start;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-bubble-small:hover {
    background: #333333;
}

.faq-question-bubble-small h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Answer Bubble - Right Side (White) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    align-self: flex-end;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.faq-answer-bubble {
    background: #000000;
    color: #1a1a1a;
    padding: 1.5rem 2rem;
    border-radius: 18px;
    max-width: 70%;
    position: relative;
    align-self: flex-end;
}

.faq-answer-bubble p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #ffffff;
}

.faq-asterisk {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #8b5cf6;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Also Asked Section */
.faq-also-asked {
    margin-top: 0rem;
}

.also-asked-label {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    
}

.faq-container-cold {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-container-cold .faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-container-cold .faq-answer {
    align-self: flex-end;
    width: auto;
    max-width: 70%;
}

.faq-container-cold .faq-answer-bubble {
    max-width: 100%;
}

/* Responsive Styles for FAQ Chat */
@media (max-width: 768px) {
    .faq-question-bubble,
    .faq-question-bubble-small {
        max-width: 75%;
    }
    
    .faq-answer-bubble {
        max-width: 85%;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer-bubble p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .faq-question-bubble,
    .faq-question-bubble-small {
        max-width: 85%;
        padding: 1rem 1.25rem;
    }
    
    .faq-question-bubble h4,
    .faq-question-bubble-small h4 {
        font-size: 0.9rem;
    }
    
    .faq-answer-bubble {
        max-width: 90%;
        padding: 1rem 1.25rem;
    }
    
    .faq-answer-bubble p {
        font-size: 0.85rem;
    }
}

/* Icons Slider Section */
.icons-slider-section {
    padding: 0;
    background: transparent;
    overflow: hidden;
    border: none !important;
    outline: none !important;
    --slider-speed: 20s; /* Control speed here - lower value = faster */
    --icons-slider-height: 400px;
}

.icons-slider-container {
    width: 100%;
    height: var(--icons-slider-height);
    overflow: hidden !important;
    position: relative;
    border: none !important;
    outline: none !important;
    margin: 0;
    padding: 0;
}

.icons-swiper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
    overflow: visible !important; /* Allow icons to exit the page */
}

.swiper-wrapper {
    display: flex;
    flex-direction: column;
    animation: scroll-icons-vertical var(--slider-speed) linear infinite;
    will-change: transform;
    border: none !important;
    outline: none !important;
}

.icons-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: none !important;
    outline: none !important;
}

/* Infinite Vertical Scroll Animation */
@keyframes scroll-icons-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-33.333%); /* Move by 1/3 since we have 3 images */
    }
}

/* Infinite Horizontal Scroll Animation for Mobile */
@keyframes scroll-icons-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%); /* Move by 1/3 since we have 3 images */
    }
}

/* Pause on hover */
.swiper-wrapper:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 991px) {
    .icons-slider-section {
        padding: 2rem 0;
        margin-top: 2rem;
        --slider-speed: 18s; /* Slightly faster on tablet */
    }
    
    .icons-slider-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .icons-slider-section {
        padding: 0 !important;
        margin-top: 0;
        margin-bottom: 0;
        --slider-speed: 15s; /* Faster on mobile */
        border: none !important;
        outline: none !important;
    }
    
    .icons-slider-container {
        height: 300px;
        border: none !important;
        outline: none !important;
        overflow: hidden !important;
        padding: 0;
        margin: 0;
    }
    
    .icons-swiper {
        overflow: visible !important; /* Allow icons to exit the page on mobile */
    }
    
    .swiper-wrapper {
        flex-direction: row !important; /* Horizontal layout on mobile */
        animation: scroll-icons-horizontal var(--slider-speed) linear infinite !important;
        border: none !important;
        outline: none !important;
    }
    
    .icons-slide {
        width: auto;
        height: 100%;
        min-width: 100%;
        border: none !important;
        outline: none !important;
    }
}

/* Contact Form Main Section */
.contact-form-main-section {
    background: var(--bg-light);
    padding: 2rem 0;
}

.contact-form-section-title {
    font-family: 'Creative Teacher', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.contact-form-wrapper-main {
    background: #f8f9fa;
    padding: 1.7rem;
    border-radius: 60px 0 0 60px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 600px;
   
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fb8900;
    margin-bottom: 2rem;
}

.contact-form-main .row {
    margin: 0;
}

.form-control-main {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #ffffff;
    transition: var(--transition);
    font-family: inherit;
}

.form-control-main:focus {
    outline: none;
    border-color: #fb8900;
    box-shadow: 0 0 0 3px rgba(251, 137, 0, 0.1);
}

.form-control-main::placeholder {
    color: #999;
}

textarea.form-control-main {
    resize: vertical;
    min-height: 120px;
}

.form-check-main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-check-input-main {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #fb8900;
}

.form-check-label-main {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.terms-link {
    color: #fb8900;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-send-message {
    background: #0d0c12;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    margin-top: 60px;
}

.btn-send-message:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-send-message i {
    font-size: 1rem;
}

/* Right Side - Contact Info */
.contact-info-wrapper-main {
    background: #ff8c00;
    padding: 0;
    border-radius: 0 60px 60px 0;
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-details-main {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail-icon {
    color: #ffffff;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.contact-detail-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
}

.connect-with-us-section {
    padding: 0 3rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.connect-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-icons-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon-form {
    display: inline-block;
    transition: var(--transition);
}

.social-icon-form:hover {
    transform: scale(1.1);
}

.social-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-decorative-element {
    position: absolute;
    bottom: 20px;
    right: 30px;
    opacity: 0.3;
}

.decorative-asterisk {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper-main {
        border-radius: 12px 12px 0 0;
        padding: 2.5rem;
    }
    
    .contact-info-wrapper-main {
        border-radius: 0 0 12px 12px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-main-section {
        padding: 2rem 0;
    }
    
    .contact-form-wrapper-main {
        padding: 2rem;
    }
    
    .contact-details-main {
        padding: 1.5rem 2rem;
    }
    
    .connect-with-us-section {
        padding: 0 2rem 1.5rem 2rem;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
}

/* Contact Buttons Section */
.contact-buttons-section {
    background: var(--bg-light);
    padding: 1rem 0rem 4rem 0rem !important;
    margin-bottom: 0;
    padding-bottom: 0rem !important;
   
}

.contact-buttons-section .row.g-4 {
    margin-bottom: 0rem;
    padding-bottom: 0;
    align-items: stretch;
}

.contact-buttons-section .container {
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    min-height: var(--icons-slider-height);
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-buttons-vertical .contact-button-cold {
    width: 70%;
    max-width: 70%;
    margin: 0 auto;
    padding: 1rem 0rem 1rem 0rem;
}

.contact-button-cold {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
    border: none;
    margin-top: -30px;
}

.contact-button-cold:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.whatsapp-button-cold:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.telegram-button-cold:hover {
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.email-button-cold:hover {
    box-shadow: 0 6px 20px rgba(214, 66, 56, 0.4);
}

.contact-button-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    background: var(--primary-blue);
}

.whatsapp-button-cold .contact-button-icon {
    background: var(--green-whatsapp);
}

.telegram-button-cold .contact-button-icon {
    background: var(--blue-telegram);
}

.email-button-cold .contact-button-icon {
    background: var(--primary-blue);
}

.contact-button-cold h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-white);
}

.contact-form-wrapper-cold {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.form-control-cold {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-control-cold:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(214, 66, 56, 0.1);
}

.form-control-cold::placeholder {
    color: #999;
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer-cold {
    background: #000000;
    color: #ffffff;
    
    text-align: center;
    padding: 0.3rem 0rem 0rem 0rem;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact {
    font-size: 0.875rem;
    color: #999;
}

.footer-contact span {
    margin: 0 0.5rem;
}

/* Floating Buttons */
.floating-buttons-cold {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button-cold {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    position: relative;
    border: none;
}

.floating-button-cold:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-whatsapp-cold {
    background: var(--green-whatsapp);
}

.floating-whatsapp-cold:hover {
    background: var(--green-whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--text-light);
    animation: float 1s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.floating-telegram-cold {
    background: var(--blue-telegram);
}

.floating-telegram-cold:hover {
    background: var(--blue-telegram-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
    color: var(--text-light);
    animation: float 1s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation on Hover */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .navbar-wrapper {
        padding: 15px 15px 0;
    }
    
    .navbar {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    
    /* Mobile: Move toggle to top right and make it bolder */
    .navbar-toggler {
        position: absolute;
        right: 1.5rem;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        padding: 0.3rem 0.5rem;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 28px;
        height: 28px;
    }
    
    /* Mobile: Position logo on the left */
    .navbar-brand {
        position: relative;
        left: 0;
        margin-left: 0;
    }
    
    /* Mobile: Center nav items when toggle opens */
    .navbar .container {
        padding: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0;
        background: #1a1a1a;
        border-radius: 0 0 12px 12px;
        padding: 0.5rem 1.5rem 1rem 1.5rem;
    }
    
    .navbar-nav {
        margin-top: 0;
        padding-top: 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        text-align: center;
        padding-left: 0 !important;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        color: #ffffff;
        line-height: 1.0;
        
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-main-title,
    .section-title-large,
    .services-section-title,
    .contact-form-section-title,
    .how-it-works-section-title,
    .why-choose-us-section-title,
    .testimonials-section-title,
    .faq-section-title {
        font-size: 2.5rem;
    }

   
    /* Mobile-specific size for the long How It Works main title */
   
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* Mobile Hero Section - Complete Mobile-Specific Styling */
    .hero-section {
        min-height: 60vh;
        padding: 2rem 2rem 4rem 0rem;
        background-image: url('images/background.png');
        background-size: cover;
        background-position: 70% top;
        background-repeat: no-repeat;
        background-attachment: scroll;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        
    }
    
    .hero-section .container {
        width: 100%;
        padding: 0 1rem;
        display: flex;
        justify-content: flex-start;
    }
    
    .hero-section .row {
        width: 100%;
        margin: 0;
    }
    
    /* Mobile: Position text and button on the left side */
    .hero-content-left {
        text-align: left;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
        margin-left: 0;
        padding-left: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        
        font-weight: 800;
        text-transform: uppercase;
        text-align: left;
        width: 100%;
        
        white-space: normal !important;
        color: #ffffff;
        margin-left: -200px;
        
    }
    
    .hero-title-desktop {
        display: none;
        
    }
    
    .hero-title-mobile {
        display: block;
    }
    
    .hero-title-white {
        color: #FFFFFF;
        display: block;
        
    }
    
    .hero-title-orange {
        color: #fb8900;
        display: block;
    }
    
    /* Show line breaks on mobile */
    .mobile-break {
        display: block !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
        text-align: left;
    }
    
    /* Mobile: Control hero button - positioned on the left */
    .hero-cta-btn {
        width: auto;
        max-width: 280px;
        margin: 0;
        margin-left: -200px;
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: left;
        gap: 10px;
        background-color: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: left;
    }
    
    .hero-cta-btn .arrow-icon {
        width: 36px;
        height: 36px;
        background-color: #ff8c00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-cta-btn .arrow-icon svg {
        width: 18px;
        height: 18px;
        fill: #ffffff;
    }
    
    .hero-cta-btn:hover {
        background-color: transparent;
        color: #ffffff;
        border-color: #ffffff;
    }
    
    .hero-cta-btn:hover .arrow-icon {
        background-color: #ff8c00;
    }
    
    /* Mobile: Control partners section padding and remove borders */
    .partners-section-cold {
        padding: 0rem 0 0rem 0 !important;
        border: none !important;
        outline: none !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .partners-section-cold .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        border: none !important;
        outline: none !important;
    }
    
    .partners-content-cold {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        outline: none !important;
        overflow: visible !important;
    }
    
    .partners-title-cold {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .partners-logos-cold {
        margin: 1.5rem 0;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
        overflow: visible !important;
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
    
    .partners-logos-row-1-cold,
    .partners-logos-row-2-cold {
        border: none !important;
        outline: none !important;
        padding: 0 !important;
    }
    
    .partner-logo-box-cold {
        border: none !important;
        outline: none !important;
    }
    
    /* Mobile: Ensure all text is visible in How it Works section */
    .how-it-works-section {
        overflow: visible !important;
        padding-bottom: 3rem !important;
        padding-top: 2rem !important;
    }
    
    .how-it-works-section .container {
        overflow: visible !important;
    }
    
    .how-it-works-section .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .how-it-works-section  .section-main-title {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        margin-bottom: 1rem !important;
    }

    /* Mobile control for Why Choose Us main title */
    #why-choose-main-title {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    .section-main-title {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    .section-subtitle-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        padding: 0 1rem;
        margin: 0 auto 0rem auto;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        display: block !important;
    }
    
    /* Mobile: Separate control for Why Choose Us section */
    
    .why-choose-us-section {
        overflow: visible !important;
        padding: 2rem 0 3rem 0 !important;
    }
    
    .why-choose-us-section .container {
        overflow: visible !important;
        padding: 0 1rem;
    }
    
    .why-choose-us-section .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .why-choose-us-section .section-main-title {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        margin-bottom: 1rem !important;
    }
    
    .why-choose-us-section .section-subtitle-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        padding: 0  !important;
        margin: 0 auto 0rem auto !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        display: block !important;
        color: #666 !important;
        
    }
    
    .why-choose-us-section .feature-card-cold {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile: Fix testimonials section */
    .testimonials-section {
        overflow: visible !important;
        padding: 4rem 0 3rem 0 !important;
    }
    
    .testimonials-section .container {
        overflow: visible !important;
        padding: 0 1rem;
    }
    
    .testimonials-header {
        padding: 0;
        margin-bottom: 2rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .testimonials-section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
    }
    
    .divider-testimonials {
        width: 180px !important;
        height: 2px !important;
        margin: 0 auto 1.5rem auto !important;
    }
    
    .testimonials-main-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        letter-spacing: -0.3px !important;
        margin: 0 !important;
        text-align: center !important;
    }
    
    .testimonials-title-wrapper {
        flex-wrap: nowrap;
        gap: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        width: 100%;
    }
    
    .testimonials-wreath {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        flex: 0 0 auto;
    }
    
    .wreath-image {
        max-width: 60px !important;
        height: auto;
        opacity: 0.5;
        display: block !important;
    }
    
    .testimonial-card {
        width: 100% !important;
        min-height: auto !important;
        margin-bottom: 1.5rem;
        padding: 2px !important;
    }
    
    .testimonial-card-inner {
        padding: 1.25rem !important;
    }
    
    .testimonial-rating {
        margin-bottom: 0.75rem !important;
    }
    
    .testimonial-headline {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .testimonial-text {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        margin-bottom: 1rem !important;
    }
    
    .testimonial-author {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .testimonial-avatar {
        width: 35px !important;
        height: 35px !important;
    }
    
    .testimonial-author-info strong {
        font-size: 0.85rem !important;
    }
    
    .testimonial-author-info span {
        font-size: 0.75rem !important;
    }
    
    .rating-number {
        font-size: 1rem !important;
    }
    
    .rating-stars i {
        font-size: 0.8rem !important;
    }
    
    /* Mobile: Switch WhatsApp/Telegram buttons with icons slider positions */
    .contact-buttons-section .row.g-4 > .col-lg-6:first-child {
        order: 2;
    }
    
    .contact-buttons-section .row.g-4 > .col-lg-6:last-child {
        order: 1;
    }
    
    .solar-light {
        width: 600px;
        height: 600px;
        top: -400px;
        filter: blur(60px);
        opacity: 0.25;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-cold,
    .btn-outline-cold {
        width: 100%;
        text-align: center;
    }
    
    .feature-card-cold,
    .service-package-card-cold,
    .testimonial-card-cold {
        --card-width: 350px;
        --card-height: 350px;
    }
    
    .testimonial-card-inner {
        padding: 2rem;
    }
    
    .contact-form-wrapper-cold {
        padding: 2rem;
    }
    
    .floating-buttons-cold {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button-cold {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .geometric-shape {
        display: none;
    }
    
    .partners-logos-cold {
        margin: 1.5rem 0;
    }
    
    .partner-logo-box-cold {
        min-width: 150px;
        min-height: 70px;
        padding: 1rem 1.5rem;
    }
    
    .partner-logo-img-cold {
        max-width: 100px;
        max-height: 50px;
    }
    
    .partners-title-cold {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-wrapper {
        padding: 10px 10px 0;
    }
    
    .navbar {
        width: 100%;
        padding: 0.5rem 0.75rem;
        border-radius: 10px;
    }
    
    .navbar .container {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .solar-light {
        width: 400px;
        height: 400px;
        top: -250px;
        filter: blur(50px);
        opacity: 0.2;
    }
    
    .section-main-title,
    .section-title-large,
    .services-section-title,
    .contact-form-section-title,
    .how-it-works-section-title,
    .why-choose-us-section-title,
    .testimonials-section-title,
    .faq-section-title {
        font-size: 2.5rem !important; /* Same size as desktop */
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .how-it-works-section .row {
        flex-direction: column;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-item:hover {
        transform: translateX(0);
    }
    
    .step-image-container {
        height: 400px;
        margin-top: 2rem;
    }
    
    .feature-card-cold,
    .service-package-card-cold,
    .testimonial-card-cold {
        --card-width: 100%;
        --card-height: auto;
        min-height: 350px;
    }
    
    .testimonial-card-inner {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper-cold {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-link {
        margin: 0 0.25rem;
        font-size: 0.875rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-main-title,
    .section-title-large,
    .services-section-title,
    .contact-form-section-title,
    .how-it-works-section-title,
    .why-choose-us-section-title,
    .testimonials-section-title,
    .faq-section-title {
        font-size: 2.5rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-main-title,
    .section-title-large,
    .services-section-title,
    .contact-form-section-title,
    .how-it-works-section-title,
    .why-choose-us-section-title,
    .testimonials-section-title,
    .faq-section-title {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-buttons-cold {
        display: none;
    }
}
