* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



:root {

    --primary-color: #7b9fec;

    --secondary-color: #1e40af;

    --accent-color: #ec4899;

    --dark-color: #1e293b;

    --light-color: #f8fafc;

    --text-color: #334155;

    --border-color: #e2e8f0;

    --shadow: 0 10px 40px rgba(0,0,0,0.1);

    --transition: all 0.3s ease;

}



body {

    font-family: 'Poppins', sans-serif;

    line-height: 1.6;

    color: var(--text-color);

    overflow-x: hidden;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

}



ul {

    list-style: none;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



/* Buttons */

.btn {

    display: inline-block;

    padding: 14px 32px;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);

    cursor: pointer;

    border: none;

    font-size: 15px;

}



.btn-primary {

    background: #2563eb;

    color: white;

    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);

}



.btn-primary:hover {

    background: #1e40af;

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);

}



.btn-secondary {

    background: white;

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

}



.btn-secondary:hover {

    background: var(--primary-color);

    color: white;

}



/* Navigation */

.navbar {

    background: white;

    box-shadow: 0 2px 15px rgba(0,0,0,0.08);

    position: sticky;

    top: 0;

    z-index: 1000;

    transition: var(--transition);

}



.nav-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

}



.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 26px;

    font-weight: 700;

    color: var(--dark-color);

}



.logo i {

    color: var(--primary-color);

    font-size: 30px;

}



.highlight {

    color: var(--primary-color);

}



.nav-menu {

    display: flex;

    align-items: center;

    gap: 35px;

}



.nav-menu a {

    font-weight: 500;

    transition: var(--transition);

    position: relative;

}



.nav-menu a:not(.btn-nav):hover,

.nav-menu a.active {

    color: var(--primary-color);

}



.nav-menu a:not(.btn-nav)::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary-color);

    transition: var(--transition);

}



.nav-menu a:not(.btn-nav):hover::after,

.nav-menu a.active::after {

    width: 100%;

}



.btn-nav {

    background: #ec4899;

    color: white;

    padding: 10px 24px;

    border-radius: 25px;

}



.btn-nav:hover {

    background: #db2777;

    transform: translateY(-2px);

    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);

}



.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}



.hamburger span {

    width: 28px;

    height: 3px;

    background: var(--dark-color);

    margin: 4px 0;

    transition: var(--transition);

    border-radius: 3px;

}



/* =============================================

   HERO SLIDER WITH PICTURE TAG - RESPONSIVE

============================================= */



.hero-slider {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 600px;

    max-height: 900px;

    overflow: hidden;

}



.slider-container {

    position: relative;

    width: 100%;

    height: 100%;

}



.slide {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    transition: opacity 1s ease-in-out;

    z-index: 1;

}



.slide.active {

    opacity: 1;

    z-index: 2;

}



/* Picture and Image Styling */

.slide picture {

    width: 100%;

    height: 100%;

    display: block;

}



.slide picture img,

.slide img {

    width: 100%;

    /* height: 100%; */

    object-fit: cover;

    object-position: center;

    display: block;

    position: absolute;

    top: 0;

    left: 0;

}



/* Dark Overlay for Better Text Readability */

.slide::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(

        to bottom,

        rgba(0, 0, 0, 0.3) 0%,

        rgba(0, 0, 0, 0.5) 100%

    );

    z-index: 2;

}



/* Slide Content */

.slide-content {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 3;

    text-align: center;

    padding: 20px;

}



.slide-content .container {

    max-width: 1000px;

    width: 100%;

}



.slide-content h1 {

    font-size: 3.5rem;

    font-weight: 700;

    color: white;

    margin-bottom: 20px;

    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);

    line-height: 1.2;

}



.slide-content p {

    font-size: 1.3rem;

    color: white;

    margin-bottom: 30px;

    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

    line-height: 1.6;

}



.hero-buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

}



/* Slider Navigation Buttons */

.slider-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(37, 99, 235, 0.9);

    color: white;

    border: none;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s ease;

    z-index: 10;

    font-size: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.slider-btn:hover {

    background: #2563eb;

    transform: translateY(-50%) scale(1.1);

    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.5);

}



.slider-btn:active {

    transform: translateY(-50%) scale(0.95);

}



.slider-btn.prev {

    left: 30px;

}



.slider-btn.next {

    right: 30px;

}



/* Slider Dots */

.slider-dots {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 10;

}



.dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: rgba(255,255,255,0.5);

    cursor: pointer;

    transition: all 0.3s ease;

    border: 2px solid transparent;

}



.dot.active {

    background: white;

    transform: scale(1.3);

    border-color: rgba(37, 99, 235, 0.8);

}



.dot:hover {

    background: rgba(255,255,255,0.8);

    transform: scale(1.2);

}



/* Animation Classes */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.animate-fade-in {

    animation: fadeInUp 0.8s ease-out;

}



