* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}


.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0; /* keeps it behind all content */
  pointer-events: none; /* allows clicks to pass through */
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 10s infinite;
  pointer-events: none; /* ensures blobs don’t block clicks */
}

.hero {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #437c8f 0%, #69b7e4 50%, #226fa8 100%);

  /* background: linear-gradient(to bottom, #aadef8, #0e3d4f); */
}


.blob-1 {
    top: 80px;
    left: 40px;
    width: 256px;
    height: 256px;
    animation: blob1 8s ease-in-out infinite;
}

.blob-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    animation: blob2 10s ease-in-out infinite;
}

@keyframes blob1 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes blob2 {
    0%, 100% { transform: scale(1.2); opacity: 0.5; }
    50% { transform: scale(1); opacity: 0.3; }
}

/* Header */
.header {
    
    position: relative;
    z-index: 10;
    padding: 24px 48px;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  align-items: center;

  /* shadow */
  filter: drop-shadow(0 4px 8px rgba(139, 234, 253, 0.25));
}



.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1280px;
    margin: 0px auto; */
     gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cow-icon {
    width: 48px;
    height: 48px;
    color: white;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
}



.nav-links {
    display: flex;
    gap: 15px; /* space between boxes */
      align-items: center;
}

.nav-links a {
    background: white;
    padding: 8px 16px;
    border-color: #05152c;
    border-width: 40px;
    border-radius: 8px; /* box rounded */
    text-decoration: none;
    color: rgb(56, 23, 123);
    font-weight: 650;
    font-size: 20px;
    transition: 0.3s ease;
    box-shadow: #05152c;
    border: 1px solid #ddd; /* light border */
}

/* hover effect (optional but looks clean) */
.nav-links a:hover {
   
    transform: translateY(-1px);
}


/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    margin-left: 10px;
}
.tagline {
    margin-top: 10px;
    font-size: 20px;
    /* font-weight: 500px; */
    margin-left: 132px;
    color: #f6f6f8; /* change if background is light */
    text-align:left;
    letter-spacing: 1px;
  font-weight: bold;

}

.btn-primary {
    background: #FFD166;
    color: #0A1D37;
}

.btn-primary:hover {
    background: rgba(255, 209, 102, 0.9);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0A1D37;
}

.btn-yellow {
    background: #FFD166;
    color: #0A1D37;
}

.btn-yellow:hover {
    background: rgba(255, 209, 102, 0.9);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 48px 128px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    /* align-items: center; */
}

.hero-text h1 {
    color: white;
    right: 200px;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
     margin-left: 10px;
}

.language-toggle {
      padding: 10px 15px; /* Adjust padding for better look */
      background: none; /* Remove background */
      color: #0A1D37; /* Dark text color */
      border: 2px solid #0A1D37; /* Add border for definition */
      border-radius: 5px; 
      cursor: pointer;
      font-weight: bold;
      font-family: inherit;
      font-size: 16px; 
      transition: background-color 0.3s, color 0.3s, border-color 0.3s;
      margin-left: 20px; /* Space it out from other links */
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Hover effect to make it interactive */
    .language-toggle:hover {
      background-color: #5BC0EB; /* Light blue background on hover */
      color: white; /* White text on hover */
      border-color: #5BC0EB; /* Match border to background */
    }

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    margin-left: 10px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91, 192, 235, 0.3), transparent);
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-10deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: #0A1D37;
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    color: #666;
    font-size: 20px;
    max-width: 672px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    background: white;
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: transform 0.6s ease;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
     min-width: 250px;
  max-width: 250px; /* ADD THIS */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 256px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.1), rgba(91, 192, 235, 0.05));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit:fill;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    color: #0A1D37;
    font-size: 24px;
    margin-bottom: 8px;
}

.product-content p {
    color: #666;
    margin-bottom: 16px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD166;
    color: #0A1D37;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 5;
}

