

:root {
  --darkPink: #0B2E33;
  --white: #ffffff;
  --lightPink:#2DCD7C;
   --gray:#93B1B5;
}

    body, html {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
    }

    .carousel-item {
      height: 80vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .carousel::before {
      content: "";
      background: rgba(0, 0, 0, 0.5);
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .carousel-caption {
      bottom: 30%  !important;
      z-index: 2;
    }

    .carousel-caption h5 {
      font-size: 1.5rem;
      font-weight: 300;
      margin-top: 30px;
    }

    .carousel-caption h1 {
      font-size: 2.5rem;
      font-weight: bold;
      line-height: 1.1;
    }

    .carousel-caption .btn {
      background-color: #28c76f;
      border: none;
      margin-top: 20px;
      padding: 10px 25px;
    }

    .carousel-arrows {
      position: absolute;
      top: 50%;
      right: 30px;
      transform: translateY(-50%);
      z-index: 5;
    }

    .arrow-btn {
      background-color: rgba(255, 255, 255, 0.9);
      color: #333;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 10px;
      transition: all 0.3s ease;
    }

    .arrow-btn:hover {
      background-color: #28c76f;
      color: #fff;
    }

    .feature-service-section {
      background-color: #f8f9fa;
      padding: 60px 0 40px;
    }

    .feature-icon-circle {
      background-color: #fff;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #28c76f;
      font-size: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
 .feature-icon-circle img{
    width: 30px;
    height: 30px;
 }
    .feature-service-card {
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }

    .feature-service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #28c76f;
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
      z-index: 999;
    }
  

   




     /* --------------news-section----------------------- */


    .latest-news-section {
      padding: 100px 0;
      position: relative;
    }

    .news-left {
      width: 300px;
      height: 350px;
      justify-items: center;
      align-content: center;
    }

    .news-left h2 {
      font-size: 2.5rem;
      font-weight: bold;
      position: relative;
    }

    .news-left h2::before {
      content: "";
      position: absolute;
      left: -60px;
      top: 0;
      width: 50px;
      height: 50px;
      background: url('https://img.icons8.com/ios-filled/50/news.png') no-repeat center;
      background-size: contain;
      opacity: 0.1;
    }

    .news-left p {
      color: #6c757d;
      margin-top: 20px;
    }

    .news-left .btn {
      margin-top: 20px;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 14px;
    }

    .news-carousel-wrapper {
      position: relative;
      flex: 1;
      overflow: hidden;
    }

    .news-carousel {
      display: flex;
      gap: 25px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px 60px;
    }

    .news-carousel::-webkit-scrollbar {
      display: none;
    }

    .news-card {
      position: relative;
      min-width: 280px;
      height: 350px;
      border-radius: 8px;
      overflow: hidden;
      background-color: #000;
      color: #fff;
      flex-shrink: 0;
      cursor: pointer;
    }

    .news-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
      transition: 0.3s ease;
    }

    .news-card:hover img {
      opacity: 0.5;
      transform: scale(1.03);
    }

    .news-content {
      position: absolute;
      bottom: 0;
      padding: 20px;
    }

    .news-content h5 {
      font-size: 1.1rem;
      font-weight: bold;
    }

    .news-content small {
      font-size: 0.8rem;
      color: #ccc;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: white;
      border-radius: 50%;
      border: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .carousel-btn.left {
      left: 0;
    }

    .carousel-btn.right {
      right: 0;
    }
    
    .more-btn{
        background-color: var(--darkPink);
        color: white;
    }

    .more-btn:hover{
        border: 1px solid gray;
    }






/* ------------- Services-------------------- */
 .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h6 {
      color: var(--darkPink);
      text-transform: uppercase;
      font-weight: bold;
      font-size: 1rem;
      letter-spacing: 1px;
    }

    .section-title h2 {
      font-weight: 700;
      font-size: 2.2rem;
      color: #1d1d1d;
    }

    .department-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      padding: 20px;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .department-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .department-title {
      font-weight: 700;
      font-size: 1.6rem;
      color: #333;
      margin-bottom: 40px;
      min-height: 50px;
    }

    .more-btn {
      background-color: transparent;
      border: 1px solid #999;
      color: var(--darkPink);
      font-size: 0.85rem;
      padding: 6px 16px;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .more-btn:hover {
      background-color: var(--darkPink);
      color: #fff;
      border-color: var(--gray);
    }

    .icon-circle {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background-color: var(--gray);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-circle .card-logo {
     height: 30px;
    }


.service-card-container{
  justify-content: center;
}





/* NIOS & E-AXIS */

   .card-box {
      background-color: #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: all 0.4s ease;
    }

    .card-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .card-box img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-body {
      padding: 20px !important;
      text-align: center;
    }

    .card-body h5 {
      font-weight: bold;
      margin-bottom: 10px;
      color: #004b4f;
    }

    .card-body p {
      font-size: 0.9rem;
      color: #555;
      min-height: 60px;
    }

    .card-body .arrow-link {
      display: inline-block;
      margin-top: 10px;
      color: var(--darkPink);
      font-weight: bold;
      font-size: 1.2rem;
      transition: transform 0.2s;
    }

    .card-body .arrow-link:hover {
      transform: translateX(4px);
    }

    .large-services-box {
      background: var(--darkPink);
      color: white;
      padding: 40px 30px;
      border-radius: 6px;
      height: 100%;
    }

    .large-services-box h5 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .large-services-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .large-services-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 0.95rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .large-services-list li:hover {
      color: var(--lightPink);
      
    }

    .large-services-list li.active {
      color: var(--lightPink);
      font-weight: bold;
    }

    .large-services-list li i {
      font-size: 1rem;
    }

    @media (max-width: 991px) {
      .large-services-box {
        margin-top: 30px;
      }
    }

.arrow-link{
  padding: 0px 20px;
  border-radius: 50px;
  border: 1px solid var(--darkPink);
}

.arrow-link:hover{
  background-color: var(--darkPink);
  color: white;
}



/* staticals */

    .stats-section {
      background-color: var(--darkPink);
      background-size: contain;
      padding: 60px 0;
      color: #fff;
      border-top-left-radius: 60px;
       border-bottom-right-radius: 60px;
       margin-bottom: 40px;
    }

    .stat-box {
      text-align: center;
      padding: 10px 15px;
    }

    .icon-container {
      position: relative;
      background-color: var(--lightPink);
      width: 110px;
      height: 110px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-container::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 12px solid var(--lightPink);
    }

    .icon-container i {
      color: var(--darkPink);
      font-size: 40px;
    }

    .home-stat-number {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
    }

    .home-stat-label {
      font-size: 18px;
      margin-top: 10px;
      line-height: 1.4;
    }

    @media (max-width: 768px) {
      .home-stat-number {
        font-size: 36px;
      }

      .home-stat-label {
        font-size: 16px;
      }
    }



.statical-img{
 height: 70px;
 width: 70px;
}





/* event */

 .events-section {
      padding: 50px 0;
    }

    .section-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 30px;
    }

    .event-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .event-card img {
      width: 100%;
      border-radius: 10px;
      height: 350px;
      object-fit: cover;
    }

    .event-caption {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      width: 100%;
      padding: 15px;
    }

    .event-caption h5 {
      margin: 0;
      font-weight: 700;
    }

    .event-caption small {
      display: flex;
      gap: 15px;
      font-size: 14px;
      margin-top: 5px;
    }

    .event-thumbnails img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
    }

    .schedule-tabs .nav-link {
      border: none;
      font-weight: 600;
      color: #333;
    }

    .schedule-tabs .nav-link.active {
      background-color: var(--darkPink) !important;
      color: #fff !important;
      border-radius: 5px 5px 0 0;
    }

    .schedule-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #333;
    }

    .schedule-item img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 15px;
    }

    .schedule-info {
      flex-grow: 1;
    }

    .schedule-info h6 {
      margin: 0;
      font-weight: 600;
    }

    .schedule-info small {
      color: #888;
    }

    .join-btn {
      border: 2px solid #ccc;
      border-radius: 20px;
      padding: 5px 15px;
      background: none;
      color: #333;
      font-weight: 500;
    }


 /* --------------gallery------------------------------- */


       .portfolio-section {
      padding: 60px 0;
      text-align: center;
      background-color: #f8f9fa;
    }

    .portfolio-section h6 {
      color: green;
      text-transform: uppercase;
      font-weight: bold;
    }

    .portfolio-section h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 40px;
    }

    .swiper {
      padding-bottom: 50px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .card {
      position: relative;
      overflow: hidden;
      border: none;
      border-radius: 12px;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 128, 0, 0.85);
      color: white;
      padding: 10px 15px;
      transform: translateY(100%);
      transition: transform 0.3s ease-in-out;
    }

    .card:hover .overlay {
      transform: translateY(0);
    }

    .swiper-pagination-bullets {
      bottom: 10px !important;
    }

    .swiper-pagination-bullet {
      background-color: #007b5e;
    }

    .partners img {
      max-width: 120px;
      margin: 0 20px;
      opacity: 0.6;
      transition: 0.3s;
    }

    .partners img:hover {
      opacity: 1;
    }