.animate-fade-in-delay {

    animation: fadeInUp 0.8s ease-out 0.3s both;

}



.animate-fade-in-delay-2 {

    animation: fadeInUp 0.8s ease-out 0.6s both;

}



/* =============================================

   RESPONSIVE BREAKPOINTS

============================================= */



/* Large Tablets & Small Desktops (1024px) */

@media (max-width: 1024px) {

    .hero-slider {

        height: 80vh;

        min-height: 500px;

        max-height: 700px;

    }

    

    .slide-content h1 {

        font-size: 2.8rem;

    }

    

    .slide-content p {

        font-size: 1.1rem;

    }

    

    .slider-btn {

        width: 45px;

        height: 45px;

        font-size: 18px;

    }

    

    .slider-btn.prev {

        left: 20px;

    }

    

    .slider-btn.next {

        right: 20px;

    }

}



/* Tablets (768px - 1024px) */

@media (max-width: 768px) {

    .hero-slider {

        height: 100vh;

        min-height: 100vh;

        max-height: none;

    }

    

    /* Ensure full coverage on mobile */

    .slide picture img,

    .slide img {

        width: 100vw;

        /* height: 100vh; */

        min-width: 100%;

        min-height: 100%;

        object-fit: cover;

        object-position: center;

    }

    

    .slide-content {

        padding: 15px;

    }

    

    .slide-content .container {

        max-width: 95%;

        padding: 0 15px;

    }

    

    .slide-content h1 {

        font-size: 2rem;

        margin-bottom: 15px;

        line-height: 1.3;

    }

    

    .slide-content p {

        font-size: 1rem;

        margin-bottom: 20px;

        line-height: 1.5;

    }

    

    .hero-buttons {

        flex-direction: column;

        gap: 12px;

        width: 100%;

        max-width: 300px;

        margin: 0 auto;

    }

    

    .hero-buttons .btn {

        width: 100%;

        padding: 12px 20px;

        font-size: 14px;

        justify-content: center;

    }

    

    /* Smaller controls for mobile */

    .slider-btn {

        width: 40px;

        height: 40px;

        font-size: 16px;

    }

    

    .slider-btn.prev {

        left: 15px;

    }

    

    .slider-btn.next {

        right: 15px;

    }

    

    /* Dots positioning */

    .slider-dots {

        bottom: 30px;

        gap: 10px;

    }

    

    .dot {

        width: 10px;

        height: 10px;

    }

}



/* Small Mobile (576px) */

@media (max-width: 576px) {

    .slide-content h1 {

        font-size: 1.6rem;

    }

    

    .slide-content p {

        font-size: 0.9rem;

        margin-bottom: 18px;

    }

    

    .hero-buttons {

        max-width: 280px;

        gap: 10px;

    }

    

    .hero-buttons .btn {

        padding: 11px 18px;

        font-size: 13px;

    }

    

    .slider-btn {

        width: 36px;

        height: 36px;

        font-size: 14px;

    }

    

    .slider-btn.prev {

        left: 12px;

    }

    

    .slider-btn.next {

        right: 12px;

    }

    

    .slider-dots {

        bottom: 25px;

        gap: 8px;

    }

    

    .dot {

        width: 8px;

        height: 8px;

    }

}



/* Extra Small Mobile (400px) */

@media (max-width: 400px) {

    .hero-slider {

        min-height: 100vh;

    }

    

    .slide-content h1 {

        font-size: 1.4rem;

    }

    

    .slide-content p {

        font-size: 0.85rem;

    }

    

    .hero-buttons {

        max-width: 260px;

    }

    

    .hero-buttons .btn {

        padding: 10px 16px;

        font-size: 12px;

    }

    

    .slider-btn {

        width: 32px;

        height: 32px;

        font-size: 12px;

    }

    

    .slider-btn.prev {

        left: 10px;

    }

    

    .slider-btn.next {

        right: 10px;

    }

    

    .slider-dots {

        bottom: 20px;

        gap: 6px;

    }

    

    .dot {

        width: 7px;

        height: 7px;

    }

}



/* Landscape Mode (Mobile Horizontal) */

@media (max-height: 500px) and (orientation: landscape) {

    .hero-slider {

        height: 100vh;

        min-height: 100vh;

    }

    

    .slide-content h1 {

        font-size: 1.8rem;

        margin-bottom: 10px;

    }

    

    .slide-content p {

        font-size: 0.9rem;

        margin-bottom: 15px;

    }

    

    .hero-buttons {

        flex-direction: row;

        gap: 10px;

        max-width: 100%;

    }

    

    .hero-buttons .btn {

        width: auto;

        padding: 8px 16px;

        font-size: 13px;

    }

    

    .slider-dots {

        bottom: 15px;

    }

}



/* High Resolution Displays */

