/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.mySlides {
    display: none;
}
img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
 width: 100%;
 /* height: 80vh; */
  position: relative;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 5px;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  /* height: 15px;
  width: 15px; */
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 2.5s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 5.5s;
}

@keyframes fade {
  from {opacity: .9} 
  to {opacity: 5}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
:root {
    /* Light Theme Colors */
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* [data-theme="dark"] {
    Dark Theme Colors
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --border-color: #4b5563;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
} */
.section-marquee{
 
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 20px 0 ;
    animation: marquee 0s linear infinite;
}
@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }


    
}
.section-marquee img{
    display: inline-block;
    
    /* width: 150px;
    height: 200px; */
    margin-right: 20px;
    vertical-align: middle;
    
  margin-left: 40px;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
    overflow-x: hidden;

}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    margin: 0 auto 20px;
}

.loading-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: pulse 0.2s ease-in-out infinite;
}

.loading-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: black;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    background-color: rgb(255, 255, 255);
    
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

[data-theme="dark"] .header.scrolled {
    background-color: white;
}


.background-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;

}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-color);
    
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    /* height: 50px;
    width: 50px; */
}
.fa-phone{
    font-size: 20px;
    text-decoration: none;
    color: white;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: rgb(0, 0, 0);
    transform: scale(1.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height:95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
 
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    overflow: hidden;
    z-index: -1;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 400px;
    background: rgba(37, 99, 235, 0.3);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 300px;
    background: rgba(124, 58, 237, 0.3);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.shape-3 {
    width: 400px;
    height: 200px;
    background: rgba(245, 158, 11, 0.3);
    top: 50%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-description {
    font-size:25px;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 40px;
    animation: fadeIn 2s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

[data-theme="dark"] .stat-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-card:nth-child(1) { animation-delay: 0.8s; }
.stat-card:nth-child(2) { animation-delay: 1s; }
.stat-card:nth-child(3) { animation-delay: 1.2s; }

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, var(--secondary-color), #8b5cf6);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, var(--success-color), #34d399);
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 1.4s both;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 2px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .btn-secondary {
    background: rgba(31, 41, 55, 0.8);
    color: var(--text-primary);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.intro{
    padding: 30px 0;
   display: flex;
    /* justify-content: space-evenly; */
    justify-content: center;
    gap: 40px;
}
.intro img{
    width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
}
.intro p{
    font-size: 20px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 20px;
    width: 750px;
    font-family: 'Poppins', sans-serif;
}

.intro2{
    padding: 30px 0;
   display: flex;
    /* justify-content: space-evenly; */
    justify-content: center;
    gap: 40px;
}
.intro2 img{
    width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
}
.intro2 p{
    font-size: 20px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 20px;
    width: 750px;
    font-family: 'Poppins', sans-serif;
}


/* About Section */
.about {
    padding: 30px 0;
    /* background: var(--bg-secondary); */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;

    
}



.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
 
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.blue-gradient {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.green-gradient {
    background: linear-gradient(135deg, var(--success-color), #34d399);
}

.purple-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #8b5cf6);
}

.red-gradient {
    background: linear-gradient(135deg, var(--error-color), #f87171);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}
/* Products Section */
.products {
    padding: 100px 0;
    background: var(--bg-primary);
}

.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 50px;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    /* transform: translateY(-10px) rotate(1deg); */
    box-shadow: var(--shadow-xl);
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-image {
    height: 370px;
    background: var(--bg-secondary);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width:370px;
    height: 370px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.2);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1)); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-category {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(10, 10, 10);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    color: var(--text-secondary);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
}

.product-buttons {
    display: flex;
    gap: 10px;
}
.booknow{
    text-decoration: none;
    color: var(--primary-color);
}
.booknow:hover {
    color: white;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 25px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 120px;
    align-items: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}

.contact-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.2;
}

.contact-form {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--bg-primary);
    padding: 0 5px;
}

.form-submit {
    width: 100%;
    margin-top: 20px;
}

/* Footer */
.footer {
    background:linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-logo{
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: black;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
}

.contact-item i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: white;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--error-color);
    color: white;
}

.modal-body {
    padding: 40px;
}

/* Responsive Design */
@media (min-width:1024px) and (max-width:1560px) {
   .hero {
    height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
 
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    overflow: hidden;
    z-index: -1;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}
.intro{
    padding: 20px 0;
   display: flex;
 justify-content: space-evenly;
    gap: 20px;

    
}
.intro img{
    width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
}
.intro p{
    font-size: 18px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0px;
    width: 600px;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}
}

/* @media ( max-width: 1300px) {
    
  .hero {
    min-height: 125vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
 
}
} */

@media (min-width: 601px) and (max-width: 1024px) {
    .hero {
     height: 110vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
}
.hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height:100%;
     overflow: hidden;
     z-index: -1;
}
.background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     z-index: -2;
}
.intro{
    padding: 20px 0;
   display: flex;
  flex-direction: column;
    gap: 20px;

    
}
.intro img{
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
    margin-left: 150px;
}
.intro p{
    font-size: 18px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0px;
    width: 800px;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}
 .intro2{
    padding: 20px 0;
   display: flex;
  flex-direction: column-reverse;
    gap: 20px;
}}


@media (max-width: 600px) {
    
    .intro{
    padding: 0px;
   display: flex;
  flex-direction: column;
    gap: 20px;
}
.intro img{
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 50px;
    margin-left: 20px;
}
.intro p{
    font-size: 15px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0px;
    width: 385px;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
}
 .intro2{
    padding: 0px;
   display: flex;
  flex-direction: column-reverse;
    gap: 20px;
}
.intro2 img{
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
    margin-left: 0px;
    margin-top: 20px;
}
.intro2 p{
    font-size: 15px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0px;
    width: 345px;
    font-family: 'Poppins', sans-serif;
    padding: 0px;
}
    .hero-description {
    font-size:16px;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 40px;
    animation: fadeIn 2s ease-out 0.6s both;
    margin-top: 0px;
}
  
    .slideshow-container {
 width: 100%;
 /* height: 80vh; */
  position: relative;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 0px;
}
.dot {
 
 display: none;
}
.numbertext {
display: none;
}
.text{
    display: none;
}
.section-title{
   font-size: 18px;
}
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero {
    min-height: 185vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
 
}
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: auto;
    }
    .footer-bottom {
   font-size: 13px;

}
.footer-logo{
   margin-left: 100px;
}
.social-links {
   margin-left: 100px;
}
.contact-item{
    display: none;
}
.contacth44{
    display: none;
}
.product-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 345px;
    height: 440px;
}
.product-image {
    height: 300px;
    background: var(--bg-secondary);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.product-image img {
    width:350px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

}

@media (max-width: 368px) {
    .social-links {
   margin-left: 0px;
   margin-right: 30px;
}
    .contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: flex;
   flex-direction: column-reverse;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}

.product-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 320px;
    height: 440px;
}
.product-image {
    height: 300px;
    background: var(--bg-secondary);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.product-image img {
    width:320px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    .intro{
    padding: 0px;
   display: flex;
  flex-direction: column;
    gap: 20px;
}
.intro img{
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 50px;
    margin-left: 5px;
}
.intro p{
    font-size: 15px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0px;
    width: 359px;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
}
 .intro2{
    padding: 0px;
   display: flex;
  flex-direction: column-reverse;
    gap: 20px;
}
.intro2 img{
    width: 320px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
    margin-left: 0px;
    margin-top: 20px;
}
.intro2 p{
    font-size: 15px;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0px;
    width: 325px;
    font-family: 'Poppins', sans-serif;
    padding: 0px;
}
    .hero-description {
    font-size:16px;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 40px;
    animation: fadeIn 2s ease-out 0.6s both;
    margin-top: 0px;
}
.section-subtitle {
    font-size: 16px;
    text-align: justify;
    color: var(--text-secondary);
    max-width: 345;
    margin: 0 auto;
    line-height: 1.6;
}
  
    .slideshow-container {
 width: 100%;
 /* height: 80vh; */
  position: relative;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 0px;
}
.dot {
 
 display: none;
}
.numbertext {
display: none;
}
.text{
    display: none;
}
.section-title{
   font-size: 16px;
   margin-bottom: 0px;
   margin-top: 10px;
}
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero {
    min-height: 225vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
 
}
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
   font-size: 13px;

}
.footer-logo{
   margin-left: 100px;
}
.social-links {
   margin-left: 100px;
}
.contact-item{
    display: none;
}
.contacth44{
    display: none;
}

}


