@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

@import url('https://fonts.googleapis.com/css2?family=Namdhinggo:wght@400;500;600;700;800&display=swap');

body{
    margin:0;
    padding:0;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, sans-serif;
    /* font-family: 'Times New Roman', Times, serif; */
    /* font-family: "Namdhinggo", serif; */
    /* background: var(--color9); */
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}


/* :root{
    --vvpcl1 : rgb(76, 86, 116);
    --vvpcl2 : rgb(210, 171, 102);
    --vvpcl3 : rgb(255, 217, 0);
    --vvscl2 : rgb(210, 171, 102, 0.2);
    --vvboxShadow1 : rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --vvboxShadow2 : rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    --vvboxShadow3 : rgba(0, 0, 0, 1) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.5) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.5) 0px -10px 0px 0px inset, rgba(0, 0, 0, 1) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    --vvrobotoFont : "Roboto", sans-serif;
    --vvpseudo-backgroundcolor: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.4) 70%,rgba(0, 0, 0, 1));
} */


:root{
  
  --color1:rgb(242, 198, 67);
  --color2:rgb(249, 222, 75);
  --color3:rgb(251, 252, 216);
  --color4:rgb(10, 10, 10);
  --color5:rgb(21, 21, 21);
  --color6:rgb(94, 17, 11);
  --color7:rgb(140, 78, 31);
  --color8:rgb(255,147,0);
  --color9:rgb(243, 237, 232);
}

.vvboxShadow1{
    box-shadow: var(--vvboxShadow1);
}

.vvboxShadow2{
    box-shadow: var(--vvboxShadow2);
}

.vvboxShadow3{
    box-shadow: var(--vvboxShadow3);
}

.vvfontRoboto{
    font-family: var(--vvrobotoFont);
}

.vvbtn1{
    background-color: var(--vvpcl1);
    box-shadow: var(--vvboxShadow1);
}


/* Navbar Styles */
.vvnavBar {
  width: 100%;
  height: 75px;
  box-shadow: var(--vvboxShadow1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  background-image: linear-gradient(135deg,rgba(0, 0, 0, 0.5),rgba(140, 78, 31, 0.5));
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  z-index: 20;
}

.vvlogoContainer {
  background-color: white;
  padding: 0px 10px;
  border-radius: 5px;
  box-shadow: var(--vvboxShadow1);
}

.vvlogo {
  height: 50px;
}

.vvrightNavBarItems {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin-right: 100px;
}

.vvrightNavBarItems li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px 30px 0px 10px;
  color: white;
}

.vvsymb {
  font-size: 30px;
  margin-bottom: 10px;
  margin-right: 5px;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle i {
  font-size: 24px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .vvnavBar {
    padding: 0 100px;
    height: auto;
    min-height: 75px;
  }

  .menu-toggle {
    display: block;
    margin-right: 20px;
  }

  .vvrightNavBarItems {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(135deg,rgba(0, 0, 0, 0.9),rgba(140, 78, 31, 0.9));
    position: absolute;
    top: 75px;
    left: 0;
    padding: 20px 0;
  }

  .vvrightNavBarItems.show {
    display: flex;
  }

  .vvrightNavBarItems li {
    margin: 15px 0;
    padding: 10px 0;
  }

  .vvnavBar {
    flex-wrap: wrap;
  }

  .nav-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* 


.vvnavBar{
  width: 100%;
  height: 75px;
  box-shadow: var(--vvboxShadow1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  background-image: linear-gradient(135deg,rgba(0, 0, 0, 0.5),rgba(140, 78, 31, 0.5));
  position: fixed;
  top:0;
  left:0;
  backdrop-filter: blur(20px);
  z-index:20;
}

.vvnavBar1{
  width: 100%;
  height: 75px;
  box-shadow: var(--vvboxShadow1);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  top:0;
  left:0;
  backdrop-filter: blur(20px);
  z-index:5;
}

.vvlogoContainer{
  background-color: white;
  padding:0px 10px;
  border-radius: 5px;
  box-shadow: var(--vvboxShadow1);
}

.vvlogo{
  height:50px;
}

.vvrightNavBarItems{
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin-right: 100px;
}

.vvrightNavBarItems li{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px 30px 0px 10px;
  color:white;
  
}

.vvsymb{
    font-size: 30px;
    margin-bottom: 10px;
    margin-right: 5px;
} */







#vvHeroSec::before{
    content:"";
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    z-index:1;
    background: var(--vvpseudo-backgroundcolor);
}

#vvHeroSec{
    position: relative;
    width:100%;
    height:700px;
    z-index: -1;
    box-shadow: var(--vvboxShadow2);
}

#vvHeroSec video {
    width: 100% !important;
    min-height: 700px;
    object-fit: cover;
    border: none;
}