@media (min-width: 1920px) {

    .hero-slider {

        max-height: 1000px;

    }

    

    .slide-content h1 {

        font-size: 4rem;

    }

    

    .slide-content p {

        font-size: 1.5rem;

    }

}



/* Touch Device Optimizations */

@media (hover: none) and (pointer: coarse) {

    .slider-btn {

        opacity: 0.9;

    }

    

    .slider-btn:active {

        opacity: 1;

    }

    

    .dot {

        width: 12px;

        height: 12px;

    }

}



/* Prevent Image Flickering on Load */

.slide picture,

.slide img {

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-transform: translateZ(0);

    transform: translateZ(0);

}



/* Loading State */

.slide picture img[loading="lazy"] {

    opacity: 0;

    transition: opacity 0.3s;

}



.slide picture img[loading="lazy"].loaded {

    opacity: 1;

}





/* Features */

.features {

    padding: 80px 0;

    background: white;

    margin-top: -80px;

    position: relative;

    z-index: 10;

}



.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

}



.feature-card {

    background: white;

    padding: 35px;

    border-radius: 15px;

    box-shadow: var(--shadow);

    text-align: center;

    transition: var(--transition);

}



.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 50px rgba(0,0,0,0.15);

}



.feature-icon {

    width: 70px;

    height: 70px;

    background: #2563eb;

    color: white;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    margin: 0 auto 20px;

}



.feature-card h3 {

    font-size: 1.3rem;

    margin-bottom: 10px;

    color: var(--dark-color);

}



.feature-card p {

    color: var(--text-color);

}



/* Sections */

.section-header {

    text-align: center;

    margin-bottom: 50px;

}



.section-tag {

    display: inline-block;

    color: var(--primary-color);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 14px;

    margin-bottom: 10px;

}



.section-header h2 {

    font-size: 2.8rem;

    color: var(--dark-color);

    margin-bottom: 15px;

    font-weight: 700;

}



.section-header p {

    color: var(--text-color);

    font-size: 1.1rem;

    max-width: 600px;

    margin: 0 auto;

}



/* Products */

.products-section {

    padding: 100px 0;

    background: #f8f9fa;

}



.products-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 50px;

}



.product-card {

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 5px 25px rgba(0,0,0,0.08);

    transition: all 0.4s ease;

    position: relative;

}



.product-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);

}



.product-badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: #2563eb;

    color: white;

    padding: 8px 16px;

    border-radius: 25px;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    z-index: 2;

}



.product-badge.sale {

    background: #dc2626;

}



.product-badge.hot {

    background: #f59e0b;

}



.product-image {

    height: 280px;

    overflow: hidden;

    position: relative;

}



.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.product-card:hover .product-image img {

    transform: scale(1.12);

}



.product-info {

    padding: 28px;

}



.product-category {

    display: inline-block;

    color: #2563eb;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;

}



.product-info h3 {

    font-size: 1.4rem;

    color: #1e293b;

    margin-bottom: 15px;

    font-weight: 600;

}



.product-features {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 20px;

}



.product-features span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-size: 13px;

    color: #64748b;

    background: #f1f5f9;

    padding: 6px 12px;

    border-radius: 20px;

}



.product-features i {

    color: #fbbf24;

}



.btn-shop {

    width: 100%;

    padding: 14px;

    background: #2563eb;

    color: white;

    border: none;

    border-radius: 12px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

}



.btn-shop:hover {

    background: #1e40af;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);

}



/* Services */

.services-overview {

    padding: 100px 0;

    background: var(--light-color);

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 30px;

    margin-top: 50px;

}



.service-item {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

}



.service-item:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 50px rgba(0,0,0,0.15);

}



.service-img {

    height: 250px;

    overflow: hidden;

}



.service-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);

}



.service-item:hover .service-img img {

    transform: scale(1.1);

}



.service-content {

    padding: 30px;

}



.service-content i {

    font-size: 40px;

    color: var(--primary-color);

    margin-bottom: 15px;

}



.service-content h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

    color: var(--dark-color);

}



.service-content p {

    margin-bottom: 20px;

    color: var(--text-color);

}



/* Stats */

.stats-section {

    padding: 100px 0;

    background: #2563eb;

    color: white;

}



.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 50px;

}



.stat-box {

    text-align: center;

}



.stat-box i {

    font-size: 50px;

    margin-bottom: 20px;

}



.stat-box h3 {

    font-size: 3.5rem;

    font-weight: 700;

    margin-bottom: 10px;

}



.stat-box h3::after {

    content: '+';

    margin-left: 5px;

}



.stat-box p {

    font-size: 1.1rem;

}



/* Testimonials */

.testimonials {

    padding: 100px 0;

    background: var(--light-color);

}



.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 50px;

}



.testimonial-card {

    background: white;

    padding: 35px;

    border-radius: 15px;

    box-shadow: var(--shadow);

    transition: var(--transition);

}



