@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);

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

:root {
    --color-primary: #ECFAE5;
    --color-secondary: #65DB77;
    --color-tertiary: #B0DB9C;
    --color-accent: #CAE8BD;
    --color-dark: #2c3e50;
    --color-text: #34495e;
    --color-text-light: #7f8c8d;
    --color-white: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
      --primary-blue: #0066cc;
  --secondary-blue: #0052a3;
  --gradient-start: #0066cc;
  --gradient-end: #0099ff;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --border-color: #e0e0e0;
  --error-color: #d32f2f;
  --success-color: #2e7d32;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Segoe UI', Arial, sans-serif;

}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: var(--spacing-xs);
}

.social-icons a {
    color: var(--color-text);
    font-size: 0.9rem;
    padding: var(--spacing-xs);
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.2); */
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    /* background: var(--color-accent); */
    color: var(--color-white);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

/* Main Navigation */
.main-nav {
    background: var(--color-white);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px var(--color-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.hidden {
    transform: translateY(-100%);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 30px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.nav-logo .logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--color-shadow);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: var(--color-text);
    background: rgba(152, 168, 248, 0.1);
    transform: translateY(-2px);
}

/* Unique hover effects for each menu item */
.nav-item:nth-child(1) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
}

.nav-item:nth-child(2) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
}

.nav-item:nth-child(3) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.nav-item:nth-child(4) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-tertiary));
}

.nav-item:nth-child(5) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.nav-item:nth-child(6) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
}

.nav-item:nth-child(7) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(152, 168, 248, 0.2));
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-text {
    max-width: 600px;
    color: var(--color-white);
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-accent), var(--color-tertiary));
    color: var(--color-white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(152, 168, 248, 0.4);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    padding: var(--spacing-sm);
    /* border-radius: 50%; */
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: var(--spacing-lg);

}

.carousel-nav.next {
    right: var(--spacing-lg);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #000000;
}

.section-header p {
    font-size: 15px;
    color:#000000;
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: #000000;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    color: #000000;
}

.stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #65DB77;
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    color:#000000;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px var(--color-shadow);
}

/* Products Section starts here */

.industry-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  background: url('/Images/Products1.png') center/cover no-repeat; /* replace with your bg image */
  color: #000000;
  min-height: 100vh;
}