.carousel-btn:hover {
    background: rgba(255, 209, 102, 0.9);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

/* Features Section */
.features-section {
    background: linear-gradient(to bottom, white, rgba(91, 192, 235, 0.05));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    color: #0A1D37;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.cow-decoration {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
}

.cow-small {
    width: 64px;
    height: 64px;
    animation: bounce-small 2s ease-in-out infinite;
}

.cow-small:nth-child(2) {
    animation-delay: 0.2s;
}

.cow-small:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, white 0%, #b5f1fd 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items:center;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cow-icon-small {
    width: 48px;
    height: 48px;
}

.about-label span {
    color: #FFD166;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text h2 {
    color: #0A1D37;
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    color: #5BC0EB;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 700px;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-decoration {
    position: absolute;
    background: #FFD166;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-decoration svg {
    width: 64px;
    height: 64px;
}

.decoration-1 {
    top: -24px;
    right: -24px;
    animation: rotate1 4s ease-in-out infinite;
}

.decoration-2 {
    bottom: -24px;
    left: -24px;
    background: #5BC0EB;
    animation: rotate2 5s ease-in-out infinite;
}

@keyframes rotate1 {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes rotate2 {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-5deg); }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient( rgb(186, 239, 251), white);
}

.testimonials-carousel {
    position: relative;
    padding: 0 60px;
}

.testimonials-track-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: transform 0.6s ease;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    margin-bottom: 16px;
}

.testimonial-text {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-author {
    color: #0A1D37;
    font-weight: 600;
}

.testimonial-role {
    color: #666;
    font-size: 14px;
}

.testimonial-prev {
    left: 16px;
}

.testimonial-next {
    right: 16px;
}

/* Footer */
.footer {
    background: #0A1D37;
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5BC0EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #FFD166;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD166;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .carousel-track {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-track {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 24px;
    }
}

/* Contact Page */
.contact-section {
  background: linear-gradient(to bottom, #ffffff, rgba(91,192,235,0.05));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  color: #0A1D37;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-info p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5BC0EB;
  outline: none;
}

/* Footer */
.footer {
  background: #0A1D37;
  color: white;
  text-align: center;
  padding: 32px 0;
  font-size: 16px;
}

/* === Legacy Section === */
.legacy-section {
  padding: 5rem 1rem;
  background: #f8fcff;
  position: relative;
  overflow: hidden;
}

.legacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.legacy-text h2 {
  font-size: 2rem;
  color: #0a1d37;
  margin-bottom: 1rem;
  position: relative;
}

.legacy-text p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legacy-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.legacy-image img {
  width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.legacy-image:hover img {
  transform: scale(1.05);
}

.legacy-image .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(91,192,235,0.2), rgba(255,209,102,0.1));
  pointer-events: none;
}

/* === Achievement Stats === */
.achievement-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 1.5s ease;
}

.stat-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-card h3 {
  font-size: 2rem;
  color: #5bc0eb;
}

.stat-card p {
  color: #0a1d37;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* === Scroll Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

.reverse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.reverse-grid .about-image-wrapper {
  order: 1;
}

.reverse-grid .about-text {
  order: 2;
}

/* Optional animation for fade-right */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"].active {
  opacity: 1;
  transform: translateX(0);
}
/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

/* Each Stat Card */
.stat {
  background-color: #71e6fb; /* navy blue background */
  color: #ffffff;
  padding: 1.8rem 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(68, 58, 243, 0.25);
  /* background: linear-gradient(135deg, #0A1D37 0%, #122b4a 100%); */
}

/* Number Styling */
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #173454; /* warm yellow contrast */
}

/* Label Styling */
.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ===================== GLOBAL ===================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background:#ffffff;
  color:#0a1d37;
}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ===================== CATEGORIES SECTION ===================== */
.categories-section{
  background:#f9fcff;
  padding:80px 0;
  text-align:center;
}
.categories-section h2{
  font-size:2rem;
  margin-bottom:15px;
}
.categories-section p{
  font-size:1rem;
  color:#666;
  margin-bottom:40px;
}
.categories-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}
.category-card{
  background:white;
  border-radius:16px;
  text-decoration:none;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  transition:.3s ease;
}
.category-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}
.category-card h3{
  margin:20px 0;
  font-size:1.2rem;
}
.category-card:hover{
  transform:translateY(-5px);
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

/* ===================== PRODUCT CAROUSEL ===================== */
.products-section{
  padding:80px 0;
  background:white;
}
.section-header{
  text-align:center;
  margin-bottom:40px;
}
.section-header h2{
  font-size:2rem;
  margin-bottom:15px;
}
.section-header p{
  color:#666;
  font-size:1rem;
}
.carousel-track{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}
.product-card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}
.product-image img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.product-content{
  padding:20px;
}
.product-content h3{
  margin-bottom:10px;
  font-size:1.2rem;
}
.product-content p{
  color:#666;
  font-size:.95rem;
}
.product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

