  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

header {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    width: 100%;
    height: 80px;
    align-items: center;
    position: relative;
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.aura-text {
    display: flex;
    position: relative;
    height: 40px;
    overflow: visible;
    width: 120px;
}

.letter-a {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(195, 255, 104);
    transform-origin: bottom left;
    animation: aTilt 4s linear infinite forwards;
}

.letter-ura {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    position: absolute;
    left: 26px;
    text-shadow: 0 0 10px rgba(195, 255, 104);
    transform-origin: bottom left;
    animation: uraslide 4s linear infinite forwards;
}

.global-traders {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    margin-top: 5px;
    text-transform: uppercase;
}

@keyframes uraslide {
    0% { opacity: 0; left: 600px; transform: rotate(0deg); }
    70% { opacity: 1; left: 24px; transform: rotate(0deg); }
    90% { left: 24px; transform: rotate(-15deg); }
    100% { left: 26px; transform: rotate(0deg); }
}

@keyframes aTilt {
    0% { transform: rotate(0deg); }
    70% { transform: rotate(0deg); }
    90% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}

/* Navigation Styles */
.navbar {
    color: transparent;
    width: 100%;
    padding: 0 0rem;
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 1000;
}

.nav-container {
   display: flex;
   justify-content: right;
   align-items: center;
    width: 100%;
    height: 80px;
   max-width: 1200px;
    margin: 0;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 2.6rem;
    cursor: pointer;
    padding: 0rem;
    transition: transform 0.3s;
    z-index: 1001;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Main Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
   margin: 0;
   
    gap: 0.5rem;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links li a:hover {
    background: white;
    border-radius: 10px;
    color: #000000;
}

.nav-links li a:active {
    background: white;
    border-radius: 10px;
    color: #000000;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown > .dropdown-toggle {
    padding-right: 1.8rem;
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown .dropdown .dropdown-arrow {
    right: 0.5rem;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    list-style: none;
    z-index: 100;
    padding: 8px 0;
    border: 1px solid #f0f0f0;
    animation: fadeIn 0.2s ease-out;
}

.submenu li {
    position: relative;
    transition: all 0.3s ease;
}

.submenu li a {
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background: #f8f9fa;
    color: #2c7be5;
    border-left: 3px solid #2c7be5;
    padding-left: 17px;
}

.submenu li a img {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #eee;
}

/* Nested Dropdown */
.dropdown .dropdown .submenu {
    left: -100%;
    top: 0;
    margin-left: 0.2rem;
}

/* Desktop Hover Effects */
@media (min-width: 993px) {
    .dropdown:hover > .submenu {
        display: block;
    }
    
    .dropdown:hover > .dropdown-toggle > .dropdown-arrow {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .dropdown .dropdown:hover > .submenu {
        display: block;
    }
}

/* Active State for Click Interaction */
.dropdown.active > .submenu {
    display: block;
}

.dropdown.active > .dropdown-toggle > .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile Styles */
@media (max-width: 992px) {

  .logo-container {
    height: 50px;
    
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  .navbar {
    width: 40%;
  }

  .nav-container {
    display: flex;
    justify-content: right;
  }
    .menu-toggle {
        display: block;
        
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        padding: 70px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
     .dropdown .submenu {
        display: none;
        position: static;
        background: rgba(110, 110, 110, 0.1);
        border: none;
        box-shadow: none;
        border-radius: 4px;
    }
    
    .dropdown .dropdown .submenu {
        left: 0;
        margin-left: 0px;
        border-left: 3px solid rgba(255,255,255,0.1);
    }
    
    .submenu li a {
        color: #000000;
        padding: 10px 15px;
    }
    
    .submenu li a:hover {
        background: white;
        color: #000000;
        border-left: 3px solid rgba(255,255,255,0.3);
    }
    
    .submenu li a img {
        border-color: rgba(255,255,255,0.2);
    }  
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 900;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}


/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Arrow Animation */
.dropdown.active > .dropdown-toggle > .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Hover Effects for Desktop */
@media (min-width: 993px) {
    .dropdown:hover > .dropdown-toggle > .dropdown-arrow {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .submenu li:hover > a {
        background: #f8f9fa;
        color: #2c7be5;
    }
}
  
  /**Hero-Section**/
  
  
  
  /* Slider Styles */
 .slider-container {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin: 0 auto;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Gradient Overlay */
.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.132) 0%, 
    rgba(0,0,0,0.6) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: white;
  padding: 2.5rem;
  max-width: 650px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide-category {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide-title {
  font-size: 2.8rem;
  margin: 0 0 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 7px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.slider-dot.active {
  background-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

@media (max-width: 768px) {

  .slider-container {
    position: relative;
    width: 100%;
    height: 600px;
  }
  
}
  
  
  
          /*About Section*/
  
          :root {
              --primary: #e67e22;
              --secondary: #2c3e50;
              --accent: #e74c3c;
              --light: #f9f9f7;
              --text: #333;
              --text-light: #777;
          }
          
          * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
          }
          
          .about-container-1 {
              max-width: 1600px;
              margin: 0px;
              padding: 0px;
          }
          
          /* Unique Grain Pattern Background */
          .grain-pattern {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M20,20 Q30,10 40,20 T60,20 T80,20" stroke="%23e67e22" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M10,40 Q20,30 30,40 T50,40 T70,40" stroke="%23e67e22" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M25,60 Q35,50 45,60 T65,60 T85,60" stroke="%23e67e22" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
              pointer-events: none;
              z-index: -1;
          }
          
          /* Story Section with Folded Corner Effect */
          .story-section {
              background-color: white;
              padding: 2em;
              border-radius: 8px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.08);
              position: relative;
              overflow: hidden;
              margin-bottom: 60px;
          }
          
          .story-section::before {
              content: '';
              position: absolute;
              top: 0;
              right: 0;
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 0 60px 60px 0;
              border-color: transparent var(--primary) transparent transparent;
          }
          
          .story-section::after {
              content: '';
              position: absolute;
              top: 0;
              right: 0;
              width: 12px;
              height: 12px;
              background: white;
              box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
              transform: rotate(45deg) translate(-50%, -50%);
          }
          
          .section-title {
              text-align: center;
              margin-bottom: 50px;
          }
          
          .section-title h2 {
              font-size: clamp(2rem, 4vw, 2.5rem);
              color: var(--secondary);
              position: relative;
              display: inline-block;
          }
          
          .section-title h2::after {
              content: '';
              position: absolute;
              bottom: -10px;
              left: 50%;
              transform: translateX(-50%);
              width: 60px;
              height: 3px;
              background: var(--primary);
          }
          
          .story-content {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 40px;
              align-items: center;
          }
          
          .story-text p {
              margin-bottom: 25px;
              font-size: 1.1rem;
              color: var(--text-light);
              font-family: 'Lato', sans-serif;
              position: relative;
              padding-left: 20px;
          }
          
          .story-text p::before {
              content: '';
              position: absolute;
              left: 0;
              top: 10px;
              height: 60%;
              width: 3px;
              background: var(--primary);
          }
          
          .highlight {
              color: var(--primary);
              font-weight: 700;
          }
          
          .story-image {
              position: relative;
              height: 400px;
              border-radius: 8px;
              overflow: hidden;
              box-shadow: 15px 15px 0 var(--primary);
          }
          
          .story-image img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              transition: transform 0.5s ease;
          }
          
          .story-image:hover img {
              transform: scale(1.05);
          }
          
          /* Mission Section with Handwritten Effect */
          .mission-section {
              background-color: white;
              padding: 120px;
              border-radius: 8px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.08);
              margin-bottom: 60px;
              position: relative;
              background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10,20 Q15,15 20,20 T30,20 T40,20" stroke="%23e67e22" stroke-width="0.3" fill="none" opacity="0.05"/><path d="M60,40 Q65,35 70,40 T80,40 T90,40" stroke="%23e67e22" stroke-width="0.3" fill="none" opacity="0.05"/><path d="M30,70 Q35,65 40,70 T50,70 T60,70" stroke="%23e67e22" stroke-width="0.3" fill="none" opacity="0.05"/></svg>');
          }
          
          .mission-content {
              max-width: 800px;
              margin: 0 auto;
              text-align: center;
          }
          
          .mission-content h2 {
              font-size: clamp(1.8rem, 3vw, 2.2rem);
              color: var(--secondary);
              margin-bottom: 30px;
              position: relative;
              display: inline-block;
          }
          
          .mission-content h2::after {
              content: '';
              position: absolute;
              bottom: -10px;
              left: 50%;
              transform: translateX(-50%);
              width: 100px;
              height: 2px;
              background: var(--primary);
          }
          
          .mission-content p {
              font-size: 1.2rem;
              color: var(--text-light);
              font-style: italic;
              margin-bottom: 20px;
              position: relative;
          }
          
          .mission-content p::before,
          .mission-content p::after {
              content: '"';
              font-size: 2rem;
              color: var(--primary);
              opacity: 0.3;
              position: absolute;
          }
          
          .mission-content p::before {
              top: -15px;
              left: -20px;
          }
          
          .mission-content p::after {
              bottom: -25px;
              right: -20px;
          }
          
          /* Values Section with Floating Cards */
          .values-section {
              margin-bottom: 60px;
              padding-left: 120px;
              padding-right: 120px;
          }
          
          .values-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 30px;
              margin-top: 50px;
          }
          
          .value-card {
              background: white;
              padding: 40px 30px;
              border-radius: 8px;
              box-shadow: 0 5px 15px rgba(0,0,0,0.05);
              text-align: center;
              transition: all 0.3s ease;
              position: relative;
              overflow: hidden;
          }
          
          .value-card::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 5px;
              background: var(--primary);
              transform: scaleX(0);
              transform-origin: left;
              transition: transform 0.3s ease;
          }
          
          .value-card:hover {
              transform: translateY(-10px);
              box-shadow: 0 15px 30px rgba(0,0,0,0.1);
          }
          
          .value-card:hover::before {
              transform: scaleX(1);
          }
          
          .value-icon {
              font-size: 2.5rem;
              color: var(--primary);
              margin-bottom: 20px;
              transition: all 0.3s ease;
          }
          
          .value-card:hover .value-icon {
              transform: rotate(15deg) scale(1.1);
              color: var(--accent);
          }
          
          .value-card h3 {
              font-size: 1.5rem;
              margin-bottom: 15px;
              color: var(--secondary);
          }
          
          .value-card p {
              color: var(--text-light);
              font-family: 'Lato', sans-serif;
          }
          
          /* Founder Quote with Organic Shape */
          .founder-section {
              background-color: white;
              padding: 60px;
              border-radius: 8px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.08);
              position: relative;
              overflow: hidden;
          }
          
          .founder-section::before {
              content: '';
              position: absolute;
              top: -50px;
              right: -50px;
              width: 150px;
              height: 150px;
              background: var(--primary);
              border-radius: 50%;
              opacity: 0.1;
              z-index: 0;
          }
          
          .founder-section::after {
              content: '';
              position: absolute;
              bottom: -30px;
              left: -30px;
              width: 100px;
              height: 100px;
              background: var(--primary);
              border-radius: 50%;
              opacity: 0.1;
              z-index: 0;
          }
          
          .founder-content {
              position: relative;
              z-index: 1;
              text-align: center;
          }
          
          .founder-quote {
              font-size: clamp(1.2rem, 2.5vw, 1.5rem);
              font-style: italic;
              color: var(--secondary);
              margin-bottom: 20px;
              position: relative;
              padding: 0 20px;
          }
          
          .founder-quote::before {
              content: '';
              position: absolute;
              top: -20px;
              left: 0;
              width: 40px;
              height: 3px;
              background: var(--primary);
          }
          
          .founder-quote::after {
              content: '';
              position: absolute;
              bottom: -20px;
              right: 0;
              width: 40px;
              height: 3px;
              background: var(--primary);
          }
          
          .founder-name {
              font-weight: 700;
              color: var(--primary);
              font-size: 1.2rem;
          }
          
          /* Responsive Adjustments */
          @media (max-width: 992px) {
              .story-content {
                  grid-template-columns: 1fr;
              }
              
              .story-image {
                  height: 300px;
                  order: -1;
              }
              
              .story-section,
              .mission-section,
              .founder-section {
                  padding: 40px;
              }
          }
          
          @media (max-width: 768px) {
              .story-section,
              .mission-section,
              .values-section {
                  padding: 30px;
              }
              
              .story-image {
                  box-shadow: 10px 10px 0 var(--primary);
              }
              
              .value-card {
                  padding: 30px 20px;
              }
          }
          
          @media (max-width: 480px) {
              .story-section,
              .mission-section,
              .founder-section {
                  padding: 25px 20px;
              }
              
              .story-text p::before {
                  height: 80%;
              }
              
              .mission-content p::before,
              .mission-content p::after {
                  display: none;
              }
          }
  
  
  
  
            /**Product-Section**/
/** Base Styles **/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.py-5 {
    padding: 3rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/** Product Section **/
.products-container {
    display: flex;
    gap: 30px;
}

.filter-toggle {
        display: block;
        background: #e67e22;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        cursor: pointer;
        display: none;
    }

.filter-sidebar {
    flex: 0 0 280px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filter-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.filter-reset {
    background: none;
    border: none;
    color: #e67e22;
    cursor: pointer;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background: rgba(230, 126, 34, 0.1);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.category-list li {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.category-list li:hover,
.category-list li.active {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

.category-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/** Products Grid Layout **/
.products-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}



.product-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(odd).animate-visible {
    animation: slideFromLeft 0.6s ease-out forwards;
}

.product-card:nth-child(even).animate-visible {
    animation: slideFromRight 0.6s ease-out forwards;
}

@keyframes slideFromLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/** Product Card Content **/
.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.product-title a {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-rating {
    color: #ffd700;
    margin-top: 10px;
    font-size: 0.9rem;
}



/** Expensive Soon Dropdown Styles **/
.expensive-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    ju
}

.dropdown-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    padding-left: px;
}

.expensive-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.expensive-dropdown.active .expensive-submenu,
.expensive-dropdown:hover .expensive-submenu {
    display: block;
}

.expensive-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 10px 0;
    z-index: 20;
    list-style: none;
    margin-top: 8px;
}

.expensive-submenu li {
    padding: 10px 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.expensive-submenu li:hover {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

/** Responsive Design **/
@media (max-width: 1024px) {
    /* Tablet Styles */
    .products-container {
        flex-direction: column;
    }
    
    .filter-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 30px;
        display: none; /* Hidden by default on tablet/mobile */
    }
    
    .filter-sidebar.active {
        display: block; /* Show when filter button clicked */
    }
    
    .filter-toggle {
        display: block;
        background: #e67e22;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        cursor: pointer;
    }
    
   
}

@media (max-width: 768px) {
    /* Mobile Styles */
    .product-row {
        grid-template-columns: 1fr;
    }
    
    
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .filter-header {
        display: flex;
    }
}

@media (max-width: 576px) {
   
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 15px;
    }
}

/** Animation Styles **/
.animate-slideUp {
    animation: slideUp 0.8s ease-in forwards;
}

.animate-slideLeft {
    animation: slideLeft 0.8s ease-in forwards;
}

.animate-slideRight {
    animation: slideRight 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(70px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-70px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(70px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
    /*Ceo Section*/
  
  
 /* CEO Section Styling */
/* Main Wrapper */
.ceo-main-wrapper {
  background: #f5f7fa;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.ceo-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* CEO Profile Section */
.ceo-profile-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.ceo-profile-image {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ceo-info-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.ceo-name-text {
  color: #2a5a78;
  font-size: 24px;
  margin-bottom: 5px;
}

.ceo-designation-text, .ceo-company-text {
  color: #666;
  margin: 4px 0;
  font-size: 16px;
}

/* CEO Message Section */
.ceo-message-wrapper {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ceo-message-heading {
  font-size: 32px;
  color: #333;
  margin-bottom: 25px;
}

.ceo-message-highlight {
  color: #2a5a78;
  font-weight: 700;
}

.ceo-message-textbox {
  margin-bottom: 20px;
}

.ceo-greeting-text {
  font-weight: 600;
  color: #444;
  margin-bottom: 15px;
}

.ceo-message-paragraph {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.ceo-signature-area {
  text-align: right;
  margin-top: 25px;
}

.ceo-signature-image {
  height: 50px;
}

/* Products Section */
.ceo-products-display {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}

.ceo-products-title {
  font-size: 26px;
  color: #2a5a78;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.ceo-products-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: #e3b04b;
  bottom: -10px;
  left: 25%;
}

.ceo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-left: 220px;
  margin-right: 220px;
}

.ceo-single-product {
  background: #fff;
  padding: 25px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ceo-single-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.ceo-product-iconbox {
  margin-bottom: 15px;
}

.ceo-product-icon {
  font-size: 40px;
  color: #e3b04b;
}

.ceo-product-name {
  color: #333;
  font-size: 18px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ceo-content-container {
      flex-direction: column;
  }
  .ceo-products-grid {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .ceo-profile-image {
      max-width: 280px;
  }
  
  .ceo-message-wrapper {
      padding: 30px;
  }
}
  
  
  /* Gallery Section Styles */
  .gallery-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  aspect-ratio: 1/1;
  opacity: 0;
  will-change: transform, opacity;
  transition: all 0.6s ease-out;
}

/* Laptop/Desktop Animations (3-column layout) */
@media (min-width: 992px) {
  /* First column (left-to-right) */
  .gallery-item:nth-child(3n+1) {
      transform: translateX(-80px);
  }
  
  /* Middle column (fade up) */
  .gallery-item:nth-child(3n+2) {
      transform: translateY(40px);
  }
  
  /* Third column (right-to-left) */
  .gallery-item:nth-child(3n+3) {
      transform: translateX(80px);
  }
}

/* Tablet Animations (2-column layout) */
@media (min-width: 768px) and (max-width: 991px) {
  .gallery-item:nth-child(odd) {
      transform: translateX(-50px);
  }
  .gallery-item:nth-child(even) {
      transform: translateX(50px);
  }
}

/* Mobile Animations (1-column layout) */
@media (max-width: 767px) {
  .gallery-item {
      transform: translateY(40px);
  }
}

/* Visible state - common for all devices */
.gallery-item.animate-visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Staggered animation delays */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }
.gallery-item:nth-child(5) { transition-delay: 0.5s; }
.gallery-item:nth-child(6) { transition-delay: 0.6s; }
.gallery-item:nth-child(7) { transition-delay: 0.7s; }
.gallery-item:nth-child(8) { transition-delay: 0.8s; }
.gallery-item:nth-child(9) { transition-delay: 0.9s; }

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-section {
      padding: 60px 15px;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-overlay {
      transform: translateY(0);
      padding: 15px;
  }
  
  .gallery-overlay h3 {
      font-size: 1.1rem;
  }
  
  .gallery-overlay p {
      font-size: 0.8rem;
  }
}
  
  
  
    /*Profile*/

    :root {
      --primary-color: #1a1a2e;
      --secondary-color: #16213e;
      --accent-color: #ff6b6b;
      --text-color: #333;
      --light-text: #fff;
    }
   

    .profile-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .profile-heading {
      text-align: center;
      color: black;
      font-size: 36px;
      margin-bottom: 60px;
      margin-top: 60px;
    }

    .profile-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      padding: 25px;
      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
      max-width: 500px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .profile-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }
    
    .profile-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    
    .profile-card:hover::before {
      opacity: 1;
    }
    
    .profile-card:hover .profile-name,
    .profile-card:hover .last-name,
    .profile-card:hover .math,
    .profile-card:hover .ura,
    .profile-card:hover .normal-name,
    .profile-card:hover .profile-desc {
      color: var(--light-text);
    }

    .profile-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 12px;
      margin-right: 25px;
      border: 3px solid rgba(255,255,255,0.2);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    
    .profile-card:hover .profile-img {
      transform: scale(1.05);
      border-color: rgba(255,255,255,0.4);
    }

    .profile-info {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .profile-name-container {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
    }

    /* For Mathura Pandey - Animated */
    .first-name-container {
      display: flex;
      position: relative;
      height: 36px;
    }

    .math-text {
      display: flex;
      position: relative;
      
    }

    .math {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-color);
      position: reletive;
      transform-origin: bottom left;
      animation: mathTilt 4s ease infinite;
    }

    .ura {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-color);
      position: absolute;
      left: 0px;
      transform-origin: bottom left;
      text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 0 #999,
        5px 5px 0 #888,
        6px 6px 0 #777;
      animation: uramSlide 4s ease infinite;
    }

    .last-name {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-color);
      margin-left: 10px;
    }

    /* Animations */
    @keyframes uramSlide {
      0% {
        opacity: 0;
        left: 100px;
        transform: rotate(0deg);
      }
      70% {
        opacity: 1;
        left: 0px;
        transform: rotate(0deg);
      }
      90% {
        left: 0px;
        transform: rotate(-12deg);
      }
      100% {
        left: 0px;
        transform: rotate(0deg);
      }
    }

    @keyframes mathTilt {
      0% {
        transform: rotate(0deg);
      }
      70% {
        transform: rotate(0deg);
      }
      90% {
        transform: rotate(-12deg);
      }
      100% {
        transform: rotate(0deg);
      }
    }

    /* For Ranjana Pandey - Static */
    .normal-name {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-color);
      transition: color 0.3s ease;
    }

    /* 3D Effect */
    .math, .ura, .last-name, .normal-name {
      position: relative;
    }
    
    .math::after, .ura::after, .last-name::after, .normal-name::after {
      content: attr(data-text);
      position: absolute;
      top: 2px;
      left: 2px;
      color: rgba(0,0,0,0.3);
      z-index: -1;
      transform: translateZ(-5px);
    }

    .profile-desc {
      font-size: 16px;
      color: var(--text-color);
      margin-top: 8px;
      opacity: 0.8;
      transition: color 0.3s ease;
      position: relative;
    }
    
    .profile-desc::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent-color);
      transition: width 0.3s ease;
    }
    
    .profile-card:hover .profile-desc::after {
      width: 80px;
    }

    

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .profile-img {
        margin: 0 0 20px 0;
        width: 300px;
        height: 300px;
      }

      .profile-info {
        align-items: center;
      }
      
      .profile-name-container {
        justify-content: center;
      }
      
      .ura {
        position: relative;
        left: auto;
        animation: uraSlideMobile 4s ease infinite;
      }
      
      .last-name {
        margin-left: 5px;
      }
      
      @keyframes uraSlideMobile {
        0% {
          opacity: 0;
          transform: translateX(30px) rotate(0deg);
        }
        70% {
          opacity: 1;
          transform: translateX(0) rotate(0deg);
        }
        90% {
          transform: rotate(-15deg);
        }
        100% {
          transform: rotate(0deg);
        }
      }
    }

    @media (max-width: 480px) {
      .math, .ura, .last-name, .normal-name {
        font-size: 24px;
      }
      
      .profile-desc {
        font-size: 14px;
      }
    }
  
  /*Testimonial*/
  
    :root {
      --primary: #e67e22;
      --secondary: #2c3e50;
      --accent: #e74c3c;
      --light: #f9f9f7;
      --text: #333;
      --text-light: #777;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  
  
  .testimonial-container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      position: relative;
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: var(--secondary);
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
  }
  
  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
  }
  
  .section-header p {
      max-width: 700px;
      margin: 20px auto 0;
      color: var(--text-light);
  }
  
  /* Slider Container */
  .testimonial-slider {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      max-width: 1000px;
  }
  
  .slider-track {
      display: flex;
      transition: transform 0.5s ease;
  }
  
  /* Testimonial Cards */
  .testimonial-card {
      background: white;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      min-width: 100%;
      position: relative;
      overflow: hidden;
  }
  
  .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: var(--primary);
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.1;
      z-index: 0;
  }
  
  .testimonial-content {
      position: relative;
      z-index: 1;
  }
  
  .testimonial-text {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 25px;
      position: relative;
      padding-left: 30px;
  }
  
  .testimonial-text::before {
      content: '"';
      position: absolute;
      top: -15px;
      left: 0;
      font-size: 3rem;
      color: var(--primary);
      opacity: 0.2;
      font-family: Georgia, serif;
      line-height: 1;
  }
  
  .testimonial-author {
      display: flex;
      align-items: center;
  }
  
  .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
      border: 3px solid var(--primary);
      padding: 3px;
  }
  
  .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
  }
  
  .author-info h4 {
      font-size: 1.1rem;
      color: var(--secondary);
      margin-bottom: 5px;
  }
  
  .author-info p {
      font-size: 0.9rem;
      color: var(--primary);
      font-style: italic;
  }
  
  .rating {
      margin: 15px 0;
      color: var(--primary);
  }
  
  .rating i {
      margin-right: 3px;
  }
  
  /* Slider Navigation */
  .slider-nav {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      gap: 10px;
  }
  
  .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .nav-dot.active {
      background: var(--primary);
      transform: scale(1.2);
  }
  
  /* Slider Arrows */
  .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      z-index: 10;
      transition: all 0.3s ease;
  }
  
  .slider-arrow:hover {
      background: var(--primary);
      color: white;
  }
  
  .arrow-left {
      left: -50px;
  }
  
  .arrow-right {
      right: -50px;
  }
  
   .hero {
      position: relative;
      background: url('https://images.pexels.com/photos/39347/tea-farmhouse-hand-fresh-39347.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /* Dark overlay */
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: bold;
    }

    .hero-content p {
      font-size: 1.25rem;
      margin: 20px 0;
    }

    .hero-content .btn {
      margin: 10px;
      padding: 12px 30px;
      font-size: 1rem;
    }
    
.hero-haldi {
      position: relative;
      background: url('https://images.pexels.com/photos/7988009/pexels-photo-7988009.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-haldi::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
    }

    .hero-haldi-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-haldi-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
    }

    .hero-content p {
      font-size: 1.25rem;
      margin: 20px 0;
    }

    .hero-content .btn {
      margin: 10px;
      padding: 12px 30px;
      font-size: 1rem;
    }
    
.hero-makahana {
      position: relative;
      background: url('../img/makhana.jpeg') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-makahana::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
    }

    .hero-makahana-content {
      z-index: 2;
      text-align: center;
    }

    .hero-makahana-content h4 {
      
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }

.hero-chaipatti {
      position: relative;
      background: url('https://images.unsplash.com/photo-1491497895121-1334fc14d8c9?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-chaipatti::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-chaipatti-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-chaipatti-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }

.hero-aloo {
      position: relative;
      background: url('https://images7.alphacoders.com/383/thumb-1920-383749.jpg') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-aloo::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-aloo-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-aloo-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }


.hero-mushroom {
      position: relative;
      background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS7ZqXGlp5AORynAc-_WO-0Bt-Z2SwVzb5lRg&s') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-mushroom::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-mushroom-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-mushroom-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }
    
.hero-tulsi {
      position: relative;
      background: url('img/holy-tulsi.jpg');
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-tulsi::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-tulsi-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-tulsi-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }

.chatbox {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 200px;
    height: 400px;
    background-color: #fff;
    font-family: 'Lato', sans-serif;

    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);

    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    flex-direction: column;
}

.chatbox--tray {
    bottom: -350px;
}

.chatbox--closed {
    bottom: -400px;
}

.chatbox .form-control:focus {
    border-color: #1f2836;
}

.chatbox__title,
.chatbox__body {
    border-bottom: none;
}

.chatbox__title {
    min-height: 50px;
    padding-right: 10px;
    background-color: #1f2836;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;

    display: -webkit-flex;
    display: flex;

    -webkit-align-items: center;
    align-items: center;
}

.chatbox__title h5 {
    height: 50px;
    margin: 0 0 0 15px;
    line-height: 50px;
    position: relative;
    padding-left: 20px;

    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.chatbox__title h5 a {
    color: #fff;
    max-width: 195px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatbox__title{
}

.chatbox__title__tray,
.chatbox__title__close {
    width: 24px;
    height: 24px;
    outline: 0;
    border: none;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;

    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

.chatbox__title__tray:hover,
.chatbox__title__close:hover {
    opacity: 1;
}

.chatbox__title__tray span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-bottom: 2px solid #fff
}

.chatbox__title__close svg {
    vertical-align: middle;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2px;
}

.chatbox__body,
.chatbox__credentials {
    padding: 15px;
    border-top: 0;
    background-color: #f5f5f5;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.chatbox__credentials {
    display: none;
}

.chatbox__credentials .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.chatbox__body {
    overflow-y: auto;
}

.chatbox__body__message {
    position: relative;
}

.chatbox__body__message p {
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px rgba(100, 100, 100, 0.1);
    box-shadow: 1px 1px rgba(100, 100, 100, 0.1);
}

.chatbox__body__message img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #fcfcfc;
    position: absolute;
    top: 15px;
}

.chatbox__body__message--left p {
    margin-left: 15px;
    padding-left: 30px;
    text-align: left;
}

.chatbox__body__message--left img {
    left: -5px;
}

.chatbox__body__message--right p {
    margin-right: 15px;
    padding-right: 30px;
    text-align: right;
}

.chatbox__body__message--right img {
    right: -5px;
}

.chatbox__message {
    padding: 15px;
    min-height: 50px;
    outline: 0;
    resize: none;
    border: none;
    font-size: 12px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #fefefe;
}

.chatbox--empty {
    height: 262px;
}

.chatbox--empty.chatbox--tray {
    bottom: -212px;
}

.chatbox--empty.chatbox--closed {
    bottom: -262px;
}

.chatbox--empty .chatbox__body,
.chatbox--empty .chatbox__message {
    display: none;
}

.chatbox--empty .chatbox__credentials {
    display: block;
}

.w-99934{
    padding: 2em;
}

.w-9994{
   border: 2px solid #2a473d;
   padding: 1em 1em;
}




.blink_me {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.w-0099 p{
    line-height: 36px;
}


span.li {
    display: list-item; 
    margin-left: 2em;
    
}
  /* Responsive Adjustments */
  @media (max-width: 900px) {
      .slider-arrow {
          width: 35px;
          height: 35px;
      }
      
      .arrow-left {
          left: -20px;
      }
      
      .arrow-right {
          right: -20px;
      }
  }
  
  @media (max-width: 768px) {
      .testimonial-card {
          padding: 30px 25px;
      }
      
      .testimonial-text {
          padding-left: 25px;
      }
      
      .slider-arrow {
          width: 30px;
          height: 30px;
          font-size: 0.8rem;
      }
  }
  
  @media (max-width: 480px) {
      .testimonial-card {
          padding: 25px 20px;
      }
      
      .testimonial-text::before {
          font-size: 2.5rem;
          top: -10px;
      }
      
      .author-avatar {
          width: 50px;
          height: 50px;
      }
      
      .slider-arrow {
          display: none;
      }
  }
  
  
  
  /*Contact*/
  
  /* Unique Contact Section Styles */
  .aura-contact-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
      padding: 80px 0;
      font-family: 'Poppins', sans-serif;
    }
    
    .aura-contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .aura-section-heading {
      text-align: center;
      font-size: 2.5rem;
      color: #1a1a2e;
      margin-bottom: 60px;
      position: relative;
    }
    
    .aura-section-heading::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #ff6b6b, #1a1a2e);
    }
    
    .aura-contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }
    
    /* Contact Info Styles */
    .aura-contact-info {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    .aura-info-card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      display: flex;
      align-items: flex-start;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .aura-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .aura-info-icon {
      margin-right: 20px;
      padding-top: 5px;
    }
    
    .aura-info-content {
      flex: 1;
    }
    
    .aura-info-title {
      font-size: 1.2rem;
      color: #1a1a2e;
      margin-bottom: 10px;
      font-weight: 600;
    }
    
    .aura-info-text {
      color: #555;
      line-height: 1.6;
      margin-bottom: 5px;
    }
    
    /* Contact Form Styles */
    .aura-contact-form {
      background: #f2f1f2;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .aura-form-group {
      margin-bottom: 20px;
    }
    
    .aura-form-input,
    .aura-form-textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .aura-form-input:focus,
    .aura-form-textarea:focus {
      border-color: #ff6b6b;
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    }
    
    .aura-form-textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .aura-submit-btn {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
    }
    
    .aura-submit-btn svg {
      margin-left: 10px;
      transition: transform 0.3s;
    }
    
    .aura-submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .aura-submit-btn:hover svg {
      transform: translateX(5px);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .aura-contact-section {
        padding: 60px 0;
      }
      
      .aura-section-heading {
        font-size: 2rem;
        margin-bottom: 40px;
      }
      
      .aura-contact-grid {
        grid-template-columns: 1fr;
      }
      
      .aura-contact-form {
        padding: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .aura-info-card {
        padding: 20px;
      }
      
      .aura-info-icon {
        margin-right: 15px;
      }
      
      .aura-section-heading {
        font-size: 1.8rem;
      }
    }
  
  /*Animation*/
  
  /* Modified CSS */
/* Base Animation Styles */


/* Animation Definitions */
/* Base Styles - Prevents Layout Shifting */
.animate-left,
.animate-right,
.animate-up,
.animate-down,
.animate-fade {
  opacity: 0;
  will-change: transform, opacity; /* Optimizes performance */
  transform-style: preserve-3d; /* Prevents layout shifts */
  backface-visibility: hidden; /* Fixes flickering */
}

/* Animation Classes - Now using transitions instead of keyframes */
.animate-left {
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-right {
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-up {
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-down {
  transform: translateY(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade {
  transition: opacity 0.6s ease-out;
}

/* Active State - Applied via JavaScript */
.animate-left.active,
.animate-right.active,
.animate-up.active,
.animate-down.active,
.animate-fade.active {
  opacity: 1;
  transform: translate(0);
}


  /*Footer*/
  
  /* Unique Footer Styles */
  .aura-footer {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: #ecf0f1;
      padding: 60px 0 0;
      font-family: 'Poppins', sans-serif;
    }
    
    .aura-footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .aura-footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    
    /* Company Info */
    .aura-footer-company {
      grid-column: 1 / -1;
    }
    
    .aura-footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .aura-logo-img {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .aura-footer-brand {
      display: flex;
      flex-direction: column;
    }
    
    .aura-footer-brandname {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
    }
    
    .aura-footer-tagline {
      font-size: 12px;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
    }
    
    .aura-footer-about {
      color: #bdc3c7;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .aura-footer-social {
      display: flex;
      gap: 15px;
    }
    
    .aura-social-link {
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    
    .aura-social-link:hover {
      background: #ff6b6b;
      transform: translateY(-3px);
    }
    
    /* Footer Columns */
    .aura-footer-heading {
      font-size: 18px;
      color: #f39c12;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .aura-footer-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background: #f39c12;
    }
    
    .aura-footer-list {
      list-style: none;
    }
    
    .aura-footer-link {
      color: #bdc3c7;
      text-decoration: none;
      display: block;
      padding: 8px 0;
      transition: all 0.3s;
    }
    
    .aura-footer-link:hover {
      color: #f39c12;
      padding-left: 5px;
    }
    
    /* Contact Info */
    .aura-contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .aura-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #bdc3c7;
    }
    
    .aura-contact-item svg {
      flex-shrink: 0;
    }
    
    /* Footer Bottom */
    .aura-footer-bottom {
      border-top: 1px solid #34495e;
      padding: 25px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .aura-footer-copyright {
      color: #7f8c8d;
      font-size: 14px;
      text-align: center;
    }
    
    .aura-footer-legal {
      display: flex;
      gap: 20px;
    }
    
    .aura-legal-link {
      color: #7f8c8d;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    
    .aura-legal-link:hover {
      color: #f39c12;
    }
    
    /* Responsive Design */
    @media (min-width: 768px) {
      .aura-footer-company {
        grid-column: auto;
      }
      
      .aura-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }
    
    @media (max-width: 480px) {
      .aura-footer-grid {
        grid-template-columns: 1fr;
      }
      
      .aura-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
      }
    }         

  
  /**Hero-Section**/
  
  
  
  /* Slider Styles */
 .slider-container {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin: 0 auto;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Gradient Overlay */
.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.132) 0%, 
    rgba(0,0,0,0.6) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: white;
  padding: 2.5rem;
  max-width: 650px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide-category {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide-title {
  font-size: 2.8rem;
  margin: 0 0 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 7px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.slider-dot.active {
  background-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

@media (max-width: 768px) {

  .slider-container {
    position: relative;
    width: 100%;
    height: 600px;
  }
  
}
  
  
  
          /*About Section*/
  
          :root {
              --primary: #e67e22;
              --secondary: #2c3e50;
              --accent: #e74c3c;
              --light: #f9f9f7;
              --text: #333;
              --text-light: #777;
          }
          
          * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
          }
          
          .about-container-1 {
              max-width: 1600px;
              margin: 0px;
              padding: 0px;
          }
          
          /* Unique Grain Pattern Background */
          .grain-pattern {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M20,20 Q30,10 40,20 T60,20 T80,20" stroke="%23e67e22" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M10,40 Q20,30 30,40 T50,40 T70,40" stroke="%23e67e22" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M25,60 Q35,50 45,60 T65,60 T85,60" stroke="%23e67e22" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
              pointer-events: none;
              z-index: -1;
          }
          
          /* Story Section with Folded Corner Effect */
          .story-section {
              background-color: white;
              padding: 2em;
              border-radius: 8px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.08);
              position: relative;
              overflow: hidden;
              margin-bottom: 60px;
          }
          
          .story-section::before {
              content: '';
              position: absolute;
              top: 0;
              right: 0;
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 0 60px 60px 0;
              border-color: transparent var(--primary) transparent transparent;
          }
          
          .story-section::after {
              content: '';
              position: absolute;
              top: 0;
              right: 0;
              width: 12px;
              height: 12px;
              background: white;
              box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
              transform: rotate(45deg) translate(-50%, -50%);
          }
          
          .section-title {
              text-align: center;
              margin-bottom: 50px;
          }
          
          .section-title h2 {
              font-size: clamp(2rem, 4vw, 2.5rem);
              color: var(--secondary);
              position: relative;
              display: inline-block;
          }
          
          .section-title h2::after {
              content: '';
              position: absolute;
              bottom: -10px;
              left: 50%;
              transform: translateX(-50%);
              width: 60px;
              height: 3px;
              background: var(--primary);
          }
          
          .story-content {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 40px;
              align-items: center;
          }
          
          .story-text p {
              margin-bottom: 25px;
              font-size: 1.1rem;
              color: var(--text-light);
              font-family: 'Lato', sans-serif;
              position: relative;
              padding-left: 20px;
          }
          
          .story-text p::before {
              content: '';
              position: absolute;
              left: 0;
              top: 10px;
              height: 60%;
              width: 3px;
              background: var(--primary);
          }
          
          .highlight {
              color: var(--primary);
              font-weight: 700;
          }
          
          .story-image {
              position: relative;
              height: 400px;
              border-radius: 8px;
              overflow: hidden;
              box-shadow: 15px 15px 0 var(--primary);
          }
          
          .story-image img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              transition: transform 0.5s ease;
          }
          
          .story-image:hover img {
              transform: scale(1.05);
          }
          
          /* Mission Section with Handwritten Effect */
          .mission-section {
              background-color: white;
              padding: 120px;
              border-radius: 8px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.08);
              margin-bottom: 60px;
              position: relative;
              background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10,20 Q15,15 20,20 T30,20 T40,20" stroke="%23e67e22" stroke-width="0.3" fill="none" opacity="0.05"/><path d="M60,40 Q65,35 70,40 T80,40 T90,40" stroke="%23e67e22" stroke-width="0.3" fill="none" opacity="0.05"/><path d="M30,70 Q35,65 40,70 T50,70 T60,70" stroke="%23e67e22" stroke-width="0.3" fill="none" opacity="0.05"/></svg>');
          }
          
          .mission-content {
              max-width: 800px;
              margin: 0 auto;
              text-align: center;
          }
          
          .mission-content h2 {
              font-size: clamp(1.8rem, 3vw, 2.2rem);
              color: var(--secondary);
              margin-bottom: 30px;
              position: relative;
              display: inline-block;
          }
          
          .mission-content h2::after {
              content: '';
              position: absolute;
              bottom: -10px;
              left: 50%;
              transform: translateX(-50%);
              width: 100px;
              height: 2px;
              background: var(--primary);
          }
          
          .mission-content p {
              font-size: 1.2rem;
              color: var(--text-light);
              font-style: italic;
              margin-bottom: 20px;
              position: relative;
          }
          
          .mission-content p::before,
          .mission-content p::after {
              content: '"';
              font-size: 2rem;
              color: var(--primary);
              opacity: 0.3;
              position: absolute;
          }
          
          .mission-content p::before {
              top: -15px;
              left: -20px;
          }
          
          .mission-content p::after {
              bottom: -25px;
              right: -20px;
          }
          
          /* Values Section with Floating Cards */
          .values-section {
              margin-bottom: 60px;
              padding-left: 120px;
              padding-right: 120px;
          }
          
          .values-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 30px;
              margin-top: 50px;
          }
          
          .value-card {
              background: white;
              padding: 40px 30px;
              border-radius: 8px;
              box-shadow: 0 5px 15px rgba(0,0,0,0.05);
              text-align: center;
              transition: all 0.3s ease;
              position: relative;
              overflow: hidden;
          }
          
          .value-card::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 5px;
              background: var(--primary);
              transform: scaleX(0);
              transform-origin: left;
              transition: transform 0.3s ease;
          }
          
          .value-card:hover {
              transform: translateY(-10px);
              box-shadow: 0 15px 30px rgba(0,0,0,0.1);
          }
          
          .value-card:hover::before {
              transform: scaleX(1);
          }
          
          .value-icon {
              font-size: 2.5rem;
              color: var(--primary);
              margin-bottom: 20px;
              transition: all 0.3s ease;
          }
          
          .value-card:hover .value-icon {
              transform: rotate(15deg) scale(1.1);
              color: var(--accent);
          }
          
          .value-card h3 {
              font-size: 1.5rem;
              margin-bottom: 15px;
              color: var(--secondary);
          }
          
          .value-card p {
              color: var(--text-light);
              font-family: 'Lato', sans-serif;
          }
          
          /* Founder Quote with Organic Shape */
          .founder-section {
              background-color: white;
              padding: 60px;
              border-radius: 8px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.08);
              position: relative;
              overflow: hidden;
          }
          
          .founder-section::before {
              content: '';
              position: absolute;
              top: -50px;
              right: -50px;
              width: 150px;
              height: 150px;
              background: var(--primary);
              border-radius: 50%;
              opacity: 0.1;
              z-index: 0;
          }
          
          .founder-section::after {
              content: '';
              position: absolute;
              bottom: -30px;
              left: -30px;
              width: 100px;
              height: 100px;
              background: var(--primary);
              border-radius: 50%;
              opacity: 0.1;
              z-index: 0;
          }
          
          .founder-content {
              position: relative;
              z-index: 1;
              text-align: center;
          }
          
          .founder-quote {
              font-size: clamp(1.2rem, 2.5vw, 1.5rem);
              font-style: italic;
              color: var(--secondary);
              margin-bottom: 20px;
              position: relative;
              padding: 0 20px;
          }
          
          .founder-quote::before {
              content: '';
              position: absolute;
              top: -20px;
              left: 0;
              width: 40px;
              height: 3px;
              background: var(--primary);
          }
          
          .founder-quote::after {
              content: '';
              position: absolute;
              bottom: -20px;
              right: 0;
              width: 40px;
              height: 3px;
              background: var(--primary);
          }
          
          .founder-name {
              font-weight: 700;
              color: var(--primary);
              font-size: 1.2rem;
          }
          
          /* Responsive Adjustments */
          @media (max-width: 992px) {
              .story-content {
                  grid-template-columns: 1fr;
              }
              
              .story-image {
                  height: 300px;
                  order: -1;
              }
              
              .story-section,
              .mission-section,
              .founder-section {
                  padding: 40px;
              }
          }
          
          @media (max-width: 768px) {
              .story-section,
              .mission-section,
              .values-section {
                  padding: 30px;
              }
              
              .story-image {
                  box-shadow: 10px 10px 0 var(--primary);
              }
              
              .value-card {
                  padding: 30px 20px;
              }
          }
          
          @media (max-width: 480px) {
              .story-section,
              .mission-section,
              .founder-section {
                  padding: 25px 20px;
              }
              
              .story-text p::before {
                  height: 80%;
              }
              
              .mission-content p::before,
              .mission-content p::after {
                  display: none;
              }
          }
  
  
  
  
          /**Product-Section**/
/** Base Styles **/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.py-5 {
    padding: 3rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/** Product Section **/
.products-container {
    display: flex;
    gap: 30px;
}

.filter-sidebar {
    flex: 0 0 280px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filter-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.filter-reset {
    background: none;
    border: none;
    color: #e67e22;
    cursor: pointer;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background: rgba(230, 126, 34, 0.1);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.category-list li {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.category-list li:hover,
.category-list li.active {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

.category-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/** Products Grid Layout **/
.products-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(odd).animate-visible {
    animation: slideFromLeft 0.6s ease-out forwards;
}

.product-card:nth-child(even).animate-visible {
    animation: slideFromRight 0.6s ease-out forwards;
}

@keyframes slideFromLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/** Product Card Content **/
.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-rating {
    color: #ffd700;
    margin-top: 10px;
    font-size: 0.9rem;
}

/** Expensive Soon Dropdown Styles **/
.expensive-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
}

.dropdown-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    padding-left: 10px;
}

.expensive-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.expensive-dropdown.active .expensive-submenu,
.expensive-dropdown:hover .expensive-submenu {
    display: block;
}

.expensive-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 10px 0;
    z-index: 20;
    list-style: none;
    margin-top: 8px;
}

.expensive-submenu li {
    padding: 10px 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.expensive-submenu li:hover {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

/** Responsive Design **/
@media (max-width: 1024px) {
    /* Tablet Styles */
    .products-container {
        flex-direction: column;
    }
    
    .filter-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 30px;
        display: none; /* Hidden by default on tablet/mobile */
    }
    
    .filter-sidebar.active {
        display: block; /* Show when filter button clicked */
    }
    
    .filter-toggle {
        display: block;
        background: #e67e22;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        cursor: pointer;
    }
    
   
}

@media (max-width: 768px) {
    /* Mobile Styles */
    .product-row {
        grid-template-columns: 1fr;
    }
    
    
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .filter-header {
        display: flex;
    }
}

@media (max-width: 576px) {
   
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 15px;
    }
}

/** Animation Styles **/
.animate-slideUp {
    animation: slideUp 0.8s ease-in forwards;
}

.animate-slideLeft {
    animation: slideLeft 0.8s ease-in forwards;
}

.animate-slideRight {
    animation: slideRight 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(70px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-70px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(70px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
    /*Ceo Section*/
  
  
 /* CEO Section Styling */
/* Main Wrapper */
.ceo-main-wrapper {
  background: #f5f7fa;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.ceo-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* CEO Profile Section */
.ceo-profile-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.ceo-profile-image {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ceo-info-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.ceo-name-text {
  color: #2a5a78;
  font-size: 24px;
  margin-bottom: 5px;
}

.ceo-designation-text, .ceo-company-text {
  color: #666;
  margin: 4px 0;
  font-size: 16px;
}

/* CEO Message Section */
.ceo-message-wrapper {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ceo-message-heading {
  font-size: 32px;
  color: #333;
  margin-bottom: 25px;
}

.ceo-message-highlight {
  color: #2a5a78;
  font-weight: 700;
}

.ceo-message-textbox {
  margin-bottom: 20px;
}

.ceo-greeting-text {
  font-weight: 600;
  color: #444;
  margin-bottom: 15px;
}

.ceo-message-paragraph {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.ceo-signature-area {
  text-align: right;
  margin-top: 25px;
}

.ceo-signature-image {
  height: 50px;
}

/* Products Section */
.ceo-products-display {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}

.ceo-products-title {
  font-size: 26px;
  color: #2a5a78;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.ceo-products-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: #e3b04b;
  bottom: -10px;
  left: 25%;
}

.ceo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-left: 220px;
  margin-right: 220px;
}

.ceo-single-product {
  background: #fff;
  padding: 25px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ceo-single-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.ceo-product-iconbox {
  margin-bottom: 15px;
}

.ceo-product-icon {
  font-size: 40px;
  color: #e3b04b;
}

.ceo-product-name {
  color: #333;
  font-size: 18px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ceo-content-container {
      flex-direction: column;
  }
  .ceo-products-grid {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .ceo-profile-image {
      max-width: 280px;
  }
  
  .ceo-message-wrapper {
      padding: 30px;
  }
}
  
  
  /* Gallery Section Styles */
  .gallery-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  aspect-ratio: 1/1;
  opacity: 0;
  will-change: transform, opacity;
  transition: all 0.6s ease-out;
}

/* Laptop/Desktop Animations (3-column layout) */
@media (min-width: 992px) {
  /* First column (left-to-right) */
  .gallery-item:nth-child(3n+1) {
      transform: translateX(-80px);
  }
  
  /* Middle column (fade up) */
  .gallery-item:nth-child(3n+2) {
      transform: translateY(40px);
  }
  
  /* Third column (right-to-left) */
  .gallery-item:nth-child(3n+3) {
      transform: translateX(80px);
  }
}

/* Tablet Animations (2-column layout) */
@media (min-width: 768px) and (max-width: 991px) {
  .gallery-item:nth-child(odd) {
      transform: translateX(-50px);
  }
  .gallery-item:nth-child(even) {
      transform: translateX(50px);
  }
}

/* Mobile Animations (1-column layout) */
@media (max-width: 767px) {
  .gallery-item {
      transform: translateY(40px);
  }
}

/* Visible state - common for all devices */
.gallery-item.animate-visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Staggered animation delays */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }
.gallery-item:nth-child(5) { transition-delay: 0.5s; }
.gallery-item:nth-child(6) { transition-delay: 0.6s; }
.gallery-item:nth-child(7) { transition-delay: 0.7s; }
.gallery-item:nth-child(8) { transition-delay: 0.8s; }
.gallery-item:nth-child(9) { transition-delay: 0.9s; }

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-section {
      padding: 60px 15px;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-overlay {
      transform: translateY(0);
      padding: 15px;
  }
  
  .gallery-overlay h3 {
      font-size: 1.1rem;
  }
  
  .gallery-overlay p {
      font-size: 0.8rem;
  }
}
  
  
  
    /*Profile*/

    :root {
      --primary-color: #1a1a2e;
      --secondary-color: #16213e;
      --accent-color: #ff6b6b;
      --text-color: #333;
      --light-text: #fff;
    }
   

    .profile-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .profile-heading {
      text-align: center;
      color: black;
      font-size: 36px;
      margin-bottom: 60px;
      margin-top: 60px;
    }

    .profile-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      padding: 25px;
      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
      max-width: 500px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .profile-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }
    
    .profile-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    
    .profile-card:hover::before {
      opacity: 1;
    }
    
    .profile-card:hover .profile-name,
    .profile-card:hover .last-name,
    .profile-card:hover .math,
    .profile-card:hover .ura,
    .profile-card:hover .normal-name,
    .profile-card:hover .profile-desc {
      color: var(--light-text);
    }

    .profile-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 12px;
      margin-right: 25px;
      border: 3px solid rgba(255,255,255,0.2);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    
    .profile-card:hover .profile-img {
      transform: scale(1.05);
      border-color: rgba(255,255,255,0.4);
    }

    .profile-info {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .profile-name-container {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
    }

    /* For Mathura Pandey - Animated */
    .first-name-container {
      display: flex;
      position: relative;
      height: 36px;
    }

    .math-text {
      display: flex;
      position: relative;
      
    }

    .math {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-color);
      position: reletive;
      transform-origin: bottom left;
      animation: mathTilt 4s ease infinite;
    }

    .ura {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-color);
      position: absolute;
      left: 0px;
      transform-origin: bottom left;
      text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 0 #999,
        5px 5px 0 #888,
        6px 6px 0 #777;
      animation: uramSlide 4s ease infinite;
    }

    .last-name {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-color);
      margin-left: 10px;
    }

    /* Animations */
    @keyframes uramSlide {
      0% {
        opacity: 0;
        left: 100px;
        transform: rotate(0deg);
      }
      70% {
        opacity: 1;
        left: 0px;
        transform: rotate(0deg);
      }
      90% {
        left: 0px;
        transform: rotate(-12deg);
      }
      100% {
        left: 0px;
        transform: rotate(0deg);
      }
    }

    @keyframes mathTilt {
      0% {
        transform: rotate(0deg);
      }
      70% {
        transform: rotate(0deg);
      }
      90% {
        transform: rotate(-12deg);
      }
      100% {
        transform: rotate(0deg);
      }
    }

    /* For Ranjana Pandey - Static */
    .normal-name {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-color);
      transition: color 0.3s ease;
    }

    /* 3D Effect */
    .math, .ura, .last-name, .normal-name {
      position: relative;
    }
    
    .math::after, .ura::after, .last-name::after, .normal-name::after {
      content: attr(data-text);
      position: absolute;
      top: 2px;
      left: 2px;
      color: rgba(0,0,0,0.3);
      z-index: -1;
      transform: translateZ(-5px);
    }

    .profile-desc {
      font-size: 16px;
      color: var(--text-color);
      margin-top: 8px;
      opacity: 0.8;
      transition: color 0.3s ease;
      position: relative;
    }
    
    .profile-desc::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent-color);
      transition: width 0.3s ease;
    }
    
    .profile-card:hover .profile-desc::after {
      width: 80px;
    }

    

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .profile-img {
        margin: 0 0 20px 0;
        width: 300px;
        height: 300px;
      }

      .profile-info {
        align-items: center;
      }
      
      .profile-name-container {
        justify-content: center;
      }
      
      .ura {
        position: relative;
        left: auto;
        animation: uraSlideMobile 4s ease infinite;
      }
      
      .last-name {
        margin-left: 5px;
      }
      
      @keyframes uraSlideMobile {
        0% {
          opacity: 0;
          transform: translateX(30px) rotate(0deg);
        }
        70% {
          opacity: 1;
          transform: translateX(0) rotate(0deg);
        }
        90% {
          transform: rotate(-15deg);
        }
        100% {
          transform: rotate(0deg);
        }
      }
    }

    @media (max-width: 480px) {
      .math, .ura, .last-name, .normal-name {
        font-size: 24px;
      }
      
      .profile-desc {
        font-size: 14px;
      }
    }
  
  /*Testimonial*/
  
    :root {
      --primary: #e67e22;
      --secondary: #2c3e50;
      --accent: #e74c3c;
      --light: #f9f9f7;
      --text: #333;
      --text-light: #777;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  
  
  .testimonial-container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      position: relative;
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: var(--secondary);
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
  }
  
  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
  }
  
  .section-header p {
      max-width: 700px;
      margin: 20px auto 0;
      color: var(--text-light);
  }
  
  /* Slider Container */
  .testimonial-slider {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      max-width: 1000px;
  }
  
  .slider-track {
      display: flex;
      transition: transform 0.5s ease;
  }
  
  /* Testimonial Cards */
  .testimonial-card {
      background: white;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      min-width: 100%;
      position: relative;
      overflow: hidden;
  }
  
  .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: var(--primary);
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.1;
      z-index: 0;
  }
  
  .testimonial-content {
      position: relative;
      z-index: 1;
  }
  
  .testimonial-text {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 25px;
      position: relative;
      padding-left: 30px;
  }
  
  .testimonial-text::before {
      content: '"';
      position: absolute;
      top: -15px;
      left: 0;
      font-size: 3rem;
      color: var(--primary);
      opacity: 0.2;
      font-family: Georgia, serif;
      line-height: 1;
  }
  
  .testimonial-author {
      display: flex;
      align-items: center;
  }
  
  .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
      border: 3px solid var(--primary);
      padding: 3px;
  }
  
  .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
  }
  
  .author-info h4 {
      font-size: 1.1rem;
      color: var(--secondary);
      margin-bottom: 5px;
  }
  
  .author-info p {
      font-size: 0.9rem;
      color: var(--primary);
      font-style: italic;
  }
  
  .rating {
      margin: 15px 0;
      color: var(--primary);
  }
  
  .rating i {
      margin-right: 3px;
  }
  
  /* Slider Navigation */
  .slider-nav {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      gap: 10px;
  }
  
  .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .nav-dot.active {
      background: var(--primary);
      transform: scale(1.2);
  }
  
  /* Slider Arrows */
  .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      z-index: 10;
      transition: all 0.3s ease;
  }
  
  .slider-arrow:hover {
      background: var(--primary);
      color: white;
  }
  
  .arrow-left {
      left: -50px;
  }
  
  .arrow-right {
      right: -50px;
  }
  
   .hero {
      position: relative;
      background: url('https://images.pexels.com/photos/39347/tea-farmhouse-hand-fresh-39347.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /* Dark overlay */
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: bold;
    }

    .hero-content p {
      font-size: 1.25rem;
      margin: 20px 0;
    }

    .hero-content .btn {
      margin: 10px;
      padding: 12px 30px;
      font-size: 1rem;
    }
    
.hero-haldi {
      position: relative;
      background: url('https://images.pexels.com/photos/7988009/pexels-photo-7988009.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-haldi::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
    }

    .hero-haldi-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-haldi-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
    }

    .hero-content p {
      font-size: 1.25rem;
      margin: 20px 0;
    }

    .hero-content .btn {
      margin: 10px;
      padding: 12px 30px;
      font-size: 1rem;
    }
    
.hero-makahana {
      position: relative;
      background: url('../img/makhana.jpeg') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-makahana::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
    }

    .hero-makahana-content {
      z-index: 2;
      text-align: center;
    }

    .hero-makahana-content h4 {
      
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }

.hero-chaipatti {
      position: relative;
      background: url('https://images.unsplash.com/photo-1491497895121-1334fc14d8c9?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-chaipatti::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-chaipatti-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-chaipatti-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }

.hero-aloo {
      position: relative;
      background: url('https://images7.alphacoders.com/383/thumb-1920-383749.jpg') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-aloo::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-aloo-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-aloo-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }


.hero-mushroom {
      position: relative;
      background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS7ZqXGlp5AORynAc-_WO-0Bt-Z2SwVzb5lRg&s') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-mushroom::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-mushroom-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-mushroom-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }
    
.hero-tulsi {
      position: relative;
      background: url('img/holy-tulsi.jpg');
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 12em 0;
    }

    .hero-tulsi::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .hero-tulsi-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
    }

    .hero-tulsi-content h4 {
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
    }

.chatbox {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 200px;
    height: 400px;
    background-color: #fff;
    font-family: 'Lato', sans-serif;

    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);

    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    flex-direction: column;
}

.chatbox--tray {
    bottom: -350px;
}

.chatbox--closed {
    bottom: -400px;
}

.chatbox .form-control:focus {
    border-color: #1f2836;
}

.chatbox__title,
.chatbox__body {
    border-bottom: none;
}

.chatbox__title {
    min-height: 50px;
    padding-right: 10px;
    background-color: #1f2836;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;

    display: -webkit-flex;
    display: flex;

    -webkit-align-items: center;
    align-items: center;
}

.chatbox__title h5 {
    height: 50px;
    margin: 0 0 0 15px;
    line-height: 50px;
    position: relative;
    padding-left: 20px;

    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.chatbox__title h5 a {
    color: #fff;
    max-width: 195px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatbox__title{
}

.chatbox__title__tray,
.chatbox__title__close {
    width: 24px;
    height: 24px;
    outline: 0;
    border: none;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;

    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

.chatbox__title__tray:hover,
.chatbox__title__close:hover {
    opacity: 1;
}

.chatbox__title__tray span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-bottom: 2px solid #fff
}

.chatbox__title__close svg {
    vertical-align: middle;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2px;
}

.chatbox__body,
.chatbox__credentials {
    padding: 15px;
    border-top: 0;
    background-color: #f5f5f5;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.chatbox__credentials {
    display: none;
}

.chatbox__credentials .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.chatbox__body {
    overflow-y: auto;
}

.chatbox__body__message {
    position: relative;
}

.chatbox__body__message p {
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px rgba(100, 100, 100, 0.1);
    box-shadow: 1px 1px rgba(100, 100, 100, 0.1);
}

.chatbox__body__message img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #fcfcfc;
    position: absolute;
    top: 15px;
}

.chatbox__body__message--left p {
    margin-left: 15px;
    padding-left: 30px;
    text-align: left;
}

.chatbox__body__message--left img {
    left: -5px;
}

.chatbox__body__message--right p {
    margin-right: 15px;
    padding-right: 30px;
    text-align: right;
}

.chatbox__body__message--right img {
    right: -5px;
}

.chatbox__message {
    padding: 15px;
    min-height: 50px;
    outline: 0;
    resize: none;
    border: none;
    font-size: 12px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #fefefe;
}

.chatbox--empty {
    height: 262px;
}

.chatbox--empty.chatbox--tray {
    bottom: -212px;
}

.chatbox--empty.chatbox--closed {
    bottom: -262px;
}

.chatbox--empty .chatbox__body,
.chatbox--empty .chatbox__message {
    display: none;
}

.chatbox--empty .chatbox__credentials {
    display: block;
}

.w-99934{
    padding: 2em;
}

.w-9994{
   border: 2px solid #2a473d;
   padding: 1em 1em;
}




.blink_me {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.w-0099 p{
    line-height: 36px;
}


span.li {
    display: list-item; 
    margin-left: 2em;
    
}
  /* Responsive Adjustments */
  @media (max-width: 900px) {
      .slider-arrow {
          width: 35px;
          height: 35px;
      }
      
      .arrow-left {
          left: -20px;
      }
      
      .arrow-right {
          right: -20px;
      }
  }
  
  @media (max-width: 768px) {
      .testimonial-card {
          padding: 30px 25px;
      }
      
      .testimonial-text {
          padding-left: 25px;
      }
      
      .slider-arrow {
          width: 30px;
          height: 30px;
          font-size: 0.8rem;
      }
  }
  
  @media (max-width: 480px) {
      .testimonial-card {
          padding: 25px 20px;
      }
      
      .testimonial-text::before {
          font-size: 2.5rem;
          top: -10px;
      }
      
      .author-avatar {
          width: 50px;
          height: 50px;
      }
      
      .slider-arrow {
          display: none;
      }
  }
  
  
  
  /*Contact*/
  
  /* Unique Contact Section Styles */
  .aura-contact-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
      padding: 80px 0;
      font-family: 'Poppins', sans-serif;
    }
    
    .aura-contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .aura-section-heading {
      text-align: center;
      font-size: 2.5rem;
      color: #1a1a2e;
      margin-bottom: 60px;
      position: relative;
    }
    
    .aura-section-heading::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #ff6b6b, #1a1a2e);
    }
    
    .aura-contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }
    
    /* Contact Info Styles */
    .aura-contact-info {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    .aura-info-card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      display: flex;
      align-items: flex-start;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .aura-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .aura-info-icon {
      margin-right: 20px;
      padding-top: 5px;
    }
    
    .aura-info-content {
      flex: 1;
    }
    
    .aura-info-title {
      font-size: 1.2rem;
      color: #1a1a2e;
      margin-bottom: 10px;
      font-weight: 600;
    }
    
    .aura-info-text {
      color: #555;
      line-height: 1.6;
      margin-bottom: 5px;
    }
    
    /* Contact Form Styles */
    .aura-contact-form {
      background: #f2f1f2;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .aura-form-group {
      margin-bottom: 20px;
    }
    
    .aura-form-input,
    .aura-form-textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .aura-form-input:focus,
    .aura-form-textarea:focus {
      border-color: #ff6b6b;
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    }
    
    .aura-form-textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .aura-submit-btn {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
    }
    
    .aura-submit-btn svg {
      margin-left: 10px;
      transition: transform 0.3s;
    }
    
    .aura-submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .aura-submit-btn:hover svg {
      transform: translateX(5px);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .aura-contact-section {
        padding: 60px 0;
      }
      
      .aura-section-heading {
        font-size: 2rem;
        margin-bottom: 40px;
      }
      
      .aura-contact-grid {
        grid-template-columns: 1fr;
      }
      
      .aura-contact-form {
        padding: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .aura-info-card {
        padding: 20px;
      }
      
      .aura-info-icon {
        margin-right: 15px;
      }
      
      .aura-section-heading {
        font-size: 1.8rem;
      }
    }
  
  /*Animation*/
  
  /* Modified CSS */
/* Base Animation Styles */


/* Animation Definitions */
/* Base Styles - Prevents Layout Shifting */
.animate-left,
.animate-right,
.animate-up,
.animate-down,
.animate-fade {
  opacity: 0;
  will-change: transform, opacity; /* Optimizes performance */
  transform-style: preserve-3d; /* Prevents layout shifts */
  backface-visibility: hidden; /* Fixes flickering */
}

/* Animation Classes - Now using transitions instead of keyframes */
.animate-left {
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-right {
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-up {
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-down {
  transform: translateY(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade {
  transition: opacity 0.6s ease-out;
}

/* Active State - Applied via JavaScript */
.animate-left.active,
.animate-right.active,
.animate-up.active,
.animate-down.active,
.animate-fade.active {
  opacity: 1;
  transform: translate(0);
}


  /*Footer*/
  
  /* Unique Footer Styles */
  .aura-footer {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: #ecf0f1;
      padding: 60px 0 0;
      font-family: 'Poppins', sans-serif;
    }
    
    .aura-footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .aura-footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    
    /* Company Info */
    .aura-footer-company {
      grid-column: 1 / -1;
    }
    
    .aura-footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .aura-logo-img {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .aura-footer-brand {
      display: flex;
      flex-direction: column;
    }
    
    .aura-footer-brandname {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
    }
    
    .aura-footer-tagline {
      font-size: 12px;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
    }
    
    .aura-footer-about {
      color: #bdc3c7;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .aura-footer-social {
      display: flex;
      gap: 15px;
    }
    
    .aura-social-link {
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    
    .aura-social-link:hover {
      background: #ff6b6b;
      transform: translateY(-3px);
    }
    
    /* Footer Columns */
    .aura-footer-heading {
      font-size: 18px;
      color: #f39c12;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .aura-footer-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background: #f39c12;
    }
    
    .aura-footer-list {
      list-style: none;
    }
    
    .aura-footer-link {
      color: #bdc3c7;
      text-decoration: none;
      display: block;
      padding: 8px 0;
      transition: all 0.3s;
    }
    
    .aura-footer-link:hover {
      color: #f39c12;
      padding-left: 5px;
    }
    
    /* Contact Info */
    .aura-contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .aura-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #bdc3c7;
    }
    
    .aura-contact-item svg {
      flex-shrink: 0;
    }
    
    /* Footer Bottom */
    .aura-footer-bottom {
      border-top: 1px solid #34495e;
      padding: 25px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .aura-footer-copyright {
      color: #7f8c8d;
      font-size: 14px;
      text-align: center;
    }
    
    .aura-footer-legal {
      display: flex;
      gap: 20px;
    }
    
    .aura-legal-link {
      color: #7f8c8d;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    
    .aura-legal-link:hover {
      color: #f39c12;
    }
    
    /* Responsive Design */
    @media (min-width: 768px) {
      .aura-footer-company {
        grid-column: auto;
      }
      
      .aura-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }
    
    @media (max-width: 480px) {
      .aura-footer-grid {
        grid-template-columns: 1fr;
      }
      
      .aura-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
      }
    }