@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Cardo", serif !important;
    
}

:root {
    --orange: rgb(243, 113, 33);
    --orange-light: rgb(255, 128, 51);
}
nav{
    font-family: "Poppins", sans-serif !important;
    font-weight:400 !important;
}
nav a, #mobile-menu a{
     font-size:16px !important;
     font-family: "Poppins", sans-serif !important;
    
}
h1, h2, h3 {
    font-family: "Cardo", serif !important;
    letter-spacing: 1px;
}
.line-space {
    height: 20vh !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.line-grow {
    width: 3px !important;
    background-color: rgb(243, 113, 33);
    transform: scaleY(0);
    transform-origin: top;
    animation: growLine 0.6s ease-out forwards !important;
}

@keyframes growLine {
    0% {
        height: 0;
    }
    100% {
        height: 20vh;
    }
}

[data-aos].aos-animate {
    transform: scaleY(1) !important;
}
#loader {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 137, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#loader.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}
#loader img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* Hamburger to X animation */
.hamburger-top, .hamburger-middle, .hamburger-bottom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-active .hamburger-top {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--orange);
}
.hamburger-active .hamburger-middle {
    opacity: 0;
}
.hamburger-active .hamburger-bottom {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--orange);
}
/* Mobile menu slide-in */
#mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu.open {
    transform: translateX(0);
}
/* Mobile menu items animation */
.menu-item {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu.open .menu-item {
    transform: translateX(0);
    opacity: 1;
}
.menu-item:nth-child(1) { transition-delay: 0.1s; }
.menu-item:nth-child(2) { transition-delay: 0.2s; }
.menu-item:nth-child(3) { transition-delay: 0.3s; }
.menu-item:nth-child(4) { transition-delay: 0.4s; }
.menu-item:nth-child(5) { transition-delay: 0.5s; }
.menu-item:nth-child(6) { transition-delay: 0.6s; }
.menu-item:nth-child(7) { transition-delay: 0.7s; }
.menu-item:nth-child(8) { transition-delay: 0.8s; }
.menu-item:nth-child(9) { transition-delay: 0.9s; }
.menu-item:nth-child(10) { transition-delay: 1.0s; }
/* Search icon animation */
.search-icon-magnifier, .search-icon-x {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-icon-magnifier {
    opacity: 1;
    transform: scale(1);
}
.search-icon-x {
    opacity: 0;
    transform: scale(0.5);
}
.search-active .search-icon-magnifier {
    opacity: 0;
    transform: scale(0.5);
}
.search-active .search-icon-x {
    opacity: 1;
    transform: scale(1);
    stroke: var(--orange);
}
/* Search section slide-in */
#search-section {
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#search-section.open {
    transform: translateX(0);
}
/* Search input animation */
.search-input {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    transition-delay: 0.2s;
}
#search-section.open .search-input {
    opacity: 1;
    transform: translateX(0);
}
.search-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.3);
}
/* Desktop submenu */
.desktop-submenu-container {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-menu-item:hover .desktop-submenu-container {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Desktop menu and submenu hover underline */
.desktop-menu-item, .desktop-submenu-item {
    position: relative;
}
.desktop-menu-item > a::after, .desktop-submenu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-menu-item:hover > a::after, .desktop-submenu-item:hover::after {
    width: 100%;
}
/* Mobile submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-submenu.open {
    max-height: 500px;
}
/* Plus to dash animation */
.bi-plus, .bi-dash {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.plus-active .bi-plus {
    opacity: 0;
    transform: rotate(90deg);
}
.plus-active .bi-dash {
    opacity: 1;
    transform: rotate(0deg);
}
.bi-dash {
    opacity: 0;
    transform: rotate(-90deg);
}
/* Banner styles */
.banner {
    background: url('../images/ahinsa-home-page-banner.jpeg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
}
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}
.banner-text, .banner-play-icon {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-text {
    transition-delay: 0.1s;
}
.banner-play-icon {
    transition-delay: 0.3s;
}
.banner-loaded .banner-text,
.banner-loaded .banner-play-icon {
    opacity: 1;
    transform: translateY(0);
}
/* Play icon with rotating ring */
.play-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.play-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}
.rotating-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--orange);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .leading-relaxed{
        position: static !important;
    }
    .banner {
        height: 60vh;
    }
    .banner-text {
        font-size: 1.25rem;
    }
    .play-icon-container {
        width: 48px;
        height: 48px;
    }
    .play-icon-circle {
        width: 48px;
        height: 48px;
    }
    .play-icon {
        border-left: 12px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 3px;
    }
    .rotating-ring {
        width: 64px;
        height: 64px;
        top: -8px;
        left: -8px;
    }
    #loader {
        position: fixed;
        bottom: 0;
        left: 0;
        width: auto !important;
        height: 100% !important;
    }
}

