/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1753694130
Updated: 2025-07-28 09:15:30

*/

/* History section */
 .year-box {
      position: relative;
      width: 174px;
      height: 67px;
      display: flex;
      align-items: center;
      font-size: 28px;
      font-weight: 500;
      line-height: 36px;
    }
    .year-box.active {
      color: #FC6C05;
      font-weight: 600;
    }
    .timeline-line {
      position: relative;
      width: 2px;
      height: 468px;
      background-color: #e5e7eb;
      margin-left: 0;
      margin-right: 1.5rem;
    }
    .highlight-line {
      position: absolute;
      width: 2px;
      height: 67px;
      background-color: #FC6C05;
      top: 0;
      left: 0;
    }
    .diamond {
      position: absolute;
      left: 50%;
      width: 10px;
      height: 10px;
      background-color: #FC6C05;
      transform: translateX(-50%) rotate(45deg);
    }
    .content-text {
      font-size: 34px;
      font-weight: 400;
      line-height: 45px;
      letter-spacing: -0.005em;
      font-family: 'Lora', serif;
    }

@media (max-width: 768px) {
  main {
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden; /* Prevent horizontal scroll */
  }
.mobile-height {
    height: 384px !important;
	}
	.year-box {
    font-size: 16px;
    height: auto;
    padding: 8px 12px;
    margin-bottom: 10px;
    text-align: left;
    width: auto;
    white-space: nowrap;
  }

  .timeline-line {
    width: 2px;
    height: 200px;
    margin: 0 16px;
  }

  .highlight-line {
    width: 2px;
    height: 67px;
  }

  .diamond {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  section[style*="width: 952px"] {
    width: 100% !important;
    height: 468px !important;
    margin-left: 0 !important;
    border-top-right-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    position: relative;
    overflow: hidden;
  }

  .content-text,
  #content {
    font-size: 20px !important;
    line-height: 28px !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 60px !important;
    position: absolute !important;
    color: white !important;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  section img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-top-right-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
  }
  
  /* Optional: Hide any unintended scrollbars */
  body {
    overflow-x: hidden;
  }
}

/* Campus Life */
 .campus-container {
    font-family: "Inter", sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0 40px 20px;
  }

  .cards-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-behavior: smooth;
  }

  .cards-container::-webkit-scrollbar {
    display: none;
  }

  .cards-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .card {
	border:none;
    position: relative;
    width: 369px;
    height: 437px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
  }
.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}
  .card-radius-1 {
    border-radius: 50px 0 50px 0;
  }

  .card-radius-2 {
    border-radius: 0 50px 0 50px;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
.card:hover img {
  transform: scale(1.5); /* Slight zoom */
}

.card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150%;
 background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
  color: #1F2937;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Push content to the bottom */
  padding: 20px; /* Uniform padding */
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
  overflow: hidden;
  opacity: 1;
}


.card-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%; /* Top fading zone */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  pointer-events: none;
  z-index: 1;
}

/* Ensure content appears above the fade */
.card-overlay > * {
  position: relative;
  z-index: 2;
}


  .card:hover .card-overlay {
    transform: translateY(0%);
	  border:none;
  }

  .overlay-title {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 6px;
  }

  .overlay-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2%;
  }

  .card-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    font-size: 20px;
    line-height: 1.3;
	font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .card:hover .card-label {
    transform: translateY(20px);
    opacity: 0;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-right: 40px;
  }

  .nav-buttons {
    display: flex;
    gap: 8px;
  }

  .nav-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .nav-button i {
    font-size: 18px;
  }

  .action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
	height:56px
  }

  .discover-button {
    background-color: #F97316;
    color: white;
    padding: 0 24px;
    height: 56px;
    border-radius: 24px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .discover-button:hover {
    background-color: #EA580C;
  }

  .action-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .action-button:hover {
    background-color: #FFF7ED;
  }

  @media (max-width: 767px) {
    .card {
      width: 280px;
      height: 350px;
    }
	  .action-button{
		  width:40px;
		  height:40px;
	  }
	    .nav-button {
    width: 40px;
    height: 40px;
	  }
	  .discover-button{
		  height:40px;
	  }
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding-right: 20px;
    }
  }



/* Faqs */
  .faq-section {
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
  }

  .faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
  }

  .faq-question {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.5%;
    cursor: pointer;
    position: relative;
    padding-right: 32px;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    line-height: 32px;
    color: #333;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.02%;
    margin-top: 12px;
  }

  .faq-item.active .faq-answer {
    max-height: 500px; /* adjust as needed */
  }


@media (max-width: 480px) {
  .faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
  }
  .faq-answer {
   color: #3B3B3B;
/* Inter/14/regular */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
letter-spacing: 0.14px;
  }
	.faq-question{	
	color:#222;
font-family: Lora;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 32px; /* 177.778% */
letter-spacing: -0.09px;
	}
}

/* Core Values */