.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 50px rgba(0,0,0,0.15);

}



.stars {

    color: #fbbf24;

    font-size: 18px;

    margin-bottom: 20px;

}



.testimonial-card p {

    font-style: italic;

    color: var(--text-color);

    margin-bottom: 25px;

    line-height: 1.7;

}



.client-info {

    display: flex;

    align-items: center;

    gap: 15px;

}



.client-info img {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    object-fit: cover;

}



.client-info h4 {

    font-size: 1.1rem;

    color: var(--dark-color);

    margin-bottom: 3px;

}



.client-info span {

    color: var(--text-color);

    font-size: 0.9rem;

}



/* CTA */

.cta-section {

    padding: 80px 0;

    background: #ec4899;

    text-align: center;

    color: white;

}



.cta-content h2 {

    font-size: 2.8rem;

    margin-bottom: 20px;

    font-weight: 700;

}



.cta-content p {

    font-size: 1.2rem;

    margin-bottom: 30px;

}



/* Footer */

.footer {

    background: var(--dark-color);

    color: white;

    padding: 80px 0 30px;

}



.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 40px;

    margin-bottom: 40px;

}



.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;

}



.footer-logo i {

    color: var(--primary-color);

    font-size: 28px;

}



.footer-col p {

    line-height: 1.8;

    opacity: 0.85;

    margin-bottom: 25px;

}



.social-links {

    display: flex;

    gap: 12px;

}



.social-links a {

    width: 40px;

    height: 40px;

    background: rgba(255,255,255,0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    transition: var(--transition);

}



.social-links a:hover {

    background: var(--primary-color);

    transform: translateY(-3px);

}



.footer-col h3 {

    font-size: 1.3rem;

    margin-bottom: 20px;

}



.footer-col ul li {

    margin-bottom: 12px;

}



.footer-col ul li a {

    opacity: 0.85;

    transition: var(--transition);

}



.footer-col ul li a:hover {

    opacity: 1;

    color: var(--primary-color);

    padding-left: 5px;

}



.contact-info li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

    opacity: 0.85;

}



.contact-info i {

    color: var(--primary-color);

    margin-top: 3px;

}



.footer-bottom {

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    opacity: 0.8;

}



/* Responsive */

@media (max-width: 1024px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    .hamburger {

        display: flex;

    }

    

    .nav-menu {

        position: fixed;

        left: -100%;

        top: 75px;

        flex-direction: column;

        background: white;

        width: 100%;

        text-align: center;

        transition: 0.3s;

        box-shadow: 0 10px 27px rgba(0,0,0,0.05);

        padding: 20px 0;

    }

    

    .nav-menu.active {

        left: 0;

    }

    

    .slide-content h1 {

        font-size: 2.5rem;

    }

    

    .slide-content p {

        font-size: 1.1rem;

    }

    

    .products-grid,

    .services-grid {

        grid-template-columns: 1fr;

    }

    

    .footer-grid {

        grid-template-columns: 1fr;

    }

}





/* Add this at the very beginning after body styles */



/* Top Bar */

.top-bar {

    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

    color: white;

    padding: 10px 0;

    font-size: 14px;

}



.top-bar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.top-bar-left {

    display: flex;

    gap: 25px;

    align-items: center;

}



.top-bar-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color: white;

    text-decoration: none;

    transition: opacity 0.3s ease;

}



.top-bar-item:hover {

    opacity: 0.85;

}



.top-bar-item i {

    font-size: 14px;

}



.top-bar-right {

    display: flex;

    gap: 15px;

    align-items: center;

}



.top-bar-social {

    display: flex;

    gap: 10px;

}



.top-bar-social a {

    width: 32px;

    height: 32px;

    background: rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    transition: all 0.3s ease;

    font-size: 14px;

}



.top-bar-social a:hover {

    background: rgba(255, 255, 255, 0.3);

    transform: translateY(-2px);

}



/* Update Navbar to have less top padding */

.navbar {

    background: white;

    box-shadow: 0 2px 15px rgba(0,0,0,0.08);

    position: sticky;

    top: 0;

    z-index: 1000;

    transition: var(--transition);

}



.nav-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 0;

}



/* Responsive Top Bar */

@media (max-width: 768px) {

    .top-bar {

        padding: 8px 0;

        font-size: 12px;

    }

    

    .top-bar-content {

        flex-direction: column;

        gap: 10px;

        text-align: center;

    }

    

    .top-bar-left {

        flex-direction: column;

        gap: 8px;

    }

    

    .top-bar-item {

        font-size: 12px;

    }

    

    .top-bar-social a {

        width: 28px;

        height: 28px;

        font-size: 12px;

    }

}





/* About Section Grid */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}



.about-image {

    position: relative;

}



.about-image img {

    width: 100%;

    border-radius: 15px;

    box-shadow: var(--shadow);

}