/* From Uiverse.io by vinodjangid07 */ 
.button {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--orange);
border: none;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
cursor: pointer;
transition-duration: 0.3s;
overflow: hidden;
position: relative;
}

.svgIcon {
width: 12px;
transition-duration: 0.3s;
}

.svgIcon path {
fill: white;
}

.button:hover {
width: 140px;
border-radius: 50px;
transition-duration: 0.3s;
background-color: var(--orange);
align-items: center;
}

.button:hover .svgIcon {
/* width: 20px; */
transition-duration: 0.3s;
transform: translateY(-200%);
}

.button::before {
position: absolute;
bottom: -20px;
content: "Back to Top";
color: white;
/* transition-duration: .3s; */
font-size: 0px;
}

.button:hover::before {
font-size: 13px;
opacity: 1;
bottom: unset;
/* transform: translateY(-30px); */
transition-duration: 0.3s;
}

 .intro-section {
    background: linear-gradient(to bottom, var(--orange) 60%, #f3f4f6 60%);
    padding: 4rem 0.5rem;
    text-align: center;
    }
    .intro-content {
    max-width: 100%;
    margin: 0 auto;
    }
    .slider-container {
overflow: hidden;
}

.slider-track {
display: flex;
transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-item {
width: 100%;
flex-shrink: 0;
transition: transform 0.3s ease;
}
.slider-item:hover{
transform: scale(1.08) !important;
}

@media (min-width: 1280px) {
.slider-item {
width: 20%;
}
.future-section .slider-item{
width: 33.33%;
}
}

@media (min-width: 768px) and (max-width: 1279px) {
.slider-item {
width: 33.3333%;
}
}

@media (max-width: 767px) {
.slider-button {
opacity: 1 !important;
transform: translateY(0) !important;
}
.button:hover {
width: 50px !important;
border-radius: 50% !important;
background-color: rgb(219, 96, 20) !important;
align-items: center !important;
}

.button:hover .svgIcon {
transform: none !important;
}

.button:hover::before {
font-size: 0 !important;
opacity: 0 !important;
bottom: -20px !important;
transition-duration: 0s !important;
}
}


@media (min-width: 768px) {
.slider-button {
transform: translateY(20px);
opacity: 0;
transition: all 0.3s ease;
}

.group:hover .slider-button {
opacity: 1;
transform: translateY(0);
}
}

.overlay {
background: rgba(0, 0, 0, 0.4);
}

.group {
transition: transform 0.3s ease;
}

.group:hover {
transform: scale(1.05);
}
.read-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn::before,
.read-more-btn::after {
  content: '';
  position: absolute;
  height: 2px;
  background: #ffffff;
  width: 100%;
  left: 0;
  transition: transform 0.3s ease;
  transform: scaleX(0);
}

.read-more-btn::before {
  top: 0;
  transform-origin: left;
}

.read-more-btn::after {
  bottom: 0;
  transform-origin: right;
}

.read-more-btn:hover::before {
  transform: scaleX(1);
}

.read-more-btn:hover::after {
  transform: scaleX(1);
}

.read-more-btn .arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.read-more-btn:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Show hover effect on mobile by default */
@media (max-width: 768px) {
  .read-more-btn::before,
  .read-more-btn::after {
    transform: scaleX(1) !important;
  }

  .read-more-btn .arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

.orange-border{
/* background: var(--orange) !important; */
border-left: 4px solid var(--orange) !important;
border-right: 4px solid var(--orange) !important;
}
.orange-border.read-more-btn::before,
.orange-border.read-more-btn::after{
background: var(--orange) !important;
}


.sustainability-section {
text-align: center;
padding: 60px 20px;
}

.sustainability-section h2 {
color: var(--orange);
margin-bottom: 40px;
}

.counter-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
margin-bottom: 40px;
}

.counter-item {
flex: 1 1 250px;
max-width: 300px;
}

.counter-item h4 {
font-size: 14px;
color: #444;
margin-bottom: 10px;
}

.counter {
font-size: 32px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}

.counter-item p {
font-size: 14px;
color: #555;
line-height: 1.4;
}

.footer {
background: #2d2d2d;
color: #fff;
padding: 50px 20px 20px;
font-family: sans-serif;
}

.footer-container {
display: flex;
flex-wrap: wrap;
gap: 40px;
border-bottom: 1px solid #444;
padding-bottom: 40px;
}

.footer-left {
flex: 1;
min-width: 250px;
max-width: 300px;
}

.logo {
font-size: 28px;
font-weight: bold;
line-height: 1.2;
}

.logo span {
font-size: 12px;
font-weight: normal;
}

.footer-title {
margin: 20px 0 10px;
font-weight: bold;
font-size: 16px;
}

address {
font-style: normal;
font-size: 14px;
line-height: 1.6;
color: #ccc;
}

.footer-button {
margin-top: 15px;
padding: 10px 20px;
background: transparent;
color: #fff;
border: 1px solid #fff;
cursor: pointer;
text-transform: uppercase;
}

.follow-title {
margin-top: 30px;
font-weight: bold;
}

.social-icons a {
color: #fff;
margin-right: 15px;
font-size: 16px;
}

.footer-links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 30px;
flex: 3;
}

.footer-links h4 {
font-size: 14px;
font-weight: bold;
margin-bottom: 10px;
}

.footer-links a {
display: block;
font-size: 13px;
color: #ccc;
margin-bottom: 6px;
text-decoration: none;
}

.footer-links a:hover {
color: #fff;
}

.footer-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
color: #aaa;
font-size: 13px;
padding-top: 20px;
}