.secBox{
    margin: 45px auto;
    display: flex;
    white-space: no-wrap;
    width: 100%;
    overflow: hidden;
    
}

.list{
    /* margin:50px 100px; */
    display: flex;
    -webkit-animation: loop 40s infinite linear;
    animation: loop 40s infinite linear;
    white-space: nowrap;
    margin: 5px auto;
}

.listRev{
    /* margin:50px 100px; */
    display: flex;
    -webkit-animation: loopRev 100s infinite linear;
    animation: loopRev 100s infinite linear;
    white-space: nowrap;
    margin: 5px auto;
}

.item span{
    margin-right:50px;
    font-size: 35px;
    /* background-color: rgba(100, 100, 111, 0.2); */
    /* border-radius: 5px; */
    padding:5px 10px;
    font-weight: 500;
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;     */
}

.item span:nth-child(even) {
    border: 2px solid black;
    border-radius: 20px;
}

@keyframes loop {
    100% {

        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);

    }
}

@keyframes loopRev {
    
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }


}

/*
.movieContainer{
    margin:-60px auto 100px auto;
    padding:50px 0px !important;
    overflow: hidden;
}
 
.movieBox{
    width:100%;
    height:100%;
    margin:50px auto;
    transition: 0.5s ease-in-out;
}

.movieBox:hover{
    transform: scale(120%);
}

.movieBox:hover .movieCard{
    box-shadow: var(--vvboxShadow3);
}

.movieCard{
    margin:15px auto;
    padding-top:1px;
    
    width:250px;
    height:350px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://m.media-amazon.com/images/M/MV5BZjkwN2Q5Y2QtMmE2MC00NzlkLTg2NzQtYjVjYjVmNjE2ZTNiXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_FMjpg_UX1000_.jpg);
    
}

.movieRating{
    position: relative;
    margin-top:315px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width:100%;
    height:35px;
    background-color: black;
    color:white;
    font-weight: 300;
    font-size:15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.symb {
    margin: auto 5px;
}

.movieDetails{
    width:250px;
    margin:15px auto;
    width:250px;
}

.movieName{
    width:250px;
    float:left;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movieTiming{
    float:left;
    line-height: 1.4;
    width:80%;
    font-weight:300;
}

.movieTimingLogo{

    font-size: 22px !important;
    margin: auto 5px auto 10px;
}

.timeLogo{
    vertical-align: top;
} */



.vvcontactUsBox{
    /* overflow: hidden; */
    width:100%;
    margin:10px 0px 0px 0px;
    padding:0px 0px;
    box-shadow: var(--vvboxShadow1);
    /* border-radius: 20px; */
    /* min-height:600px; */
}

