        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            background-color: #f5f5f5;
        }

       


        /* Optional footer CSS for fine-tuning */
        footer a:hover {
            color: #ffc107 !important;
        }

        footer iframe {
            border-radius: 10px;
        }




        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        /* Hero section styles */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            max-height: 800px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            animation: zoomIn 8s ease-in-out infinite alternate;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeInUp 1.5s ease-out;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #f8c537;
            color: #333;
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .hero-button:hover {
            background-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Animations */
        @keyframes zoomIn {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.05);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .hero {
                height: 80vh;
                max-height: 600px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 70vh;
                max-height: 500px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            @keyframes zoomIn {
                0% {
                    transform: scale(1);
                }

                100% {
                    transform: scale(1.1);
                }
            }
        }

        .hero-section {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #e67300;
            font-weight: bold;
            margin-top: 40px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 30px;
        }

        .card-title {
            font-size: 1.5rem;
            color: #c2185b;
            margin-top: 15px;
        }

        .card-text {
            font-size: 1rem;
            color: #333;
        }

        .card {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .divider {
            width: 60px;
            height: 4px;
            background: #e67300;
            margin: 10px auto 30px auto;
        }

        @media (max-width: 767px) {
            .card-title {
                font-size: 1.25rem;
            }
        }

        .management-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('img/hero2.jpg') center/cover no-repeat;
            background-attachment: fixed;
        }

        .team-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        }

        .team-card img {
            height: 240px;
            object-fit: cover;
            border-bottom: 2px solid #eee;
        }


        .card img {
            height: 260px;
            object-fit: cover;
            /* border-bottom: 2px solid #f1f1f1; */
            /* border-radius: 12px 12px 0 0; */
        }

        .card-title {
            font-weight: 600;
            color: #333;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-size: 70% 70%;
        }



        /* ----------------- */

         /* Modern Navbar Styles */
    .navbar {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar-brand {
      font-weight: bold;
      color: #f1c40f !important;
      font-size: 2rem;
      text-shadow: 0 0 5px rgba(241, 196, 15, 0.8);
      transition: all 0.3s ease;
    }

    .navbar-brand:hover {
      transform: scale(1.05);
      text-shadow: 0 0 10px rgba(241, 196, 15, 1);
    }

    .nav-link {
      color: white !important;
      position: relative;
      font-weight: 500;
      padding: 8px 14px;
      transition: 0.3s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #f1c40f;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 70%;
    }

    .nav-link:hover {
      color: #f1c40f !important;
    }

    /* Dropdown hover for desktop */
    @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
      }
    }

    .dropdown-menu {
      background-color: #34495e;
      border: none;
      margin-top: 0;
    }

    .dropdown-item {
      color: white;
      transition: 0.3s ease;
    }

    .dropdown-item:hover {
      background-color: #f1c40f;
      color: black;
      padding-left: 10px;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Toggler */
    .navbar-toggler {
      border: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }


/* --------------- */



.hero-section {
  height: 65vh;
  background: url('img/hero2.jpg') no-repeat center center/cover;
  position: relative;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1, .hero-section p {
  z-index: 2;
  position: relative;
}



/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #fdfbfb, #ebedee);
}

/* Glass Effect Card */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.glass:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}



/* -------------------------------------------------------- */

 .gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-box img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-box:hover img {
  transform: scale(1.1);
}

.gallery-box .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-box:hover .overlay {
  opacity: 1;
}

.gallery-box .text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}


.hero-section {
  height: 60vh;
  background: url('img/hero2.jpg') no-repeat center center/cover;
  position: relative;
}
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-section .container {
  z-index: 2;
  position: relative;
}













        