@media (max-width: 480px) {
    .nav-brand {
        gap: 10px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about{
padding: 0;
    }
    .products,
    .contact {
        padding: 60px 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

.brand-info img {
    width: 150px;
    height: auto;
   
}


/* icons */
.example-2 {
  display: flex;
margin-top: 20px;
list-style: none;

}
.example-2 .icon-content {
  margin: 0 8px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ac4c4cd3;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

#wp{
  position: fixed;
  z-index: 5 !important;
  bottom: 9%;
  left:95.6%;
  width: 50px;
  height: 50px;
}
 #wp:hover{
  transform: scale(1.2);
 }
 #uparrow{
  position: fixed;
  z-index: 5 !important;
  bottom: 3.5%;
  left:95.9%;
 }
 .fa-arrow-up{
background-color: #2563eb;
color: white;
width: 40px;
height: 40px;
font-size: 20px;
border-radius: 50%;
padding: 10px;
border: solid white 2px;


 }
 #strow{
margin-left: 50px;
 }
 @media  (min-width:769px) and (max-width:1424px) {
     #uparrow{
   position: fixed;
  z-index: 5 !important;
  bottom:2%;
  left:91%;
}
#wp{
  position: fixed;
  z-index: 5 !important;
  bottom:8.5%;
  left:90.5%;
  width: 50px;
  height: 50px;
}

 }
 @media  (min-width:281px) and (max-width:768px) {
    #wp{
  position: fixed;
  z-index: 5 !important;
  bottom:8.5%;
  left:80.5%;
  width: 50px;
  height: 50px;
}
     #uparrow{
   position: fixed;
  z-index: 5 !important;
  bottom:2.5%;
  left:82%;
     }
      #strow{
margin-left: 0px;
 }
    }