.vvcontactUsCoverImage{
    background-position: center;
    background-repeat:no-repeat;
    background-size:cover;
    background-image: url(https://t4.ftcdn.net/jpg/06/01/02/71/360_F_601027181_JYZAvwl48pCllc8936XsGOLOGhSY09aV.jpg)
}


.vvfooterContainer{
    min-height:100px;
    background-color: var(--vvpcl1);
    padding: 0px;
}

.topGoldBar{
    width: 100%;
    height:20px;
    background-color: var(--vvpcl2);
    box-shadow: var(--vvboxShadow2);
}

.bottomGoldBar{
    /* margin-top: 20px; */
    width: 100%;
    height:20px;
    background-color: var(--vvpcl2);
    box-shadow: var(--vvboxShadow2);
}

.vvfooterLinks{
    list-style-type: none;
    color:white;
    font-size: 20px;
}

.vvfooterLinks li{
    margin:0px auto 20px auto; 
}

.vvmallCCenterOfAttractionContainer{
    margin:100px auto;
}

.vvmallCCenterOfAttractionBox{
    width: 100%;
    height: 600px;
    box-shadow: var(--vvboxShadow3);
    border-radius:35px;
    border-top-right-radius: 40%;
    background-image: url("https://images.pexels.com/photos/16120257/pexels-photo-16120257.jpeg?cs=srgb&dl=pexels-matheus-bertelli-16120257.jpg&fm=jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

#heroSecText{
    float:right;
    font-size: 90px;
    font-weight: 900;
    /* margin-top:-700px; */
    margin-right:200px;
    /* background-color: white;
    padding: 20px;
    border-radius: 20px; */
}

.brandBox{
    float:left;
    width:450px;
    height:200px;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    /* margin:-375px auto 0px auto; */
    border: 5px solid rgb(255, 217, 0, 0.7);
    background-color:white;
    margin:150px 0px 0px 0px;
    margin-left: -150px;
    box-shadow: rgba(255, 217, 0, 0.2) 0px 7px 29px 10px;
    
}

#heroSecText{
    float:right;
    font-size: 90px;
    font-weight: 900;
    /* margin-top:-700px; */
    margin-right:200px;
    /* background-color: white;
    padding: 20px;
    border-radius: 20px; */
}

#heroSecTextContent{
    line-height: 30px;
    margin-bottom:20px;
    padding:20px 20px;
    height:100%;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}


.movieBtn{
    border-radius:0px;
    border: 2px solid black;
    /* margin:40px 5px 40px 10px; */
    margin: 40px 0px;
    width:200px;
}

.lft{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    /* margin-left:5px; */
}