/* partners sections */
  
    .taste-section {
      text-align: center;
      padding: 60px 20px 40px;
    }

    .taste-section h2 {
      color: #004225;
      font-weight: 600;
      margin-bottom: 40px;
    }

    .carousel-container {
      overflow: hidden;
      position: relative;
    }

    .card-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .taste-card {
      flex: 0 0 20%;
      padding: 10px;
    }

    .taste-img {
      width: 80%;
      height: 75px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .taste-img:hover {
      transform: scale(1.05);
    }

    .carousel-dots {
      margin-top: 20px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #ccc;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
    }

    .dot.active {
      background-color: #a01e00;
    }

    @media (max-width: 768px) {
      .taste-card {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 576px) {
      .taste-card {
        flex: 0 0 100%;
      }
    }

    
    /* news-letter-section */
    
        .newsletter-section {
      background-color: #2ecc71;
      /* margin-top: -70px;
      margin-bottom: 70px; */
      color: white;
      padding: 30px 20px;
      
    }

    .newsletter-icon {
      font-size: 60px;
      margin-right: 20px;
    }

    .newsletter-text h4 {
      font-weight: 700;
      font-size: 28px;
      margin: 0;
    }

    .newsletter-text small {
      display: block;
      margin-bottom: 5px;
      font-size: 16px;
    }

    .newsletter-form input[type="email"] {
      border-radius: 0;
      border: none;
      padding: 15px;
      height: 100%;
    }

    .newsletter-form .btn-subscribe {
      background-color: #043f4f;
      color: white;
      padding: 15px 30px;
      border-radius: 0;
      font-weight: 600;
    }

    .newsletter-form .btn-subscribe:hover {
      background-color: #022c35;
    }

     @media (max-width: 768px) {
      .carousel-caption h5 {
      font-size: 1.2rem;
     
    }

    .carousel-caption h1 {
      font-size: 1.9rem;
      
    }

    }
