/* ==========================================
   ENHANCED ANIMATIONS & HIGH-LEVEL CSS
========================================== */
/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
/* Hero Slider Enhanced Animations */
.hero-slide {
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slideScale 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide:not(.active) {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
}
@keyframes slideScale {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
/* Enhanced Hero Content Animation */
.hero-content {
    animation: heroContentReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Enhanced Product Card Hover */
.product-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
/* Enhanced Gallery Item Animation */
.gallery-item {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* LEFT BOTTOM TWO IMAGES */
.gallery-left-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:16px;
}
/* Keep height balanced */
.gallery-left-bottom .gallery-item img{
  height:180px;
  object-fit:cover;
}
/* Mobile for gallery-left-bottom - FIXED: Keep two per row */
@media(max-width:768px){
  .gallery-left-bottom{
    grid-template-columns:1fr 1fr;
    gap: 10px;
  }
  .gallery-left-bottom .gallery-item.small {
    height: 150px;
  }
  .gallery-left-bottom .gallery-item img {
    height: 150px;
  }
}
/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}
.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}
@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}
/* Enhanced Floating Animation for Stats */
.stat-item {
    animation: float 3s ease-in-out infinite;
}
.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}
.stat-item:nth-child(3) {
    animation-delay: 1s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* Enhanced Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    }
}
.pulse {
    animation: pulse 2s infinite;
}
/* Enhanced Gradient Text Animation */
.highlight {
    background: #FFB347;
    color:#FFB347;
    background-size: 200% auto;

    background-clip: text;
    animation: gradientText 3s linear infinite;
}
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Enhanced Parallax Effect */
.gallery {
    position: relative;
    overflow: hidden;
}
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9), rgba(52, 143, 179, 0.9));
    z-index: 1;
}
.gallery  .container {
    position: relative;
    z-index: 2;
}
/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF8C00, #FFB347);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #FF7B00, #FFA726);
}
/* Enhanced Focus States */
*:focus {
    outline: 2px solid #FF8C00;
    outline-offset: 4px;
}
/* Enhanced Image Loading */
img {
    transition: opacity 0.5s ease;
}
img[data-src] {
    opacity: 0;
}
img.loaded {
    opacity: 1;
}
/* ==========================================
   ORIGINAL STYLES WITH ENHANCEMENTS
========================================== */
/* Smooth scrolling for the whole page */
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
/* Header effects */
#header.scrolled {
    background: rgba(15, 32, 39, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Logo text styling */
.logo-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-left: 10px;
    letter-spacing: 0.5px;
}
/* Hero Slider Styles */
.hero {
    position: relative;
    height: 85vh;
    max-height: 800px;
    overflow: hidden;
    color: white;
}
.hero-slider {
    height: 100%;
    position: relative;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(198, 44%, 11%, 0.333) 0%, hsla(195, 35%, 19%, 0.267) 100%);
    z-index: 1;
}
.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.2);
    color: #FFB347;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
}
.btn-primary {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: white;
}
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFB347;
    margin-bottom: 5px;
    line-height: 1;
}
.stat-label {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 3;
}
.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.slider-dots {
    display: flex;
    gap: 12px;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.dot.active {
    background: #FF8C00;
    transform: scale(1.2);
}
.dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: dotProgress 4s linear infinite;
}
@keyframes dotProgress {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
/* Critical styles for content visibility */
main {
    padding-top: 90px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-subtitle {
    display: inline-block;
    color: #FF8C00;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}
.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #FF8C00;
}
.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a365d;
    line-height: 1.3;
}
.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-image:hover img {
    transform: scale(1.05);
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
    min-width: 120px;
    animation: pulse 2s infinite;
}
.badge-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.badge-text {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 1px;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}
.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}
.feature-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a365d;
}
.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}
/* Products Slider - FIXED RESPONSIVENESS */
.products-slider-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #348FB3 100%);
}
.pro-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}
.pro-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 20px 0 40px;
}

.pro-slider-container {
    overflow: hidden;
    position: relative;
}

.pro-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.pro-slide {
    min-width: 400px;;
    box-sizing: border-box;
}

/* FIXED: Mobile responsive - show only 1 card on mobile */
@media (max-width: 768px) {
    .pro-slider-container {
        padding: 0 20px;
    }
   .hero-stats {
    display:block;
   }
    .pro-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
   
    .pro-slider-track {
        gap: 5px;
    }
}
/* Tablet responsive */
@media (max-width: 1200px) and (min-width: 769px) {
    .pro-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}
.product-content {
    padding: 30px;
}
.product-content h3 {
    margin-bottom: 15px;
    color: #1a365d;
    font-size: 22px;
    font-weight: 600;
}
.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}
.product-features i {
    color: #FF8C00;
    font-size: 14px;
}
.pro-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.pro-slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid #FF8C00;
    color: #FF8C00;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}
.pro-slider-dots {
    display: flex;
    gap: 12px;
}
.pro-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Process Section */
.process-horizontal {
    padding: 100px 0;
    background: white;
}
.process-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    position: relative;
}
.process-item {
    text-align: center;
    position: relative;
}
.process-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    position: relative;
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hide prev/next buttons and dots on mobile only */
@media (max-width: 768px) {
    .pro-slider-nav {
        display: none !important;
    }
}
.circle-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    color: #FF8C00;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}
.process-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a365d;
}
.process-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}
/* Gallery Section - FIXED MOBILE RESPONSIVENESS */
.gallery {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.gallery-left {
    display: flex;
    flex-direction: column;
}
.gallery-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item.big {
    height: 550px;
}
.gallery-item.small {
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FIXED: Mobile responsive for gallery - Two images per row */
@media (max-width: 768px) {
    .process-horizontal {
        padding:30px;
    }
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
   
    .gallery-left-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
   
    .gallery-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
   
    .gallery-item.big {
        height: 250px;
    }
   
    .gallery-item.small {
        height: 150px;
    }
   
    .gallery-left-bottom .gallery-item.small {
        height: 150px;
    }
   
    .gallery-right {
        gap: 20px;
    }
}
.know-more-card {
    background: linear-gradient(135deg, #0F2027 0%, #203A43 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.quote-icon {
    font-size: 40px;
    color: #FF8C00;
    opacity: 0.2;
    margin-bottom: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}
.rating {
    color: #FFB347;
    margin-top: 8px;
    font-size: 16px;
}
/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}
.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Footer */

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
   
    .process-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}
@media (max-width: 992px) {
    .about{
        padding:30px;
    }
    .about-content,
    .testimonials-grid
   {
        grid-template-columns: 1fr;
        gap: 50px;
    }
   
    .features-grid {
        grid-template-columns: 1fr;
    }
   
    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }
   
    .hero h1 {
        font-size: 38px;
    }
   
    .section-title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
   
    .hero h1 {
        font-size: 32px;
    }
   
    .hero p {
        font-size: 16px;
    }
   
    .section-title {
        font-size: 30px;
    }
   
    .process-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
   
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
   
    .btn {
        width: 100%;
        max-width: 220px;
    }
   
    .slider-controls {
        gap: 20px;
    }
   
    .slider-btn {
        width: 50px;
        height: 50px;
    }
   
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 38px;
    }
   
    .section-title {
        font-size: 26px;
    }
   
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
   
    .stat-number {
        font-size: 28px;
    }
   
    .container {
        padding: 0 15px;
    }
}