/* ===================== FOOTER ===================== */
.footer{
  background:#0a1d37;
  color:white;
  padding:60px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}
.footer h4{
  margin-bottom:15px;
  font-size:1.1rem;
}
.footer ul{
  list-style:none;
}
.footer ul li{
  margin-bottom:8px;
  color:#ddd;
}
.footer a{
  text-decoration:none;
  color:#ddd;
  transition:.3s;
}
.footer a:hover{
  color:white;
}
.footer-bottom{
  margin-top:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:20px;
  font-size:.9rem;
  color:#ddd;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:1024px){
  .product-image img{
    height:180px;
  }
}

@media(max-width:768px){
  .categories-section h2,
  .section-header h2{
    font-size:1.7rem;
  }
  .product-image img{
    height:160px;
  }
}

@media(max-width:480px){
  .categories-section{
    padding:50px 0;
  }
  .categories-section h2{
    font-size:1.5rem;
  }
  .product-image img{
    height:140px;
  }
  .footer{
    padding:40px 0;
  }
}


/* Floating Language Buttons */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 8px;
}

.language-btn {
  padding: 8px 14px;
  background: #0088cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.language-btn:hover {
  background: #006fa5;
}

.language-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    padding: 8px 14px;
    border-radius: 30px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: white;
    color: #0a1d37;
}

.ceo-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(91,192,235,0.05), #ffffff);
}

.ceo-container {
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.ceo-container:hover{
 transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(68, 58, 243, 0.25);
}


.ceo-title {
    font-size: 36px;
    font-weight: 700;
    color: #0A1D37;
    margin-bottom: 20px;
}

.ceo-text {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ceo-signature {
    margin-top: 24px;
    font-style: italic;
    font-size: 18px;
    color: #5BC0EB;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ceo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-image img {
        width: 80%;
        margin: 0 auto;
    }
}




/* ---------- Make hero image fluid (remove fixed height) ---------- */
.hero-image img {
  width: 100%;
  height: auto;        /* was fixed to 500px — now fluid */
  max-height: 90vh;    /* optional: prevents extremely tall images */
}

/* ---------- Make .hero-grid collapse into single column early ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr; /* stack hero text + image */
    gap: 24px;
  }

  .hero-text, .hero-image-wrapper {
    width: 100%;
  }

  .hero-content {
    padding: 24px;
  }
}

/* ---------- Prevent fixed-width container from squeezing content ---------- */
.container {
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Nav: convert right-side links into mobile hamburger ---------- */
/* Hide large nav-links on small screens (you already hide .nav-links at 768, but ensure) */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  /* show mobile menu button */
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: white;
    cursor: pointer;
  }

  /* language switcher move so it doesn't overlap hero */
  .language-switcher {
    top: 12px;
    right: 12px;
    gap: 6px;
  }
}

/* ---------- Mobile menu panel (hidden by default) ---------- */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  max-width: 80%;
  height: 100vh;
  background: white;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -10px 0 30px rgba(10,29,55,0.12);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

/* when open */
.mobile-menu-panel.open {
  transform: translateX(0);
}

/* mobile links inside panel */
.mobile-menu-panel a {
  display: block;
  padding: 12px 14px;
  color: #0a1d37;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #f7f8fa;
  margin-bottom: 6px;
}