/* Section Header */
.section-header1 {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-description {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.container1 {
  width: 100%;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

/* Category Card */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delay */
.category-card:nth-child(1) {
  animation-delay: 0.1s;
}
.category-card:nth-child(2) {
  animation-delay: 0.2s;
}
.category-card:nth-child(3) {
  animation-delay: 0.3s;
}
.category-card:nth-child(4) {
  animation-delay: 0.4s;
}
.category-card:nth-child(5) {
  animation-delay: 0.5s;
}
.category-card:nth-child(6) {
  animation-delay: 0.6s;
}
.category-card:nth-child(7) {
  animation-delay: 0.7s;
}
.category-card:nth-child(8) {
  animation-delay: 0.8s;
}
.category-card:nth-child(9) {
  animation-delay: 0.9s;
}
.category-card:nth-child(10) {
  animation-delay: 1s;
}

/* Hidden categories */
.category-card.hidden {
  display: none;
  opacity: 0;
}

.category-card.show {
  display: flex;
  animation: fadeInUp 0.6s ease forwards;
}

/* Icon Wrapper */
.icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* Updated icon styles for PNG images */
.category-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(1) invert(1);
}

/* Category Label */
.category-label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  max-width: 180px;
}

/* Hover Effects */
.category-card:hover .icon-wrapper {
  transform: scale(1.15);
  color: #65DB77;
  filter: brightness(0) saturate(100%) invert(68%) sepia(89%) saturate(2076%) hue-rotate(157deg) brightness(98%)
    contrast(101%);
}

.category-card:hover .category-label {
  color: #ffffff;

}

/* Updated hover effect for PNG images */
.category-card:hover .category-icon {
  filter: brightness(0) saturate(100%) invert(68%) sepia(89%) saturate(2076%) hue-rotate(157deg) brightness(98%)
    contrast(101%);
  transform: scale(1.15);
  color: #65DB77;
}

/* Show More Button */
.show-more-btn {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  padding: 12px 30px;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.show-more-btn::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #00ff26;
  transition: width 0.3s ease;
}

.show-more-btn:hover {
  color: #00ff26;
}

.show-more-btn:hover::after {
  width: 80%;
}

.show-more-btn.hidden {
  display: none;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 15px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-wrapper .category-icon {
    font-size: 50px;
  }

  .icon-wrapper .paw-icon {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 14px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .category-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 13px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper .category-icon {
    font-size: 40px;
  }

  .icon-wrapper .paw-icon {
    font-size: 20px;
  }

  .category-label {
    font-size: 13px;
  }

  .show-more-btn {
    font-size: 16px;
  }
}
/* products section ends here */

/*  */

.wrap{
        max-width: 1180px;
        margin: 0 auto;
        padding: 36px 24px 72px;
        

      }

      /* Top meta label */
      .meta{
        display:flex;
        align-items:center;
        gap:12px;
        font-weight:600;
        letter-spacing:.02em;
        color:#000000;
        font-size:14px;
        text-transform: uppercase;
      }
      .dot{
        width:12px;height:12px;border-radius:999px;background:var(--blue);
      }

      /* Top grid */
      .top{
        display:grid;
        grid-template-columns: 1fr 420px 1fr;
        align-items:start;
        margin-top:48px;
        column-gap: 28px;
      }

      .headline{
        text-align:center;
      }
      .headline h1{
        margin:0;
        font-weight:700;
        line-height:1.05;
        letter-spacing:-0.02em;
        color:#191c3a;
        font-size:32px;
      }
      .divider{
        width:56%;
        height:2px;
        background: #65DB77;
        margin:24px auto 0;
        border-radius:4px;
      }

      .lede{
        font-size:15px;
        line-height:1.6;
        color:#000000;
      }

      /* Cards row */
      .cards{
        display:flex;
        gap:28px;
        margin-top:56px;
        align-items:flex-end;
        flex-wrap:nowrap;
        overflow:visible;
      }
      .card{
        border-radius: 10px;
        background: #65DB77;
        box-shadow: var(--shadow);
        overflow:hidden;
        position:relative;
      }

      /* Sizes tuned to resemble screenshot proportions */
      .tall{width: 260px; height: 520px;}
      .photo{width: 260px; height: 300px;}
      .short{width: 360px; height: 220px;}
      .mid{width: 320px; height: 360px;}

      /* Dark left card */
      .card--dark{
        background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-accent) 100%);
        color: #ffffff;
      }
      .card--dark .pad{
        padding:28px 28px 0;
      }
      .card--dark h3{
        margin:0 0 16px;
        font-size:24px;
        line-height:1.2;
        letter-spacing:-0.01em;
      }
      .card--dark p{
        margin:0;
        color:#ffffff;
        line-height:1.6;
        font-size:15px;
      }
      /* Stylized wave overlay to emulate the artwork */
      .card--dark::after{
        content:"";
        position:absolute;
        inset:auto 0 0 0;
        height:60%;
        background:
          radial-gradient(120% 80% at 10% 80%, rgba(98, 255, 106, 0.45) 0%, transparent 60%) ,
          radial-gradient(120% 80% at 90% 100%, rgba(126, 255, 143, 0.35) 0%, transparent 62%),
          linear-gradient(180deg, rgba(22,27,74,.0) 0%, rgba(25, 74, 22, 0.8) 100%);
        mix-blend: screen;
      }

      /* Generic image card */
      .img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
      }

      /* Beige short card */
      .card--beige{
        background: #65DB77;
        color:#ffffff;
      }
      .card--beige .pad{
        padding:22px 24px;
        height:100%;
        display:flex;
        gap:16px;
        align-items:flex-start;
      }
      .beige-icon{
        width:34px;height:34px;border-radius:10px;
        background: #d8d0c6;
        box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
        position:relative;
      }
      .beige-icon::before,.beige-icon::after{
        content:"";
        position:absolute;
        inset:0;
        margin:auto;
      }
      .beige-icon::before{
        width:18px;height:18px;border-radius:6px;border:2px solid #9a8f83;
      }
      .beige-icon::after{
        width:6px;height:6px;border-radius:999px;background:#9a8f83;
      }
      /* .card--beige h4{
        margin:0 0 6px;
        font-size:30px;
        font-weight:600;
        letter-spacing:1;
        color:#ffffff;
        line-height:1.1;
      } */
      .card--beige p{
        margin:0;
        color:#ffffff;
        font-size:22px;
        font-weight:600;
        line-height:1;
      }

      /* Light mid card */
      .card--light{
        background:#eef1f6;
        color:#182038;
      }
      .card--light .pad{
        padding:22px 22px 0;
      }
      .card--light h3{
        margin:0 0 8px;
        font-size:24px; line-height:1.2;
      }
      .card--light .art{
        position:absolute; inset:auto 0 0 0; height:62%;
        background: radial-gradient(60% 60% at 70% 80%, rgba(72, 255, 75, 0.35) 0%, rgba(72, 255, 84, 0) 70%);
      }

      /* Right photo label */
      .label{
        position:absolute; z-index:2; top:20px; left:20px;
        /* background: rgba(10,14,40,.5); */
        color:white; padding:10px 14px; border-radius:12px;
        font-weight:700; line-height:1.25;
        backdrop-filter: blur(4px);
        font-size:20px;

      }

      /* Small helper for fine spacing in the row to match the stagger */
      .push-up{ transform: translateY(-28px); }
      .push-down{ transform: translateY(18px); }

      /* Simple responsiveness */
      @media (max-width: 1200px){
        .wrap{max-width:1000px}
      }
      @media (max-width: 1040px){
        .top{
          grid-template-columns: 1fr;
          text-align:center;
        }
        .lede{max-width:680px;margin:0 auto}
        .cards{
          flex-wrap:wrap;
          justify-content:center;
        }
        .push-up,.push-down{ transform:none }
      }