.rht{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.actiBtn{
    border: 2px solid rgb(77, 87, 117);
    background-color: rgb(77, 87, 117, 1);
    color: white;
}


.heroSecText2{
    /* float:right; */
    font-size: 90px;
    font-weight: 900;
    /* margin-top:-700px; */
    /* margin-right:200px; */
    margin: 50px auto;
}


.brandLogo{
    width:80%;
    margin:50px auto;
}

.heroSecText3{
    /* float:right; */
    font-size: 45px;
    font-weight: 900;
    /* margin-top:-700px; */
    /* margin-right:200px; */
    margin: 50px auto;
}

.abtContent{
    font-size: 16px;
    line-height: 30px;
}




.vvmallcontacts{
    margin:0px auto 100px auto;
    width: 100%;
    padding:50px;
    border-radius:20px;
    border: 2px solid var(--vvpcl2);
    box-shadow: var(--vvboxShadow1);
}

/* Tmdb css */
.movie-section {
    margin: 20px 0;
}

.rowm {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; 
    /* border: 2px dashed red; */
}

.rowm::-webkit-scrollbar {
    
}

.movieBox {
    flex-shrink: 0;
    width: 230px;
}

.genre {
  font-size: 24px;
  padding: 20px;
  color: #333;
}
/* .rowm {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  
} */
.movie-card {
  width: 230px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow-x: auto;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 2vw;
  margin-left: 2vw;
  margin-top: 1vw;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.movie-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.movie-poster {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.movie-details {
  padding: 10px;
  text-align: center;
}
.movie-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.movie-meta {
  font-size: 16px;
  font-weight: 600; /* Semi-bold */
  color: #555;
  margin-top: 8px;
}


.movie-card .details h3 {
  font-size: 18px;
  margin: 10px 0;
}

.movie-card .details p {
  font-size: 14px;
  margin: 5px 0;
  color: #555;
}

.movie-card .details .price {
  font-weight: bold;
  color: #007BFF;
}

.movieCard {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    /* border: 2px dashed red; */
    /* z-index: 200; */
    margin-left: 2vw;
    margin-top: 1vw;
    cursor: pointer;
}
.movieCard:hover{
    border: rgb(40, 40, 40) 2px solid;
    transform: scale(1.06);
    transition: all ease 0.3s;
}
.movieRating {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.upcoming-movies{
    margin-bottom: 7vw;
    padding-bottom: 4vw;
}

.movieTiming span {
    margin-left: 13px; 
}

.movieDetails {
    text-align: center;
    margin-top: 10px;
}
 
.genre{
    margin-left: 2vw;
    padding-top: 3vw;
}

.movieName {
    font-size: 1.1em;
    font-weight: bold;
}

.movieTiming {
    font-size: 0.9em;
    color: gray;
    text-decoration: dashed;
}

/* about css */
.container {
    max-width: 1200px;
    margin: 5vw auto;

  }

  /* @media screen and (max-width: 768px) {
    .container{
      max-width: 800px;
      margin: auto auto 3vw auto;
    }
  } */
  
  h1 {
    text-align: center;
    color: rgb(17, 24, 39);
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .underline {
    height: 4px;
    width: 6rem;
    background: var(--color9);
    margin: 0 auto 4rem auto;
  }
  
  /* Timeline Grid Styles */
  .timeline-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 6rem;
    position: relative;
  }


  .main-timeline{ font-family: 'Poppins', sans-serif; }
  .main-timeline:after{
      content: '';
      display: block;
      clear: both;
  }
  .main-timeline .timeline{
      width: calc(50% + 58px);
      border-top: 2px solid #404247;
      float: left;
      position: relative;
      z-index: 1;
  }
  .main-timeline .timeline:before{
      content: "";
      background: #404247;
      width: 10px;
      height: 10px;
      border-radius: 50px;
      position: absolute;
      top: -5px;
      right: 0;
  }
  .main-timeline .timeline-content{
      color: #404247;
      text-align: center;
      padding: 15px 80px 15px 10px;
      display: block;
      position: relative;
      text-decoration: none; 
  }
  .main-timeline .timeline-content:hover{ text-decoration: none; }
  .main-timeline .timeline-content:before{
      content: "";
      background: var(--color2);
      width: 15px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 50px;
  }
  .main-timeline .timeline-year{
      font-size: 35px;
      line-height: 35px;
      font-weight: 700;
      transform: translateY(-50%) rotate(90deg);
      position: absolute;
      top: 50%;
      right: -15px;
  }
  .main-timeline .title{
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin: 0 0 8px;
  }
  .main-timeline .description{
      font-size: 16px;
      margin: 0;
  }
  .main-timeline .timeline:nth-child(even){ float: right; }
  .main-timeline .timeline:nth-child(even):before{
      right: auto;
      left: 0;
  }
  .main-timeline .timeline:nth-child(even) .timeline-content{
      padding: 15px 10px 15px 80px;
  }
  .main-timeline .timeline:nth-child(even) .timeline-content:before{
      right: auto;
      left: 51px;
  }
  .main-timeline .timeline:nth-child(even) .timeline-year{
      right: auto;
      left: -15px;
  }
  .main-timeline .timeline:nth-child(4n+2) .timeline-content:before{ background: var(--color6); }
  .main-timeline .timeline:nth-child(4n+3) .timeline-content:before{ background: var(--color2); }
  .main-timeline .timeline:nth-child(4n+4) .timeline-content:before{ background: var(--color6); }
  .main-timeline .timeline:nth-child(4n+5) .timeline-content:before{ background: var(--color2); }
 
 
  @media screen and (max-width:767px){
      .main-timeline .timeline{ width: 100%; }
  }

  /* Mission & Vision Styles */
  .mission-vision {
    margin-top: 5vw;
    margin-bottom: 10vw;
  }

  .mission-vision h1{
    color: var(--color7);
  }
  
  .mission-vision-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .mission-vision-grid > *:first-child {
    border-right: 3px solid #947e5035; 
    padding-right: 1.8rem; 
}


.mission-vision-card {
  background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Soft background gradient */
  padding: 2rem;
  box-shadow: 0 18px 15px rgba(184, 134, 11, 0.3), 0 4px 6px rgba(139, 69, 19, 0.3);
  margin: 2vw auto;;
  position: relative; /* Needed for the pseudo-element border */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid 1px rgba(90, 90, 90, 0.245);
  border-radius: 2vw;
}


  .misson-divider{
    border-right: var(--color3);
  }
  /* .mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(255, 13, 231, 0.095), 0 8px 10px rgba(219, 112, 255, 0.095); 
  } */
  
  /* Animated border */
  .mission-vision-card:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(120deg, #25bdeb20, #9149f62a, #ff7eb41a);
    border-radius: 0.75rem; /* Matches the card's border radius */
    z-index: -1;
    animation: gradient-border 3s linear infinite;
  }
  
  @keyframes gradient-border {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .mission-vision-card .icon {
    width: 4rem;
    height: 4rem;
    background-image: linear-gradient(135deg, var(--color2), var(--color1), var(--color8));
    border-radius: 50%; /* Circular icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .mission-vision-card:hover .icon {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
  }
  
  .mission-vision-card .icon i {
    color: white;
    font-size: 1.8rem;
  }
  
  .mission-vision-card h2 {
    background: var(--color7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Gradient text */
    font-size: 2rem;
    margin-bottom: 4rem;
    text-transform: capitalize;
    text-align: center;
   

  }
  
  .mission-vision-card .description {
    color: rgb(50, 54, 58);
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .mission-vision-card .points {
    list-style: none;
   
  }
  
  .mission-vision-card .points li {
    color: rgb(50, 54, 58);;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
  
  .mission-vision-card .points li i {
    color: #2563eb;
    background: var(--color7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0.75rem;
  }
  
  @media (min-width: 768px) {
    .timeline-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .mission-vision-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .timeline-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .gradient-bg-shape {
    position: absolute;
    top: 30px; /* Adjust position as needed */
    right: -25px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
      circle,
      rgba(253, 124, 25, 0.368) 0%,
      rgba(251, 58, 251, 0.142) 70%
    );
    filter: blur(100px); /* Creates a soft blur effect */
    border-radius: 60%; /* Makes it circular */
    z-index: -1; /* Ensures it stays behind the content */
    pointer-events: none; /* Prevents it from interfering with user interactions */
  }
  
 
  

  .core-values {
    margin-top: 6rem;
    margin-bottom: 4rem;
    text-align: center; 
  }

  .core-values h1{
    color: var(--color7);
  }

  .core-values .underline{
    color: var(--color3)
  }
  
  .values-grid {
    display: flex; 
    gap: 2rem;
    justify-content: center; 
    margin-top: 3rem; 
  }
  
  .value-card {
    background: white;
    border-radius: 1.5rem;
    /* padding: 0.5rem; */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1; 
    min-width: 250px; 
    max-width: 350px; 
    border: solid 1px rgba(152, 146, 146, 0.47);
  }
  
  .value-card:hover {
    transform: translateY(-5px);
  }

  .value-card-main{
    background-image: linear-gradient(135deg, var(--color2), var(--color1), var(--color8));
    padding: 2rem 2rem 1rem 2rem;
    border-radius: 20px;
  }
  
  .value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color7); /* Ensure icon remains visible */
    font-size: 1.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    border: solid 1px rgba(0, 0, 0, 0.267);
    animation: heartbeat 3s infinite ease-in-out;
}

/* Heartbeat animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
    }
    60% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

  
 
  
  .value-card h3 {
    color: var(--color7);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .value-card p {
    color: rgb(35, 34, 34);
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0 10px 0 10px;
  }
  
/* Management Team Section */

.management {
  margin-top: 6rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.management h1{
  color: var(--color7);
}

.subtitle {
  color: rgb(75, 85, 99);
  max-width: 800px;
  margin: 1.5rem auto;
  font-size: 1.2rem; /* Increased font size for better readability */
}

.management-grid {
  /* display: flex;
  gap: 2rem; 
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 0 1rem; */
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.management-card {
  background: white;
  border-radius: 1rem; /* Increased border radius for a more rounded look */
  /* padding: 1rem;  */
  text-align: center;
  /* box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 200px; /* Increased minimum width for larger cards */
  /* max-width: 32px; */
  /* border: 1px solid rgba(169, 169, 169, 0.3); */
}



.profile-img {
  width: 200px; 
  height: 200px; 
  margin: 0 auto 1.5rem auto;
  object-fit: cover;
  display: block;
}

.profile-img:hover {
  transform: scale(1.1);
  transition:all ease 0.5s;
  cursor: pointer;
}


.profile-img-1 {
  border-radius: 50% 20% 90% 70%;
}

.profile-img-2 {
  border-radius: 70% 30% 50% 20%;
}

.profile-img-3 {
  border-radius:70% 60% 10% 80%;
}

.profile-img-4 {
  border-radius: 60% 40% 30% 70%;
}

.profile-img-5 {
  border-radius: 8% 36% 4% 26%;
}

.management-card h3 {
  color: rgb(17, 24, 39);
  font-size: 1.5rem; /* Increased font size */
  font-weight: bold;
  margin-bottom: 0.75rem; /* Increased bottom margin */
}



  .stats-section {
    padding: 4rem 1rem;
    background-color: rgb(249, 250, 253);
    margin-top: 6vw;
  }

  .stats-section h2{
    color: var(--color7);
    text-align: center;
    font-size: 2.1rem;
  }
  
  .stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
    flex: 1;
    border: solid 1px rgb(140, 78, 31);
    min-width: 200px;
   
  }

 

  .stat-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color2), var(--color1), var(--color8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  

  .stat-card h2{
    color: var(--color7);
    font-size: 2.5rem;
  }

  /* .stat-number {
    color: rgb(37, 99, 235);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  } */

  .stat-number {
    background: linear-gradient(120deg, #634cf5, #eb51ff); /* Blue and purple gradient */
    color: transparent; /* Make the text color transparent */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    -webkit-background-clip: text; /* Apply the gradient to the text */
    background-clip: text;
    
  }
  
  
  .stat-label {
    color: rgb(75, 85, 99);
    font-size: 1rem;
  }
  
  /* Join Team Section */
  .join-team {
    max-width: 1280px;
    margin: 10vw auto 0;
    text-align: center;
  }
  
  .join-team h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color7);
    margin-bottom: 1rem;
  }
  
  .join-description {
    color: rgb(75, 85, 99);
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .view-openings {
    display: inline-block;
    background-image: linear-gradient(135deg, var(--color2), var(--color1), var(--color8));
    color: var(--color7);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 700;
  }
  
  
  


  /* Contact Section */
.contact-section {
    padding: 4rem 1rem;
    background-color: white;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(17, 24, 39);
    margin-bottom: 1rem;
  }
  
  .section-underline {
    height: 4px;
    width: 3rem;
    background-color: rgb(37, 99, 235);
    margin: 0 auto 1.5rem;
  }
  
  .section-description {
    text-align: center;
    color: rgb(75, 85, 99);
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .info-card {
    background:  rgba(230, 227, 227, 0.316);
    padding: 2rem;
    border-radius: 0.5rem;
  }
  
  .info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(17, 24, 39);
    margin-bottom: 1.5rem;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .icon {
    font-size: 24px; /* Adjust the size of the icon */
    flex-shrink: 0;  /* Prevent the icon from shrinking */
  }
  
  h4 {
    font-size: 18px;
    font-weight: bold;
  }
  
  p {
    color: #555; /* Add a subtle text color */
  }
  
  .detail-item h4 {
    font-weight: 600;
    color: rgb(17, 24, 39);
    margin-bottom: 0.25rem;
  }
  
  .detail-item p {
    color: rgb(75, 85, 99);
    line-height: 1.5;
  }
  
  .hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hours-row {
    display: flex;
    justify-content: space-between;
    color: rgb(75, 85, 99);
  }
  
  .contact-form {
    background: rgba(242, 241, 241, 0.077);
    min-height: 700px;
    padding: 0rem;
    border-radius: 0.5rem;
    padding-right: 1.3rem;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(17, 24, 39);
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 500;
    color: rgb(17, 24, 39);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgb(209, 213, 219);
    border-radius: 0.375rem;
    background: white;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: rgb(37, 99, 235);
    ring: 2px rgb(37, 99, 235);
  }
  
  .submit-btn {
    width: 100%;
    background-color: rgb(37, 99, 235);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: rgb(29, 78, 216);
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .hours-row {
      flex-direction: column;
      gap: 0.25rem;
    }
  }

  .achievements {
    text-align: center; 
    width: 100%;
    margin-top: 0;
    padding-top: 3vw;
    /* background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23fdf5e1" fill-opacity="1" d="M0,192L60,186.7C120,181,240,171,360,149.3C480,128,600,96,720,106.7C840,117,960,171,1080,208C1200,245,1320,267,1380,277.3L1440,288L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative; /* Enable positioning for pseudo-element */
    overflow: hidden; /* Hide overflow */
}

.achievements::before {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    background-image: url('/assets/img/cinema.png'); /* Replace with your doodle's path */
    background-size: contain;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.08;

    /* Clip the doodle to fit the SVG wave shape */
    clip-path: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg"><path d="M0,192L60,186.7C120,181,240,171,360,149.3C480,128,600,96,720,106.7C840,117,960,171,1080,208C1200,245,1320,267,1380,277.3L1440,288L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"/></svg>#clip-path');
}


  .achievements h1{
    color: var(--color7);
    z-index: 10;
    font-weight: 700;
    
  }

  .achievements-card{
    background: white;
    border-radius: 1rem;
    padding: 3rem 0.5rem 0rem 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1; 
    min-width: 250px; 
    max-width: 350px; 
    border: solid 1px rgb(140, 78, 31);
    z-index: 10;
    margin-bottom: 2.5vw;
  }

  .achievements p{
    color: rgb(58, 58, 58);
    margin-bottom: 2vw;
  }

  .achievements-card h3{
    color: var(--color7);
    font-size: 1.rem;
  }


  
  .values-grid {
    display: flex; 
    gap: 2rem;
    justify-content: center; /* Center the cards horizontally */
    margin-top: 3rem; /* Add some space between title and cards */
  }
  
  
  
  .value-card:hover {
    transform: translateY(-5px);
  }
  
  

  

.loc-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.loc-contact-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color7);
  margin-bottom: 20px;
}

.loc-contact-underline {
  width: 150px;
  height: 4px;
  background-color: var(--color9);
  margin: 0 auto;
  border-radius: 2px;
}

.loc-contact-subtitle {
  text-align: center;
  color: var(--color7);
  margin: 30px auto;
  max-width: 600px;
}

.loc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.loc-info-card, .business-hours-card, .contact-form-section {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: var(--color7) solid 1px;
  border-radius: 30px;
}

.info-card-title, .hours-title, .form-title {
  font-size: 1.5rem;
  color: var(--color7);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: #e6edff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: var(--color7);
  font-size: 1.2rem;
}

.contact-details h3 {
  font-size: 1rem;
  color: var(--color7);
  margin-bottom: 5px;
}

.contact-details p {
  color: #666;
  line-height: 1.5;
}

.business-hours-card {
  margin-top: 20px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  color: #666;
}

.holiday {
  color: var(--color8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--color7);
  font-size: 0.9rem;
}

.form-group input, .form-group textarea {
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  color: #1a1a1a;
  background-color: white;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #999;
}

.submit-btn {
  background-image: linear-gradient(135deg, var(--color2), var(--color1), var(--color8));
  color: var(--color7);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding-left: 30px;
}

.submit-btn:hover {
  background-color: var(--color7);
}

@media (max-width: 768px) {
  .loc-contact-grid {
      grid-template-columns: 1fr;
  }

  .loc-contact-title {
      font-size: 2rem;
  }

  .contact-form-section {
      margin-top: 20px;
  }
}

/* Footer Responsive Styles */
.fp-footer {
  background-color: #ffffff;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%238c4e17" fill-opacity="1" d="M0,0L1440,64L1440,320L0,320Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 90px;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.fp-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.fp-footer-section {
  display: flex;
  flex-direction: column;
}

.fp-footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.fp-footer-description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.fp-social-link {
  width: 36px;
  height: 36px;
  background-color: var(--color9);
  color: var(--color7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fp-social-link:hover {
  background-color: var(--color9);
  transform: translateY(-2px);
}

.fp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-footer-link {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.fp-footer-link:hover {
  font-weight: bold;
  color: #ffffff;
}

.fp-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #ffffff;
}

.fp-contact-info i {
  color: var(--color9);
  margin-top: 4px;
}

.fp-opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-opening-hours li {
  margin-bottom: 12px;
  color: #ffffff;
}

.fp-day {
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.fp-time {
  color: #ffffff;
}

.fp-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.fp-footer-bottom p {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .fp-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .fp-footer {
    padding-top: 60px;
    
  }

  .fp-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .fp-footer-section {
    text-align: center;
  }

  .fp-social-links {
    justify-content: center;
  }

  .fp-contact-info li {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .fp-contact-info i {
    margin-bottom: 8px;
  }

  .fp-footer-bottom {
    margin-top: 30px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .fp-footer {
    padding-top: 130px;
  }

  .fp-footer-content {
    padding: 0 20px;
    gap: 30px;
  }

  .fp-footer-title {
    font-size: 1.2rem;
  }

  .fp-footer-description {
    font-size: 0.95rem;
  }

  .fp-social-links {
    gap: 10px;
  }

  .fp-social-link {
    width: 32px;
    height: 32px;
  }

  .fp-footer-bottom p {
    font-size: 0.85rem;
  }
}



/* Add these media queries at the end of your existing CSS */

/* Tablet Styles (768px to 1024px) */
@media screen and (max-width: 1024px) {
  .vvnavBar {
    padding: 0 20px;
  }

  .vvrightNavBarItems {
    margin-right: 20px;
  }

  .vvrightNavBarItems li {
    margin: 0px 15px 0px 5px;
  }

  .values-grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .value-card {
    min-width: 200px;
    flex: 0 0 calc(50% - 1rem);
  }

  .management-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-card {
    flex: 0 0 calc(50% - 1rem);
    margin-left: 160px;
  }

  .mission-vision-grid {
    gap: 1.5rem;
  }
}

/* Mobile Styles (up to 767px) */
@media screen and (max-width: 767px) {


  h1 {
    font-size: 1.8rem !important;
  }

  .container {
    padding: 20px;
  }

  /* .main-timeline .timeline {
    width: 100%;
    margin-bottom: 30px;
  }

  .main-timeline .timeline-content {
    padding: 15px 10px;
  } */

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-card{
    margin-left: 10px;
  }

  .core-values{
    margin-left: 20px;
  }

  .management{
    margin-left: 0px;
  }

  .join-team{
    margin-left: 15px;
  }

  .values-grid {
    flex-direction: column;
  }

  .value-card {
    width: 100%;
    margin-bottom: 1rem;
  }

  .management-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    flex-direction: column;
    padding: auto 10px;
  }

  .stat-card {
    width: 80%;
    margin-bottom: 1rem;
    padding: 1rem;
    margin-left: 30px;
    
  }

  .stats-section{
    margin-left: -18px;
  }

  .stats-section h2{
    display: inline-flex;
    margin-left: 30px;
  }

  .info-card-title{
    margin-left: 70px;
  }

  .achievements .values-grid {
    flex-direction: column;
  }

  .achievements p{
   margin-left: 20px;
  }

  .achievements-card {
    width: 100%;
    margin: 1rem auto;
    margin-left: 25px;
  }

  .loc-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 20px;
  }



  /* Timeline adjustments */
  .main-timeline .timeline-year {
    font-size: 24px;
  }

  .main-timeline .title {
    font-size: 18px;
  }

  .main-timeline .description {
    font-size: 14px;
  }

  /* Mission & Vision adjustments */
  .mission-vision-card {
    padding: 1.5rem;
  }

  .mission-vision-card h2 {
    font-size: 1.8rem;
  }

  /* Core Values adjustments */
  .value-card-main {
    padding: 1.5rem 1rem;
  }

  .value-icon {
    width: 3rem;
    height: 3rem;
  }

  /* Contact form adjustments */
  .form-group input,
  .form-group textarea {
    padding: 10px;
  }

  .submit-btn {
    padding: 12px;
  }
}

/* Small Mobile Styles (up to 480px) */
@media screen and (max-width: 480px) {
  .vvlogo {
    height: 40px;
  }

  .vvsymb {
    font-size: 24px;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  .container {
    padding: 10px;
  }

  .mission-vision-card h2 {
    font-size: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .value-card{
    margin-right: 30px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon {
    margin-bottom: 10px;
  }
}

