/* Mobile: move floating language buttons so they don't cover content */
@media (max-width: 480px) {
  .language-switcher {
    top: auto;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
  }

  /* reduce hero heading size for narrow devices */
  .hero-text h1 {
    font-size: 1.8rem !important;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  /* ensure hero buttons wrap */
  .hero-buttons {
    gap: 10px;
    justify-content: flex-start;
  }

  /* Avoid very large left padding on tagline or other elements */
  .tagline { margin-left: 12px; }
}

/* ---------- Fix layout of right-floating tiny menu seen in screenshot ---------- */
/* If you have an element that is vertically stacked (right side), give it a responsive fallback */
.right-floating {
  position: static; /* fallback so it flows naturally on small screens */
}

/* if you actually used position: fixed; for right column, change only below 1024 */
@media (max-width: 1024px) {
  .right-floating, .sidebar, .vertical-nav {
    position: relative !important;
    width: 100% !important;
    display: block;
    margin: 8px 0;
    transform: none !important;
    box-shadow: none;
  }
}

/* ---------- Tidy up long texts and images in About/CEO sections ---------- */
.about-image, .about-image img, .about-image-wrapper, .about-image img {
  width: 100%;
  height: auto;
}

/* ---------- Accessibility / touch improvements ---------- */
.mobile-menu-btn, .language-btn, .lang-btn {
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
  touch-action: manipulation;
}

@media (max-width: 480px) {
  .product-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 0 12px;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    min-width: 80%;
    max-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .product-card img {
    height: 180px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
    top: unset;
    bottom: -12px; /* move arrows below cards */
  }

  .slider-btn.prev {
    left: 35%;
  }

  .slider-btn.next {
    right: 35%;
  }
}

/* ____________________________
   MOBILE MENU FIXES
______________________________ */

/* Dark overlay behind menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 9998;
}

/* Show overlay */
.menu-overlay.active {
  display: block;
}

/* Mobile panel width fix */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;              /* FIX: narrower */
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  padding: 24px 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;          /* FIX: scrolling */
}

/* Slide in */
.mobile-menu-panel.open {
  transform: translateX(0);
}

/* Fix menu links */
.mobile-menu-panel a {
  display: block;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #f5f7fa;
  border-radius: 10px;
  color: #0a1d37;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Close button fix */
#mobileMenuClose {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 14px;
}

/* Hide unwanted images inside panel */
.mobile-menu-panel img {
  display: none !important;
}



.carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.product-card {
  min-width: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 286px;
  border-radius: 0px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffd35a;
  border-radius: 50%;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 22px;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

@media (max-width: 480px) {
  .product-card {
    min-width: 200px;
  }
}

/* Hide mobile menu button on desktop */
.mobile-menu-btn {
  display: none;
}

/* Show button only on screens below 768px */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

.product-slider {
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.product-slide {
  min-width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Important */
  border-radius: 12px;
}

/* MAIN SECTION */
.industry-section {
  padding: 80px 0;
  text-align: center;
  background: white;
}

/* SUBTEXT (BIGGER + CLEANER) */
.industry-subtext {
  max-width: 850px;
  margin: 20px auto 50px;
  color: #444;
  font-size: 1.35rem;
  line-height: 2.2rem;
  font-weight: 500;
}

/* STAT BOX */
.industry-stats {
  margin-bottom: 60px;
}

.stat-box {
  background: #ffffff;
  padding: 45px 55px;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.stat-box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2A4D69;
  margin-bottom: 15px;
}

.stat-box p {
  font-size: 1.25rem;
  line-height: 2rem;
  color: #555;
}

/* GALLERY (MORE PREMIUM LOOK) */
.industry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.035);
  box-shadow: 0 16px 28px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  display: block;
}

/* Appreciation Text */
.industry-appreciation,
.industry-appreciation-2 {
  max-width: 900px;
  margin: 40px auto;
  font-size: 1.35rem;
  color: #79b6ef;
  line-height: 2.15rem;
  font-weight: 550;
}

/* =========================================================
   GLOBAL RESPONSIVE FIXES
   ========================================================= */
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

  h1, h2, h3 {
    text-align: center;
  }
}

/* =========================================================
   HEADER / NAVBAR RESPONSIVE
   ========================================================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #ffffffee;
    backdrop-filter: blur(5px);
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 15px;
    display: none;
    transition: 0.3s ease;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* =========================================================
   HERO SECTION RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .hero {
    padding: 80px 10px !important;
  }
  .hero h1 {
    font-size: 1.9rem !important;
    text-align: left;
  }
  .hero p {
    font-size: 1rem !important;
  }
  .hero img {
    width: 90%;
  }
}

/* =========================================================
   CATEGORY GRID (Products Page)
   ========================================================= */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .category-card img {
    height: 160px !important;
  }
}