/*  */

/* global reach section starts from here */

/* Make the section full width and responsive */
.banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust as needed (e.g., 100vh for full screen) */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* Image styling */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps aspect ratio and fills the area */
  display: block;
  filter: brightness(0.7); /* Optional: darken for better text visibility */
}

/* Overlay content */
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content:last baseline; /* Left & right layout */
  align-items: center;
  color: white;
  padding: 0 7%; /* Side spacing */
}

/* Left heading */
.left-text h1 {
  font-size: 32px;
  font-weight: 700;
  max-width: 55%;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Right description */
.right-text p {
  font-size: 15px;
  font-weight: 400;
  max-width: 65%;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 0 5%;
  }

  .left-text h1, .right-text p {
    max-width: 90%;
    text-align: center;
    margin-bottom: 20px;

  }
}

/* global reach section ends here */



/* Principal section starts here */

 section.principals {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
    
      color: #000000;
      min-height: 100vh;
    }

    .principals .logos {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 500px;
      margin-right: 50px;
    }

    .principals .logos img {
      width: 100%;
      height: auto;
      background: #fff;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-radius: 4px;
      object-fit: contain;
    }

    .principals .text {
      flex: 1;
      max-width: 500px;
    }

    .principals .text h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .principals .text p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .principals .text button {
      padding: 12px 24px;
      background: #65DB77;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
    }

    .principals .text button:hover {
      background: #B0DB9C;
    }

/* Principal section ends here */


/* Exibition section starts here */