.experience-badge {

    position: absolute;

    bottom: 30px;

    right: 30px;

    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);

    color: white;

    padding: 25px 30px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);

}



.experience-badge h3 {

    font-size: 3rem;

    font-weight: 700;

    margin: 0 0 5px;

    line-height: 1;

}



.experience-badge p {

    font-size: 0.9rem;

    margin: 0;

    opacity: 0.95;

}



.about-content h2 {

    font-size: 2.5rem;

    margin-bottom: 20px;

    color: var(--dark-color);

    line-height: 1.3;

}



.about-content > p {

    margin-bottom: 30px;

    color: var(--text-color);

    line-height: 1.8;

    font-size: 16px;

}



.about-features {

    margin-bottom: 30px;

}



.about-feature {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    margin-bottom: 25px;

}



.about-feature i {

    font-size: 28px;

    color: #2563eb;

    margin-top: 5px;

}



.about-feature h4 {

    font-size: 1.15rem;

    margin-bottom: 5px;

    color: var(--dark-color);

    font-weight: 700;

}



.about-feature p {

    color: var(--text-color);

    margin: 0;

    font-size: 14px;

}



/* Why Choose Section */

.why-choose {

    padding: 100px 0;

}



.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}



.why-content h2 {

    font-size: 2.5rem;

    color: var(--dark-color);

    margin-bottom: 20px;

    line-height: 1.3;

}



.why-content > p {

    margin-bottom: 30px;

    color: var(--text-color);

    line-height: 1.8;

    font-size: 16px;

}



.why-list {

    margin-bottom: 30px;

}



.why-item {

    display: flex;

    gap: 20px;

    margin-bottom: 25px;

    align-items: flex-start;

}



.why-item i {

    font-size: 28px;

    color: #2563eb;

    margin-top: 5px;

}



.why-item h4 {

    font-size: 1.15rem;

    margin-bottom: 8px;

    color: var(--dark-color);

    font-weight: 700;

}



.why-item p {

    color: var(--text-color);

    line-height: 1.6;

    margin: 0;

    font-size: 14px;

}



.why-image img {

    width: 100%;

    border-radius: 15px;

    box-shadow: var(--shadow);

}



/* Contact Info Grid */

.contact-info-section {

    padding: 100px 0;

}



.contact-info-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

}



.info-card {

    background: white;

    padding: 40px 30px;

    border-radius: 15px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: var(--transition);

    border: 1px solid #f1f5f9;

}



.info-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.15);

}



.info-icon {

    width: 70px;

    height: 70px;

    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin: 0 auto 20px;

}



.info-card h4 {

    font-size: 1.3rem;

    margin-bottom: 12px;

    color: var(--dark-color);

    font-weight: 700;

}



.info-card p {

    color: var(--text-color);

    line-height: 1.8;

    margin: 0;

}



/* Service Link Button */

.service-link {

    color: var(--primary-color);

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: var(--transition);

    background: transparent;

    border: none;

    cursor: pointer;

    font-size: 15px;

    padding: 0;

}



.service-link:hover {

    gap: 12px;

    color: #1e40af;

}



/* Animations */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.animate-fade-in {

    animation: fadeIn 0.8s ease-out;

}



.animate-fade-in-delay {

    animation: fadeIn 0.8s ease-out 0.3s both;

}



.animate-fade-in-delay-2 {

    animation: fadeIn 0.8s ease-out 0.6s both;

}



/* Responsive Updates */

@media (max-width: 1024px) {

    .about-grid,

    .why-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    

    .why-grid {

        direction: ltr;

    }

    

    .experience-badge {

        bottom: 20px;

        right: 20px;

        padding: 20px 25px;

    }

    

    .experience-badge h3 {

        font-size: 2.5rem;

    }

}



@media (max-width: 768px) {

    .slide-content h1 {

        font-size: 2.5rem;

    }

    

    .slide-content p {

        font-size: 1.1rem;

    }

    

    .hero-buttons {

        flex-direction: column;

        gap: 15px;

    }

    

    .hero-buttons .btn {

        width: 100%;

        justify-content: center;

    }

    

    .about-content h2,

    .why-content h2 {

        font-size: 2rem;

    }

    

    .section-header h2 {

        font-size: 2.2rem;

    }

    

    .features-grid {

        grid-template-columns: 1fr;

    }

    

    .products-grid,

    .services-grid,

    .testimonials-grid {

        grid-template-columns: 1fr;

    }

    

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

    }

    

    .contact-info-grid {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 576px) {

    .slide-content h1 {

        font-size: 2rem;

    }

    

    .slide-content p {

        font-size: 1rem;

    }

    

    .section-header h2 {

        font-size: 1.8rem;

    }

    

    .about-content h2,

    .why-content h2 {

        font-size: 1.8rem;

    }

    

    .stat-box h3 {

        font-size: 2.5rem;

    }

    

    .experience-badge {

        padding: 15px 20px;

    }

    

    .experience-badge h3 {

        font-size: 2rem;

    }

}