.faccts-accordion-container {
  font-family: 'Inter', sans-serif;
  max-width:1146px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Image Styles */
.faccts-image-container {
  width: 100%;
  margin: 0 auto;
  border: 2px solid #FC6C05;
  border-radius:0 55px 0 55px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faccts-image {
  width: 576px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.faccts-image:hover {
  transform: scale(1.02);
}

/* Accordion Styles */
.faccts-accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faccts-item {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faccts-item:hover {
  border-bottom-color: #FC6C05;
}

.faccts-item.active {
  border-bottom-color: #FC6C05;
}

.faccts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.faccts-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
  color: #1a1a1a;
  transition: all 0.3s ease;
  padding-right: 15px;
}

.faccts-item.active .faccts-title {
  font-weight: 500;
  color: #FC6C05;
}

.faccts-progress {
  width: 24px;
  height: 24px;
  display: none;
  flex-shrink: 0;
}

.faccts-item.active .faccts-progress {
  display: block;
}

.faccts-progress-circle {
  width: 27.5px;
  height: 27.5px;
  transform: rotate(-90deg);
}

.faccts-progress-bg {
  fill: none;
  stroke: #f5f5f5;
  stroke-width: 4;
}

.faccts-progress-fill {
  fill: none;
  stroke: #FC6C05;
  stroke-width: 4.38;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
}

.faccts-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faccts-content.open {
  max-height: 300px;
}

.faccts-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  padding-right: 30px;
}

.faccts-content.open .faccts-text {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .faccts-accordion-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  
  .faccts-image-container {
    margin: 0;
    position: sticky;
    top: 30px;
  }
}

@media (max-width: 768px) {
  .faccts-title {
    font-size: 22px;
    line-height: 30px;
  }
  
  .faccts-text {
    font-size: 15px;
  }
  
  .faccts-accordion-container {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .faccts-title {
    font-size: 20px;
    line-height: 28px;
  }
 .faccts-accordion-container {
    gap: 30px;
  }
  
  .faccts-header {
    margin-bottom: 8px;
  }
  
  .faccts-item {
    padding-bottom: 12px;
    margin-bottom: 15px;
  }
}


/* testimonial */
/* Testimonial Slider Styles */
.testimonial-slider-container {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.testimonial-slider {
    width: 100%;
    max-width: 1146px;
    position: relative;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.testimonial-image {
    width: 100%;
    max-width: 450px;
    height: 509px;
    border-top-left-radius: 60px;
    overflow: hidden;
    background: transparent;
}

.testimonial-img {
    width: 100%;
    height: 509px !important;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    max-width: 696px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #3B2F2F;
    background-color: #FED4B5;
    border-bottom-right-radius: 60px !important;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.06%;
    margin: 0;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.02%;
    margin: 24px 0 0 0;
}

.testimonial-relation {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2%;
    margin: 4px 0 0 0;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    position: relative;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #3B2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3B2F2F;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}



.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #7B6B6B;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background-color: #3B2F2F;
}

.testimonial-avatars-container {
    width: 100%;
    max-width: 1146px;
    display: flex;
    justify-content: flex-end;
    margin-top: -25px;
    margin-right: 80px;
}

.testimonial-avatars {
    display: flex;
    gap: 12px;
    z-index: 10;
}

.testimonial-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-avatars img.active-avatar {
    border-color: #FC6C05;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonial-wrapper {
        flex-direction: column;
    }
    
    .testimonial-image {
        max-width: 100%;
        height: 400px;
        border-radius: 60px 60px 0 0;
    }
    
    .testimonial-content {
        border-radius: 0 0 60px 60px;
        padding: 40px 30px;
    }
    
    .testimonial-avatars-container {
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-image {
        height: 350px;
    }
    
    .testimonial-text {
        font-size: 18px;
        line-height: 28px;
    }
    
    .testimonial-author {
        font-size: 16px;
        line-height: 26px;
    }
    
    .testimonial-relation {
        font-size: 14px;
        line-height: 22px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-nav {
        justify-content: start;
    }
    
    .testimonial-avatars {
        gap: 8px;
    }
    
    .testimonial-avatars img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
	.testimonial-wrapper {
       width: 100%;
max-width: 355px;
    }
    .testimonial-image {
		width: 100%;
        max-width: 355px;
        height: 300px;
        border-radius: 40px 0 0 0;
    }
    
    .testimonial-content {
		width: 100%;
        max-width: 355px;
        border-radius: 0 0 40px 0;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 26px;
    }
    
    .testimonial-nav {
        margin-top: 24px;
    }
    
    .testimonial-arrow {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
    }
	    .testimonial-avatars-container {
        justify-content: end;
        margin-top: -20px;
    }
}




/* news */
    .news-wrapper {
      max-width: 1140px;
      margin: 0 auto;
      border-radius: 50px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

.news-divider{
	overflow:hidden;
}

    @media (min-width: 768px) {
      .news-wrapper {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .main-news {
      width: 100%;
    }

    @media (min-width: 768px) {
      .main-news {
        width: 60%;
      }
    }

    .main-news img {
      width: 100%;
      height: auto;
      border-top-left-radius: 50px;
      border-bottom-right-radius: 50px;
      max-width: 660px;
      max-height: 367px;
      object-fit: cover;
    }

    .date {
      margin-top: 23px;
      color: #555;
      font-family: Inter;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }

    .newstitle {
      margin-top: 12px;
      color: #222;
      font-family: Lora, serif;
      font-size: 24px;
      font-weight: 500;
      line-height: 34px;
      letter-spacing: -0.12px;
    }

    .description {
      margin-top: 12px;
      color: #3B3B3B;
      font-family: Inter;
      font-size: 18px;
      font-weight: 400;
      line-height: 26px;
    }

    .side-news {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    @media (min-width: 768px) {
      .side-news {
        width: 38%;
      }
    }

    .news-card {
      display: flex;
      gap: 12px;
      cursor: pointer;
    }

    .news-card img {
      width: 126.573px;
      height: 74.646px;
      min-width: 126.573px;
      min-height: 74.646px;
      max-width: 126.573px;
      max-height: 74.646px;
      border-top-right-radius: 18px;
      border-bottom-left-radius: 18px;
      object-fit: cover;
      display: block;
    }

    .news-card.active {
      opacity: 0.8;
      transform: scale(1.01);
    }

    .news-info h3 {
      font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px;
		color:#222;
    }

    .news-info span {
      font-family: Inter;
      font-weight: 400;
      font-size: 14px;
      line-height: 22px;
      color: #222;
    }

    .news-footer {
      max-width: 1140px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 40px auto 0;
    }

    /* New Nav Container & Buttons */
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .nav-buttons {
      display: flex;
      gap: 8px;
    }

    .nav-button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid #9CA3AF;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #374151;
      background: transparent;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .nav-button:hover {
      color: #F97316;
    }

    .nav-button i {
      font-size: 18px;
    }

    .action-buttons {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-right: 40px;
    }

    .discover-button {
      background-color: #F97316;
      color: white;
      padding: 0 24px;
      height: 56px;
      border-radius: 24px;
      border: none;
      font-size: 16px;
      font-weight: 400;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .discover-button:hover {
      background-color: #EA580C;
    }

    .action-button {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid #F97316;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #F97316;
      background: transparent;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .action-button:hover {
      background-color: #FFF7ED;
    }
@media (max-width: 480px) {
    .nav-buttons {
        display:none;
    }
}

/* sidebar */
/* Main container */
.vgws-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Menu wrapper */
.vgws-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .vgws-menu-wrapper {
        flex-direction: row;
        gap: 5rem;
    }
}

/* Main menu styles */
.vgws-main-menu {
    width: 100%;
    max-width: 360px;
    border-top: 2px solid #f9d6b8;
    border-radius: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vgws-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.vgws-menu-item.active {
    background-color: #fff1e8;
}

.vgws-menu-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.vgws-menu-icon-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a4a4a;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 400;
}

.vgws-menu-item.active .vgws-menu-icon-title {
    font-weight: 600;
    color: #3b3b3b;
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    line-height: 3.125rem;
    letter-spacing: -0.02px;
}

.vgws-menu-indicator {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 0.125rem;
    background-color: #a3a3a3;
}

.vgws-menu-item.active .vgws-menu-indicator {
    background-color: #d46a1f;
}

/* Submenu styles */
.vgws-submenu {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 20rem;
}

@media (min-width: 768px) {
    .vgws-submenu {
        margin-top: 0;
    }
}

.vgws-submenu-section {
    display: none;
}

.vgws-submenu-section.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vgws-submenu-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #222;
    font-family: 'Lato', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.875rem;
    letter-spacing: -0.28px;
    text-decoration: none;
}

.vgws-submenu-item:hover {
    text-decoration: underline;
}

.vgws-submenu-item i {
    color: #d46a1f;
}

/* Decoration styles */
.vgws-menu-decoration {
    position: relative;
    width: 100%;
    max-width: 28rem;
    height: 12rem;
    margin-top: 5rem;
}

.vgws-deco-square {
    position: absolute;
    background-color: #fff1e8;
}

.vgws-deco-1 {
    top: 3rem;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
}

.vgws-deco-2 {
    top: 3.5rem;
    left: 9rem;
    width: 1rem;
    height: 1rem;
}

.vgws-deco-3 {
    bottom: 0;
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
}




/* Sidebar Panel */
.sidebar-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 15px rgba(0,0,0,0.1);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.sidebar-panel.active {
  left: 0;
}

/* Button Styles */
.drawer {
  cursor: pointer;
  padding: 10px 15px;
  background: #3f51b5;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s;
}

.drawer:hover {
  background: #303f9f;
  transform: translateY(-1px);
}

.closer {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #555;
  transition: color 0.2s;
}

.closer:hover {
  color: #333;
}

/* Body scroll lock */
.no-scroll {
  overflow: hidden;
}

/* Backdrop overlay (optional) */
.sidebar-panel::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 300px);
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sidebar-panel.active::before {
  opacity: 1;
  pointer-events: auto;
}


.slider-container {
    width: 100%;
    overflow-x: auto;
}
.slider-container::-webkit-scrollbar {
    display: none;
}

.slides {
    display: flex;
}