.exhibition-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  border-radius: 20px;
  box-shadow: var(--color-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.exhibition-container {
  animation: fadeInUp 0.8s ease-out;
}

/* Headline Styling */
.exhibition-headline {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Description Styling */
.exhibition-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Exhibition Button */
.exhibition-btn {
  background-color: var(--white);
  color: var(--color-dark);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exhibition-btn:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.exhibition-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   Modal Overlay & Container
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.modal-container {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

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

/* ==========================================
   Modal Header
   ========================================== */
.modal-header {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  padding: 25px 30px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  line-height: 1;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   Modal Body & Form
   ========================================== */
.modal-body {
  padding: 35px 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.required {
  color: var(--error-color);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error-color);
}

.error-message {
  display: block;
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 20px;
}

/* ==========================================
   Form Actions (Buttons)
   ========================================== */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-cancel,
.btn-submit {
  flex: 1;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cancel {
  background-color: var(--light-gray);
  color: var(--text-gray);
  border: 2px solid var(--border-color);
}

.btn-cancel:hover {
  background-color: #e0e0e0;
  border-color: #bdbdbd;
}

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

.btn-submit:hover {
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ==========================================
   Thank You Message
   ========================================== */
.thank-you-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease;
}

.thank-you-message.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
  animation: scaleIn 0.5s ease;
}

.thank-you-message h3 {
  font-size: 1.8rem;
  color: var(--success-color);
  margin-bottom: 10px;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media screen and (max-width: 768px) {
  .exhibition-section {
    padding: 40px 25px;
    border-radius: 15px;
  }

  .exhibition-headline {
    font-size: 2rem;
  }

  .exhibition-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .exhibition-btn {
    font-size: 1rem;
    padding: 14px 36px;
  }

  .modal-container {
    max-width: 95%;
  }

  .modal-header {
    padding: 20px 20px;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 25px 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-cancel,
  .btn-submit {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding: 10px;
  }

  .exhibition-section {
    padding: 30px 20px;
  }

  .exhibition-headline {
    font-size: 1.6rem;
  }

  .exhibition-description {
    font-size: 0.95rem;
  }

  .exhibition-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .form-group input,
  .form-group select {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}


/* Exibition section ends here */

/* Testmonials section starts here */
.testimonials {

  padding: 60px 20px;
  text-align: center;
}
.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #00000095;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  max-width: 310px;
  min-width: 250px;
  position: relative;
  text-align: center;
  width: 100%;
  /* background-color: #CAE8BD; */
  border-radius: 5px;
  border-top: 5px solid #65DB77;
  text-align: center;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #65DB77;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}


/* Demo purposes only */

/* body {
  text-align: center;
} */


/* Testmonials section ends here */

/* Footer */
.footer {
    background: var(--color-white);
    color: var(--color-dark);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    
}

.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-left p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
}

.footer-social a {
    padding: var(--spacing-xs);
    /* background: rgba(0, 0, 0, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* .footer-social a:hover {
    background: var(--color-accent);
} */

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 1001;
}

.whatsapp-float,
.back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
    background: #25D366;
    margin-bottom: var(--spacing-xs);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    background: var(--color-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-tertiary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(152, 168, 248, 0.4);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: var(--spacing-lg);
    }
    
    .stats {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .top-nav-right {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: flex-end;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: var(--spacing-xs);
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .top-nav {
        padding: 0.3rem 0;
    }
    
    .social-icons {
        gap: 0.3rem;
    }
    
    .social-icons a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .email {
        font-size: 0.8rem;
    }
    
    .main-nav {
        padding: var(--spacing-xs) 0;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-menu {
        gap: var(--spacing-xs);
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .slide-text h1 {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .slide-text p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }
    
    .cta-button {
        padding: 0.7rem var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        font-size: 1.2rem;
        padding: 0.7rem;
    }
    
    .carousel-nav.prev {
        left: var(--spacing-sm);
    }
    
    .carousel-nav.next {
        right: var(--spacing-sm);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .product-card {
        padding: var(--spacing-md);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        color: #ffffff;
    }
    
    .stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-left {
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-logo {
        height: 50px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .slide-text h1 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.3rem;
    }
    
    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .carousel-indicators {
        bottom: var(--spacing-md);
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}