/* Contact Page Responsive */

@media (max-width: 1024px) {

    .contact-info-section > .container > div[style*="grid-template-columns: 1fr 1fr"] {

        grid-template-columns: 1fr !important;

    }

}



/* Service Detail Responsive */

.service-detail-item {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    margin-bottom: 80px;

}



@media (max-width: 1024px) {

    .service-detail-item {

        grid-template-columns: 1fr;

    }

}



.service-detail-img img {

    border-radius: 15px;

    box-shadow: var(--shadow);

    width: 100%;

}



.service-icon-lg {

    width: 70px;

    height: 70px;

    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

    color: white;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    margin-bottom: 20px;

}



.service-detail-content h3 {

    font-size: 2rem;

    margin-bottom: 20px;

    color: var(--dark-color);

}



.service-detail-content p {

    color: var(--text-color);

    line-height: 1.8;

    margin-bottom: 25px;

}



.service-features {

    margin-bottom: 30px;

}



.service-features ul {

    list-style: none;

    padding: 0;

}



.service-features li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;

    color: var(--text-color);

}



.service-features i {

    color: #10b981;

    font-size: 18px;

}



/* WhatsApp Floating Button */

.whatsapp-float {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 60px;

    height: 60px;

    background: #25d366;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);

    z-index: 999;

    transition: all 0.3s ease;

    animation: whatsappPulse 2s infinite;

}



.whatsapp-float:hover {

    background: #128c7e;

    transform: scale(1.1);

    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);

}



@keyframes whatsappPulse {

    0%, 100% {

        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);

    }

    50% {

        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);

    }

}



/* Responsive WhatsApp Button */

@media (max-width: 768px) {

    .whatsapp-float {

        width: 50px;

        height: 50px;

        font-size: 24px;

        bottom: 20px;

        right: 20px;

    }

}



/* ============================================

   MOBILE RESPONSIVE CSS

============================================ */



/* Top Bar Responsive */

@media (max-width: 768px) {

    .top-bar {

        display: none; /* Hide top bar on mobile */

    }

    

    /* Or make it scrollable */

    .top-bar-content {

        flex-direction: column;

        gap: 10px;

        padding: 10px 0;

    }

    

    .top-bar-left,

    .top-bar-right {

        width: 100%;

        justify-content: center;

    }

    

    .top-bar-item span {

        font-size: 12px;

    }

    

    .top-bar-social a {

        width: 32px;

        height: 32px;

        font-size: 14px;

    }

}



/* Navigation Responsive */

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

    gap: 5px;

}



.hamburger span {

    width: 25px;

    height: 3px;

    background: #1e293b;

    border-radius: 3px;

    transition: all 0.3s;

}



@media (max-width: 968px) {

    .navbar {

        padding: 15px 0;

    }

    

    .nav-wrapper {

        position: relative;

    }

    

    .hamburger {

        display: flex;

        z-index: 1001;

    }

    

    .nav-menu {

        position: fixed;

        left: -100%;

        top: 0;

        flex-direction: column;

        background: white;

        width: 280px;

        height: 100vh;

        padding: 80px 30px 30px;

        box-shadow: 2px 0 20px rgba(0,0,0,0.1);

        transition: left 0.3s ease;

        z-index: 1000;

        overflow-y: auto;

    }

    

    .nav-menu.active {

        left: 0;

    }

    

    .nav-menu li {

        margin: 0;

        width: 100%;

        border-bottom: 1px solid #f1f5f9;

    }

    

    .nav-menu li:last-child {

        border-bottom: none;

    }

    

    .nav-menu a {

        display: block;

        padding: 15px 10px;

        width: 100%;

        font-size: 16px;

    }

    

    .nav-menu a.btn-nav {

        margin-top: 20px;

        background: #2563eb;

        color: white;

        border-radius: 10px;

        text-align: center;

    }

    

    .hamburger.active span:nth-child(1) {

        transform: rotate(45deg) translate(8px, 8px);

    }

    

    .hamburger.active span:nth-child(2) {

        opacity: 0;

    }

    

    .hamburger.active span:nth-child(3) {

        transform: rotate(-45deg) translate(7px, -7px);

    }

}



/* Mobile Menu Overlay */

@media (max-width: 968px) {

    .nav-menu.active::before {

        content: '';

        position: fixed;

        top: 0;

        left: 280px;

        width: calc(100vw - 280px);

        height: 100vh;

        background: rgba(0, 0, 0, 0.5);

        z-index: -1;

    }

}



/* Footer Responsive */