/* =========================================================
   PRODUCT CARDS RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .carousel-track {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .product-card {
    width: 100%;
    margin: 0 auto;
  }

  .product-image img {
    height: 300px;
    object-fit: cover;
  }
}

/* =========================================================
   OUR STORY PAGE RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .story-grid img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* =========================================================
   CONTACT PAGE RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column !important;
  }

  .contact-form, .contact-info {
    width: 100%;
    padding: 25px;
  }

  .map-container iframe {
    height: 300px;
    max-width: 100%;
  }
}

/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 25px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    align-items: center;
  }
}

/* --- Fix: Reduce padding on small screens --- */
@media (max-width: 768px) {
     .hero-text h1,
 .header tagline{
    text-align: left;
  }
    .container {
        /* Reduce padding from 48px to a more mobile-friendly 15px */
        padding: 0 15px;
    }
    
    /* Also check the .header which has 48px padding */
    .header {
        padding: 24px 15px;
    }
    
    /* The hero content section also has 48px padding */
    .hero-content {
        padding: 20px 15px 128px;
    }
}


@media (max-width: 880px) {
  .header .nav-links {
    text-align: right;
    flex-direction: column;
    align-items: flex-end; /* right align */
  }

  .hero-text h1,
 .header tagline{
    text-align: left;
  }
}


/* Hide mobile language toggle on desktop */
#mobileLangToggle {
    display: none;
}

/* Show only on mobile */
@media (max-width: 880px) {
    #mobileLangToggle {
         display: block;
    margin-top: -20px;      /* adjust position */
    margin-right: 325px;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    
    }

      /* Remove it from header-right area */
  .nav .nav-links #mobileLangToggle {
    display: none ;
  }

  /* Make header layout flow vertically */
  .header nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 100%;
  }

  /* Tagline spacing so button sits above it properly */
  .tagline {
    margin-top: 10px;
  }
}

    /* Hide desktop language toggle on mobile */
    #lang-toggle {
        display: none;
    }



.hero-carousel-bg {
  position: cover;
  width: 100%;
  height: 95%; /* Change height as per your design */
   min-height: 400px;    /* fallback for very small screens */
  height: 65vh;         /* auto scales on mobile */
  max-height: 700px;    /* limit for desktop: optional */
  overflow: hidden;
  border-radius: 15px;
  margin: 0 auto;
}


@media (max-width: 600px) {
  .hero-carousel-bg {
    height: 40vh;       /* shorter on very small devices */
    min-height: 200px;
    border-radius: 8px;
  }
}

.carousel-bg-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 90%;
}

.carousel-bg-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-bg-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-bg-title {
  background: rgba(0,0,0, 0.55);
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Arial', sans-serif;
  border-radius: 8px;
  padding: 16px 32px;
  font-weight: bold;
  letter-spacing: 1px;
  max-width: 80%;
  margin: auto;
}

.carousel-btn {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-btn:hover { background: #fff;}



.nav-links { 
    display:flex; 
    align-items:center; 
    gap:1rem; 
}

.language-toggle {
    background: transparent;
    border: 1px solid rgba(10,29,55,0.08);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight:600;
}

/* --- NEW FIX: Desktop view should hide mobile toggle --- */
#mobileLangToggle {
    display: none;
}

/* Desktop language button should be visible */
#lang-toggle {
    display: inline-block;
}

/* --- MOBILE FIXES --- */
@media (max-width:880px){

    /* show mobile toggle in mobile */
    #mobileLangToggle {
        display: inline-block !important;
        position: relative;
        margin-top: 10px;
        margin-left: 10px;
        z-index: 2000;
    }

    /* hide desktop toggle in mobile */
    #lang-toggle {
        display: none !important;
    }

    /* optional: wrap nav links for proper mobile layout */
    .nav-links{
        flex-wrap:wrap;
    }
}

