/* ============================================
   CUSTOM PROPERTIES & GLOBAL STYLES - MODERN
   ============================================ */

:root {
    /* Modern Gradient Colors */
    --primary-color: #FF6B6B;
    --secondary-color: #FFE53B;
    --accent-color: #FF8E53;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --gray-color: #718096;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #FFE53B 0%, #FF6B6B 74%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #434343 0%, #000000 100%);
    --gradient-light: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-purple: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 20px;
    --shadow-colored: 0 10px 40px rgba(102, 126, 234, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.5);
}
/* Global Fixes */
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }
section { padding: 80px 0; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-family: NType82-Regular, sans-serif !important;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
    scroll-margin-top: 120px;
    position: relative;
}

/* ============================================
   MODERN SECTION TITLES WITH GRADIENT BOX
   ============================================ */

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border-radius: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-colored);
    border: 2px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    margin-top: 0;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title p.lead {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SMOOTH SCROLLING SETUP
   ============================================ */

#smooth-wrapper {
    overflow: hidden;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}


/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot,
.cursor-outline {
    z-index: 9999;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

/* ============================================
   MODERN HEADER WITH GRADIENT
   ============================================ */

.sub-header {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    display: flex;
    align-items: center;
    will-change: transform;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.contact-info-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.contact-item a {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-item a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1020;
    will-change: transform;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(102, 126, 234, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   MODERN GRADIENT BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   MODERN WELCOME SECTION WITH GLASS EFFECT
   ============================================ */

.welcome-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-text {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--glass-border);
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.welcome-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-colored);
    border: 3px solid white;
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.welcome-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

/* ============================================
   WHY CHOOSE US - MODERN GRADIENT CARDS
   ============================================ */

.why-choose-us {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    position: relative;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* ============================================
   SERVICES - MODERN FLIP CARDS WITH GRADIENT
   ============================================ */

.section-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.service-card {
    height: 320px;
    perspective: 1000px;
    margin-bottom: 1.5rem;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, 
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.service-card-front {
    background: white;
    color: var(--dark-color);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.service-card-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-back .service-icon {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-back p {
    margin-bottom: 1.5rem;
}

/* ============================================
   PRODUCTS - MODERN GRADIENT CARDS
   ============================================ */

.products-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    position: relative;
}

.products-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.products-content .container {
    position: relative;
    z-index: 2;
}

.product-card {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem !important;
    font-weight: 600;
    margin-bottom: 0 !important;
    color: var(--dark-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* ============================================
   ABOUT SECTION - MODERN GLASS DESIGN
   ============================================ */

.about-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
}

.about-text {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--glass-border);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    flex: 1;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-colored);
    border: 3px solid white;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

/* ============================================
   MISSION & VISION - GRADIENT CARDS
   ============================================ */

.mission-vision {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
}

.mission-card, 
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-card:hover, 
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.3);
}



h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
    scroll-margin-top: 120px;
}

/* ============================================
   MODERN SECTION TITLES
   ============================================ */

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    margin-top: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title .lead {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   SMOOTH SCROLLING SETUP
   ============================================ */

#smooth-wrapper {
    overflow: hidden;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot,
.cursor-outline {
    z-index: 9999;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
}

/* ============================================
   MODERN HEADER - SUB-HEADER & NAVIGATION
   ============================================ */

.sub-header {
    background: var(--gradient-dark);
    color: white;
    padding: 0.8rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    display: flex;
    align-items: center;
    will-change: transform;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.contact-item a {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
    position: fixed;
    top: 48px;
    width: 100%;
    z-index: 1020;
    will-change: transform;
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-primary) 1;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 0.5rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 10px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(255, 229, 59, 0.1), rgba(255, 107, 107, 0.1));
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   MODERN BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   MODERN WELCOME SECTION
   ============================================ */

.welcome-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 30%, #ff9a9e 60%, #fad0c4 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

.welcome-section .container {
    position: relative;
    z-index: 2;
}

.welcome-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.welcome-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid white;
}

.welcome-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.15;
}

/* ============================================
   MODERN WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    position: relative;
}

.feature-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.feature-box h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   MODERN SERVICES SECTION
   ============================================ */

.section-services {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.section-services .section-title {
    background: rgba(255, 255, 255, 0.98);
}

.service-card {
    height: 320px;
    perspective: 1000px;
    margin-bottom: 1.5rem;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, 
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card-front {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.service-card-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-back .service-icon {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-back p {
    margin-bottom: 1.5rem;
}

/* Keep your existing Products, About, Contact sections CSS... */
/* I'll continue with the remaining sections in the next part */

/* ============================================
   MODERN PRODUCTS SECTION
   ============================================ */

.products-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.products-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.products-content .container {
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 3px solid rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-card:hover::after {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.5);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-bottom: 0 !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }


/* ============================================
   MODERN ABOUT SECTION
   ============================================ */

.about-content {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.about-content .container {
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex: 1;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    background: none;
    padding: 0;
    color: var(--gray-color);
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 5px solid white;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
}

/* ============================================
   MODERN MISSION & VISION SECTION
   ============================================ */

.mission-vision {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    padding: 6rem 0;
}

.mission-card, 
.vision-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.mission-card:hover, 
.vision-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.4);
}

.mission-icon, 
.vision-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.mission-card h3, 
.vision-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p,
.vision-card p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* ============================================
   MODERN VALUES SECTION
   ============================================ */

.values-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    position: relative;
}

.values-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.value-item h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item p {
    color: var(--gray-color);
    font-size: 1.05rem;
}

/* ============================================
   MODERN CONTACT SECTION
   ============================================ */

.contact-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
    position: relative;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-item-detail:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text p,
.contact-text a {
    color: var(--gray-color);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    outline: none;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    background: white;
    padding: 0 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 1rem;
    color: var(--gray-color);
    transition: var(--transition);
    pointer-events: none;
}

.btn-animate {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

/* ============================================
   MODERN FOOTER
   ============================================ */

.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.footer .contact-info {
    margin-top: 1rem;
    list-style: none;
    background: none;
    padding: 0;
    border: none;
}

.footer .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.footer .contact-info li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer .contact-info li i {
    margin-right: 1rem;
    color: var(--secondary-color);
    width: 25px;
    text-align: center;
    font-size: 1.2rem;
}

.footer .contact-info li a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer .contact-info li a:hover {
    color: var(--secondary-color);
}

/* Footer Link Styles */
.footer-links li { margin-bottom: 12px; }
.footer-links a { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    transition: 0.3s;
    font-size: 0.9rem;
}
.footer-links a:hover { 
    color: var(--secondary-color); 
    padding-left: 8px; 
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 229, 59, 0.2);
    text-align: center;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   MODERN WHATSAPP WIDGET
   ============================================ */

.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    will-change: transform;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    color: white;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   SLIDER SECTION - MODERN GRADIENT
   ============================================ */

.slider-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.slider-section .container {
    position: relative;
    z-index: 2;
}

.slider-section .section-title {
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.slider-section .section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #2d3748;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-section .section-title h2::after {
    background: var(--gradient-primary);
    height: 4px;
    width: clamp(80px, 15vw, 120px);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.slider-section .section-title .lead {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.95;
    padding: 0;
}

.blog-slider {
    width: 95%;
    position: relative;
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    padding: 25px;
    border-radius: 25px;
    height: 450px;
    transition: all 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.blog-slider:hover {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.blog-slider__item {
    display: flex;
    align-items: center;
}

.blog-slider__img {
    width: 350px;
    flex-shrink: 0;
    height: 350px;
    background: var(--gradient-primary);
    box-shadow: 4px 13px 30px 1px rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
    position: relative;
}

.blog-slider__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.15;
    z-index: 1;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.blog-slider__content {
    padding-right: 25px;
}

.blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
}

.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
}

.blog-slider__button {
    display: inline-flex;
    background: var(--gradient-primary);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-slider__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 40px rgba(255, 107, 107, 0.5);
    color: #fff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1199px) {
    .slider-section .section-title {
        max-width: 850px;
        padding: 2.5rem 1.5rem;
        margin-bottom: 3.5rem;
    }
    
    .slider-section .section-title h2 {
        font-size: 3rem;
    }
    
    .slider-section .section-title .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .slider-section {
        padding: 5rem 0;
    }
    
    .slider-section .section-title {
        max-width: 700px;
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        border-radius: 20px;
    }
    
    .slider-section .section-title h2 {
        font-size: 2.5rem;
    }
    
    .slider-section .section-title .lead {
        font-size: 1.15rem;
    }
    
    .blog-slider {
        max-width: 750px;
        height: 450px;
    }
    
    .blog-slider__img {
        width: 320px;
        height: 320px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .slider-section {
        padding: 4rem 0;
    }
    
    .slider-section .section-title {
        max-width: 90%;
        padding: 1.8rem 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .slider-section .section-title h2 {
        font-size: 2rem;
    }
    
    .slider-section .section-title .lead {
        font-size: 1.05rem;
    }
    
  .blog-slider {
        width: 90%;
        height: auto;
        min-height: 550px; /* Prevents shrinking */
    }
    
    .blog-slider__item {
        flex-direction: column; /* Stack vertically */
    }
    
    .blog-slider__img {
        transform: translateY(-50%); /* Overlap effect */
        width: 90%;
        height: 280px; /* Fixed height for mobile */
    }
    
    .blog-slider__content {
        margin-top: -80px; /* Pull content up */
        text-align: center;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 90px;
    }
    
    .slider-section {
        padding: 3rem 0;
    }
    
    .slider-section .section-title {
        max-width: 95%;
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .slider-section .section-title h2 {
        font-size: 1.6rem;
    }
    
    .slider-section .section-title .lead {
        font-size: 0.95rem;
    }
    
    .blog-slider__img {
        width: 95%;
        height: 250px;
    }
    
    .blog-slider__content {
        padding: 0;
    }
    
    .blog-slider__button {
        width: 100%;
    }
}

@media (max-width: 399px) {
    .slider-section .section-title {
        padding: 1.2rem 0.8rem;
    }
    
    .slider-section .section-title h2 {
        font-size: 1.4rem;
    }
    
    .slider-section .section-title .lead {
        font-size: 0.9rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .slider-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .slider-section .section-title {
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-slider {
        height: 380px;
    }
    
    .blog-slider__img {
        height: 300px;
        width: 300px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Tablet and smaller devices */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
        padding: 20px 10px;
    }
    
    .slider-content h2 {
        font-size: 28px;
    }
    
    .slider-content p {
        font-size: 14px;
        max-width: 90%;
    }
    
    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .slider-container {
        height: 300px;
        padding: 15px 5px;
    }
    
    .slider-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .slider-content p {
        font-size: 12px;
        max-width: 95%;
        line-height: 1.4;
    }
    
    .slider-nav button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slider-nav button.prev {
        left: 5px;
    }
    
    .slider-nav button.next {
        right: 5px;
    }
}


@media (max-width: 768px) {
    .text-below-slider {
        padding: 30px 20px;
        font-size: 14px;
    }
    
    .text-below-slider h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .text-below-slider {
        padding: 20px 15px;
        font-size: 13px;
    }
    
    .text-below-slider h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}


.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Adjust based on your image ratio */
    overflow: hidden;
}

/* Remove fixed height and use aspect-ratio instead */
.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio, crops if needed */
    object-position: center;
}


/* Tablet */
@media (max-width: 768px) {
    .slider-container {
        aspect-ratio: 16/10; /* Slightly taller for tablets */
    }
    
    .slider-content h2 {
        font-size: clamp(24px, 4vw, 32px);
        padding: 0 20px;
    }
    
    .slider-content p {
        font-size: clamp(14px, 2.5vw, 16px);
        padding: 0 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .slider-container {
        aspect-ratio: 4/3; /* More square for mobile */
        min-height: 250px; /* Prevent it from getting too small */
    }
    
    .slider-content h2 {
        font-size: clamp(18px, 5vw, 24px);
        padding: 0 15px;
        text-align: center;
    }
    
    .slider-content p {
        font-size: clamp(12px, 3vw, 14px);
        padding: 0 15px;
        text-align: center;
        line-height: 1.5;
    }
    
    .slider-nav button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}



/* ============================================
   SLIDER SECTION - FULLY RESPONSIVE (FIXED)
   ============================================ */

.slider-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.slider-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Slider container - main wrapper */
.blog-slider {
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    padding: 25px;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    overflow: visible; /* IMPORTANT: Allow content to overflow for transform effects */
    position: relative;
}

/* Each slider item */
.blog-slider__item {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 400px;
}

/* Image container - THIS IS KEY TO FIX CUTTING */
.blog-slider__img {
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    box-shadow: 4px 13px 30px 1px rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    overflow: hidden; /* Keep overflow hidden on the image container */
    position: relative;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers container without distortion */
    object-position: center; /* Centers the image */
    display: block;
}

/* Content area */
.blog-slider__content {
    flex: 1;
    padding: 0 25px;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
    font-size: 16px;
}

.blog-slider__button {
    display: inline-flex;
    background: var(--gradient-primary);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-slider__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 40px rgba(255, 107, 107, 0.5);
    color: #fff;
}

/* ============================================
   RESPONSIVE BREAKPOINTS - PROPERLY FIXED
   ============================================ */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .blog-slider {
        max-width: 850px;
    }

    .blog-slider__img {
        width: 320px;
        height: 320px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .slider-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .blog-slider {
        width: 90%;
        max-width: 650px;
        padding: 30px 20px;
    }

    .blog-slider__item {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    /* CRITICAL FIX: Remove transform that causes cutting */
    .blog-slider__img {
        width: 100%;
        max-width: 350px;
        height: 280px;
        margin: 0 auto 20px;
        transform: none; /* Remove any transform */
    }

    .blog-slider__content {
        padding: 0 20px;
        text-align: center;
        margin-top: 0; /* Remove negative margin */
    }

    .blog-slider__title {
        font-size: 22px;
    }

    .blog-slider__text {
        font-size: 15px;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    body {
        padding-top: 90px;
    }

    .slider-section {
        padding: 3rem 0;
    }

    .blog-slider {
        width: 95%;
        padding: 20px 15px;
    }

    .blog-slider__item {
        min-height: auto;
    }

    /* Mobile image - no transform, no cutting */
    .blog-slider__img {
        width: 100%;
        max-width: 300px;
        height: 250px;
        margin: 0 auto 20px;
    }

    .blog-slider__content {
        padding: 0 15px;
    }

    .blog-slider__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .blog-slider__text {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .blog-slider__button {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Extra small mobile */
@media (max-width: 400px) {
    .blog-slider {
        width: 98%;
        padding: 15px 10px;
    }

    .blog-slider__img {
        max-width: 280px;
        height: 230px;
    }

    .blog-slider__title {
        font-size: 18px;
    }

    .blog-slider__text {
        font-size: 13px;
    }
}

/* Landscape mode fix for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .slider-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .blog-slider {
        padding: 15px;
    }

    .blog-slider__item {
        flex-direction: row;
        gap: 15px;
    }

    .blog-slider__img {
        width: 250px;
        height: 250px;
        margin: 0;
    }

    .blog-slider__content {
        text-align: left;
        padding: 0 15px;
    }
}

/* Text below slider - responsive */
.text-below-slider,
.blog-slider__content > * {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper specific fixes if using Swiper.js */
.swiper-slide {
    height: auto !important;
}

.blog-slider .swiper-container {
    overflow: visible;
}

.blog-slider .swiper-wrapper {
    align-items: center;
}

.map-title{
font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.map-section {
  padding: 60px 0;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  color: #555;
  font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
}




responsive-complete.css
/* ============================================
   COMPREHENSIVE RESPONSIVE STYLESHEET
   Shankar Label Agency - All Devices Support
============================================ */

/* ============================================
   CUSTOM PROPERTIES & GLOBAL STYLES
============================================ */

:root {
    /* Modern Gradient Colors */
    --primary-color: #FF6B6B;
    --secondary-color: #FFE53B;
    --accent-color: #FF8E53;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --gray-color: #718096;

    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #FFE53B 0%, #FF6B6B 74%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #434343 0%, #000000 100%);
    --gradient-light: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-purple: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 20px;
    --shadow-colored: 0 10px 40px rgba(102, 126, 234, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BASE RESET & GLOBAL STYLES
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', NType82-Regular, sans-serif !important;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 0;
    scroll-margin-top: 120px;
    position: relative;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ============================================
   SECTION TITLES - RESPONSIVE
============================================ */

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border-radius: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-colored);
    border: 2px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.section-title h2 {
    font-size: clamp(1.75rem, 5vw, 2.8rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    margin-top: 0;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title p.lead {
    color: var(--gray-color);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CUSTOM CURSOR (Desktop Only)
============================================ */

.cursor-dot,
.cursor-outline {
    z-index: 9999;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

/* ============================================
   HEADER - SUB HEADER & NAVIGATION
============================================ */

.sub-header {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    display: flex;
    align-items: center;
    will-change: transform;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.contact-info-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item a {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-item a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1020;
    will-change: transform;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(102, 126, 234, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-collapse {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   BUTTONS - RESPONSIVE
============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   WELCOME SECTION - RESPONSIVE
============================================ */

.welcome-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-text {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--glass-border);
}

.welcome-text h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray-color);
}

.welcome-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-colored);
    border: 3px solid white;
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.welcome-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

/* ============================================
   WHY CHOOSE US - RESPONSIVE CARDS
============================================ */

.why-choose-us {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    position: relative;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-box h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--dark-color);
}

.feature-box p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--gray-color);
}

/* ============================================
   SERVICES - FLIP CARDS RESPONSIVE
============================================ */

.section-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.service-card {
    height: 320px;
    perspective: 1000px;
    margin-bottom: 2rem;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.service-card-front {
    background: white;
    color: var(--dark-color);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.service-card-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-back .service-icon {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.service-card-back p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ============================================
   PRODUCTS - RESPONSIVE CARDS
============================================ */

.products-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    position: relative;
}

.products-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-card {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
    font-weight: 600;
    margin-bottom: 0 !important;
    color: var(--dark-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* ============================================
   ABOUT SECTION - RESPONSIVE
============================================ */

.about-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
}

.about-text {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--glass-border);
}

.about-text h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray-color);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    flex: 1;
    min-width: 150px;
}

.stat-item h3 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--gray-color);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-colored);
    border: 3px solid white;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

/* ============================================
   MISSION & VISION - RESPONSIVE
============================================ */

.mission-vision {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: rgba(102, 126, 234, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p,
.vision-card p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray-color);
}

/* ============================================
   CONTACT SECTION - RESPONSIVE
============================================ */

.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    padding: 5rem 0;
}

.contact-info {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--glass-border);
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray-color);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-item-detail:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text p,
.contact-text a {
    color: var(--gray-color);
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.contact-form h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    outline: none;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    background: white;
    padding: 0 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 1rem;
    color: var(--gray-color);
    transition: var(--transition);
    pointer-events: none;
}

.btn-animate {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

/* ============================================
   FOOTER - RESPONSIVE
============================================ */

.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    color: white;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer .contact-info {
    margin-top: 1rem;
    list-style: none;
    background: none;
    padding: 0;
    border: none;
}

.footer .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.footer .contact-info li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer .contact-info li i {
    margin-right: 1rem;
    color: var(--secondary-color);
    width: 25px;
    text-align: center;
    font-size: 1.2rem;
}

.footer .contact-info li a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer .contact-info li a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 229, 59, 0.2);
    text-align: center;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* ============================================
   WHATSAPP WIDGET - RESPONSIVE
============================================ */

.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    will-change: transform;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    color: white;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   SLIDER SECTION - RESPONSIVE
============================================ */

.slider-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.slider-section .container {
    position: relative;
    z-index: 2;
}

.blog-slider {
    width: 100%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: white;
    box-shadow: var(--shadow-hover);
    border-radius: 25px;
    height: 400px;
    transition: var(--transition);
}

.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
}

.blog-slider__content {
    padding: 2rem;
}

.blog-slider__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 1.5rem;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 2rem;
    line-height: 1.5em;
}

.blog-slider__button {
    display: inline-flex;
    background: var(--gradient-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    box-shadow: var(--shadow);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.blog-slider__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-primary);
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

/* ============================================
   RESPONSIVE BREAKPOINTS - COMPREHENSIVE
============================================ */

/* Extra Large Desktops (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .navbar-nav .nav-link {
        margin: 0 0.3rem;
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    body {
        padding-top: 140px;
    }

    .sub-header {
        height: 60px;
        padding: 0.5rem 0;
    }

    .navbar {
        top: 60px;
    }

    .blog-slider__img {
        width: 300px !important;
        height: 300px !important;
    }

    .service-card {
        height: 350px;
    }

    .stats-container {
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .footer .col-md-6 {
        margin-bottom: 30px;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    body {
        padding-top: 140px !important;
    }

    .sub-header {
        height: 60px;
        padding: 0.5rem 0;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 0.4rem;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }

    .contact-item {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }

    .contact-item a {
        font-size: 0.75rem;
        justify-content: center;
    }

    .contact-item a span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .navbar {
        top: 60px;
        padding: 0.5rem 0;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }

    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .welcome-text,
    .about-text,
    .contact-info {
        padding: 2rem;
    }

    .feature-box,
    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .service-card {
        height: 300px;
    }

    .contact-form {
        padding: 2rem;
    }

    .blog-slider {
        height: auto;
        padding: 20px;
    }

    .blog-slider__img {
        transform: none !important;
        width: 100% !important;
        height: 250px !important;
        margin-bottom: 20px;
    }

    .blog-slider__content {
        padding: 1.5rem;
    }

    .blog-slider__pagination {
        display: none;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }

    .footer {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    body {
        padding-top: 145px !important;
    }

    .sub-header {
        height: 55px;
        padding: 0.4rem 0;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 0.1rem;
        padding: 0 0.5rem;
        text-align: center;
    }

    .contact-item {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }

    .contact-item a {
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
    }

    .contact-item a span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
        display: inline-block;
    }

    .navbar {
        top: 55px;
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 35px;
    }

    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        padding: 1.5rem 1rem;
        margin-bottom: 2.5rem;
        border-radius: 20px;
    }

    .welcome-text,
    .about-text,
    .contact-info {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .feature-box,
    .mission-card,
    .vision-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .service-card {
        height: 280px;
    }

    .service-card-front,
    .service-card-back {
        padding: 1.5rem;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
    }

    .contact-item-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-control {
        padding: 1rem;
    }

    .blog-slider {
        height: auto;
        padding: 15px;
        border-radius: 20px;
    }

    .blog-slider__img {
        transform: none !important;
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 15px;
    }

    .blog-slider__content {
        padding: 1rem;
    }

    .blog-slider__pagination {
        display: none;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }

    .footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }

    .footer .contact-info li {
        justify-content: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .contact-item a {
        font-size: 0.65rem;
    }

    .contact-item a span {
        max-width: 150px;
    }

    .section-title {
        padding: 1rem 0.75rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card {
        height: 260px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIX
============================================ */

@media (max-height: 500px) and (orientation: landscape) {
    body {
        padding-top: 100px !important;
    }

    .sub-header {
        height: 45px;
        padding: 0.3rem 0;
    }

    .contact-info-top {
        gap: 0.2rem;
    }

    .navbar {
        top: 45px;
        padding: 0.3rem 0;
    }

    section {
        padding: 2rem 0;
    }

    .slider-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .service-card {
        height: 250px;
    }
}

/* ============================================
   PRINT STYLES
============================================ */

@media print {
    .sub-header,
    .navbar,
    .whatsapp-chat,
    .contact-form,
    .btn,
    .footer {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        --shadow-colored: 0 10px 30px rgba(102, 126, 234, 0.5);
    }

    .btn,
    .card,
    .feature-box {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if required */
}

/* ============================================
   END OF RESPONSIVE STYLESHEET
============================================ */


/* Section Title Fix - prevent cutting */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  overflow: visible; /* Allow the title to show fully */
  padding: 0 15px; /* Add horizontal padding */
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 20px; /* Add space for the underline */
  word-wrap: break-word; /* Prevent text overflow */
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
}

/* Ensure parent sections don't clip the title */
section {
  padding: 5rem 0;
  overflow: visible; /* Changed from hidden if present */
}

/* If the section is inside products-content */
.products-content {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  z-index: 1;
  overflow-x: hidden; /* Only hide horizontal overflow, not vertical */
  overflow-y: visible;
}

/* Mobile responsive fix for section title */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
}