@media (max-width: 768px) {

    .footer {

        padding: 40px 0 20px;

    }

    

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;

    }

    

    .footer-logo {

        justify-content: center;

    }

    

    .social-links {

        justify-content: center;

    }

    

    .footer-col h3 {

        margin-bottom: 15px;

        font-size: 18px;

    }

    

    .footer-col ul {

        padding: 0;

    }

    

    .footer-col ul li {

        margin-bottom: 10px;

    }

    

    .footer-bottom {

        padding-top: 20px;

        text-align: center;

        font-size: 13px;

    }

}



/* Modal Responsive */

@media (max-width: 576px) {

    #enquiryModal > div {

        width: 95%;

        margin: 10px;

        max-height: 95vh;

    }

    

    #enquiryModal > div > div:first-child {

        padding: 20px;

    }

    

    #enquiryModal h2 {

        font-size: 22px;

    }

    

    #enquiryModal form {

        padding: 20px;

    }

    

    #enquiryModal input,

    #enquiryModal textarea {

        font-size: 16px !important; /* Prevent iOS zoom */

    }

    

    #enquiryModal button[type="submit"] {

        padding: 14px;

        font-size: 15px;

    }

}



/* WhatsApp Button Responsive */

@media (max-width: 768px) {

    .whatsapp-float {

        width: 50px;

        height: 50px;

        bottom: 20px;

        right: 15px;

        font-size: 26px;

    }

}



/* Logo Responsive */

@media (max-width: 576px) {

    .logo {

        font-size: 20px;

    }

    

    .logo i {

        font-size: 24px;

    }

    

    .logo img {

        height: 35px !important;

    }

}



/* Container Padding */

@media (max-width: 768px) {

    .container {

        padding: 0 20px;

    }

}



@media (max-width: 576px) {

    .container {

        padding: 0 15px;

    }

}



/* Prevent Horizontal Scroll */

body {

    overflow-x: hidden;

}



html, body {

    max-width: 100%;

}



* {

    box-sizing: border-box;

}



/* Touch Friendly Elements */

@media (max-width: 768px) {

    a, button, .btn {

        min-height: 44px;

        min-width: 44px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

    }

}



/* Improve Form Elements on Mobile */

@media (max-width: 768px) {

    input, textarea, select {

        font-size: 16px !important; /* Prevents iOS zoom */

        -webkit-appearance: none;

        -moz-appearance: none;

        appearance: none;

    }

}



/* Safe Area for Notch Devices */

@supports (padding: max(0px)) {

    body {

        padding-left: max(0px, env(safe-area-inset-left));

        padding-right: max(0px, env(safe-area-inset-right));

    }

}



/* ============================================

   FINAL RESPONSIVE FIXES

============================================ */



/* Hero Slider Responsive */

@media (max-width: 768px) {

    .hero-slider {

        height: 70vh;

        min-height: 500px;

    }

    

    .slider-btn {

        width: 40px;

        height: 40px;

        font-size: 16px;

    }

    

    .slider-btn.prev {

        left: 15px;

    }

    

    .slider-btn.next {

        right: 15px;

    }

    

    .slider-dots {

        bottom: 20px;

    }

    

    .dot {

        width: 8px;

        height: 8px;

    }

}



/* Features Section Responsive */

@media (max-width: 768px) {

    .features {

        padding: 60px 0;

        margin-top: 0px;

    }

    

    .feature-card {

        padding: 25px;

    }

    

    .feature-icon {

        width: 60px;

        height: 60px;

        font-size: 24px;

    }

}



/* About & Why Choose Responsive */

@media (max-width: 768px) {

    .about-section,

    .why-choose {

        padding: 60px 0 !important;

    }

    

    .about-feature,

    .why-item {

        margin-bottom: 20px;

    }

    

    .about-feature i,

    .why-item i {

        font-size: 24px;

    }

    

    .about-feature h4,

    .why-item h4 {

        font-size: 1rem;

    }

    

    .about-feature p,

    .why-item p {

        font-size: 13px;

    }

}



/* Services & Products Responsive */

@media (max-width: 768px) {

    .services-overview,

    .products-section {

        padding: 60px 0;

    }

    

    .service-content {

        padding: 25px;

    }

    

    .service-content i {

        font-size: 32px;

    }

    

    .service-content h3 {

        font-size: 1.3rem;

    }

    

    .product-info {

        padding: 20px;

    }

    

    .product-info h3 {

        font-size: 1.2rem;

    }

}



/* Stats Section Responsive */

@media (max-width: 768px) {

    .stats-section {

        padding: 60px 0;

    }

    

    .stat-box i {

        font-size: 40px;

    }

    

    .stat-box h3 {

        font-size: 2.5rem;

    }

}



@media (max-width: 576px) {

    .stats-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

}



/* Testimonials Responsive */

@media (max-width: 768px) {

    .testimonials {

        padding: 60px 0;

    }

    

    .testimonial-card {

        padding: 25px;

    }

    

    .stars {

        font-size: 16px;

    }

    

    .client-info img {

        width: 45px;

        height: 45px;

    }

}