.footer-bottom a {
color: #aaa;
text-decoration: none;
}

.footer-bottom a:hover {
color: #fff;
}

/* leadership section */

.hero-section, .leadership-team-section, .culture-section, .cta-section {
    padding: 4rem 1rem;
}
.leadership-card {
    transition: all 0.3s ease;
}
.leadership-card:hover .group {
    background-opacity: 0.5;
}
@media (max-width: 768px) {
    .right-cta{
        right:40px !important;
    }
    .footer-bottom{
        justify-content: center;
        gap:10px;
    }
    .hero-section, .leadership-team-section, .culture-section, .cta-section {
        padding: 2rem 1rem;
    }
    .hero-section img {
        height: 12rem;
    }
    .culture-section .grid {
        grid-template-columns: 1fr;
    }
    .culture-image img {
        height: 15rem;
    }
}


.tab-button {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 60px;
    color: #ffffff54;
}

.tab-button.active {
    color: #ffffff;
    transform: scale(1.1);
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.slide-enter {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.slide-enter-active {
    opacity: 1;
    transform: translateX(0%);
}

.slide-exit {
    opacity: 1;
    transform: translateX(0%);
    transition: all 0.5s ease;
}

.slide-exit-active {
    opacity: 0;
    transform: translateX(-100%);
}
@media only screen and (max-width: 600px) {
    .tab-button {
        font-size:20px;
    }   
    .mobile-dec #desc{
        line-height: normal !important;
height: 200px !important;
font-size: 13px !important;
font-weight:400px;
    }
    #learn-more{
        padding: 5px 8px;
        font-size: 10px;
        position: relative;
        top:-15px;
    }
}
.line-space {
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .line-grow {
    width: 2px;
    background-color: rgb(243, 113, 33);
    transform: scaleY(0);
    transform-origin: top;
  animation: growLine 1s ease-out forwards; /* Increased duration here */
}

@keyframes growLine {
    0% {
        height: 0;
    }
    100% 
    {
        height: 20vh; /* Adjust length as needed */}}

  [data-aos].aos-animate {
    transform: scaleY(1) !important;
  }