/* CTA Section Responsive */

@media (max-width: 768px) {

    .cta-section {

        padding: 60px 0;

    }

    

    .cta-content h2 {

        font-size: 2rem;

    }

    

    .cta-content p {

        font-size: 1rem;

    }

}



/* Contact Info Section Responsive */

@media (max-width: 768px) {

    .contact-info-section {

        padding: 60px 0;

    }

    

    .info-card {

        padding: 30px 20px;

    }

    

    .info-icon {

        width: 60px;

        height: 60px;

        font-size: 24px;

    }

    

    .info-card h4 {

        font-size: 1.1rem;

    }

}



/* Service Detail Page Responsive */

@media (max-width: 768px) {

    .service-detail-item {

        gap: 30px;

        margin-bottom: 50px;

    }

    

    .service-icon-lg {

        width: 60px;

        height: 60px;

        font-size: 28px;

    }

    

    .service-detail-content h3 {

        font-size: 1.6rem;

    }

}



/* Button Responsive */

@media (max-width: 576px) {

    .btn {

        padding: 12px 24px;

        font-size: 14px;

    }

    

    .btn-primary,

    .btn-secondary {

        width: 100%;

        text-align: center;

        justify-content: center;

    }

}



/* Section Spacing Responsive */

@media (max-width: 768px) {

    /* section {

        padding: 60px 0 !important;

    } */

    

    .section-header {

        margin-bottom: 40px;

    }

    

    .section-header h2 {

        font-size: 2rem;

    }

    

    .section-header p {

        font-size: 0.95rem;

    }

}



@media (max-width: 576px) {

    /* section {

        padding: 50px 0 !important;

    } */

    

    .section-header {

        margin-bottom: 30px;

    }

    

    .section-header h2 {

        font-size: 1.75rem;

    }

}



/* Fix Modal Z-index and Positioning */

#enquiryModal {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.7);

    z-index: 9999;

    align-items: center;

    justify-content: center;

    overflow-y: auto;

    padding: 20px;

}



#enquiryModal > div {

    background: white;

    border-radius: 20px;

    max-width: 500px;

    width: 100%;

    max-height: 90vh;

    overflow-y: auto;

    margin: auto;

}



/* Scroll Lock when Modal/Menu Open */

body.modal-open,

body.menu-open {

    overflow: hidden !important;

}



/* Hamburger Menu Fix */

@media (max-width: 968px) {

    .nav-menu {

        align-items: flex-start;

        gap: 0;

    }

    

    .nav-menu li a::after {

        display: none;

    }

}



/* Image Loading */

img {

    max-width: 100%;

    height: auto;

    display: block;

}



/* Smooth Scrolling */

html {

    scroll-behavior: smooth;

}



/* Loading State */

.loading {

    opacity: 0.6;

    pointer-events: none;

}



/* Focus Styles for Accessibility */

a:focus,

button:focus,

input:focus,

textarea:focus {

    outline: 2px solid #2563eb;

    outline-offset: 2px;

}



/* Print Styles */

@media print {

    .navbar,

    .footer,

    .whatsapp-float,

    #enquiryModal,

    .btn {

        display: none !important;

    }

}



/* Mission Vision Section */

.mission-vision {

    padding: 80px 0;

    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

}



.mv-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

    margin-top: 30px;

}



.mv-card {

    background: white;

    padding: 50px 40px;

    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    text-align: center;

    transition: all 0.4s ease;

    position: relative;

    overflow: hidden;

}



.mv-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg, #2563eb, #ec4899);

}



.mv-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);

}



.mv-icon {

    width: 90px;

    height: 90px;

    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    margin: 0 auto 25px;

    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);

    transition: all 0.4s ease;

}



.mv-card:hover .mv-icon {

    transform: scale(1.1) rotate(5deg);

    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);

}



.mv-card h3 {

    font-size: 2rem;

    color: #1e293b;

    margin-bottom: 20px;

    font-weight: 700;

}



.mv-card p {

    color: #64748b;

    line-height: 1.8;

    font-size: 15px;

}



/* Responsive Mission Vision */

@media (max-width: 768px) {

    .mission-vision {

        padding: 60px 0;

    }

    

    .mv-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    

    .mv-card {

        padding: 35px 25px;

    }

    

    .mv-icon {

        width: 70px;

        height: 70px;

        font-size: 32px;

    }

    

    .mv-card h3 {

        font-size: 1.5rem;

    }

    

    .mv-card p {

        font-size: 14px;

    }

}



@media (max-width: 576px) {

    .mission-vision {

        padding: 50px 0;

    }

    

    .mv-card {

        padding: 30px 20px;

    }

    

    .mv-card h3 {

        font-size: 1.3rem;

    }

}











