/* ====== Reset & Base ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1250px !important;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

p {
  font-family: 'Outfit', sans-serif;
}

.btn {
  font-family: 'Raleway', sans-serif;
}

/* ====== Navbar ====== */
/* ====== Navbar ====== */
.navbar {
  transition: background-color 0.4s ease, padding 0.4s ease;
  background-color: transparent !important;
  padding: 10px 0;
}

/* Navbar links */
.navbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #fff !important;
  transition: color 0.3s ease;
  margin-right: 15px;
}

.navbar .nav-link:hover {
  color: #2D2D2D !important;
}

/* Navbar after scroll */
.navbar.scrolled {
  background-color: #67C4DB !important;
  padding: 10px 0;
}

/* Navbar when hamburger menu is open (mobile view) */
.navbar.menu-open {
  background-color: #67C4DB !important;
  padding: 10px 0;
}

/* Optional: adjust text color in scrolled or open state if needed */
.navbar.scrolled .nav-link,
.navbar.menu-open .nav-link {
  color: #fff !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.menu-open .nav-link:hover {
  color: #2D2D2D !important;
}

/* ====== Mobile & Tablet adjustment ====== */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-left: 10px;  /* 👈 Adds space from the left side (logo side) */
    
  }

  .navbar-nav {
    align-items: flex-start; /* Keep items aligned left but inside padded area */
  }

  .navbar .nav-link {
    text-align: left;
    display: block;
    width: 100%;
  }
}


/* ====== Hero Section ====== */
header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* dark overlay */
  z-index: 1;
}

header .container {
  position: relative;
  z-index: 2; /* content above overlay */
}

header h1 {
  font-size: 25px;
  font-weight: normal;
  color: #666666;
}

header .btn {
  background-color: #67C4DB;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 3px;
}

header .btn:hover {
  border: 1px solid #fff;
  background-color: transparent;
  transform: scale(1.05);
}

header .button {
  background-color: transparent;
  font-size: 18px;
  letter-spacing: 1px;
  color: #2D2D2D;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 3px;
  border: 1px solid #2D2D2D;
}

header .button:hover {
  color: #fff;
  border: 1px solid #67C4DB;
  background-color: #67C4DB;
  transform: scale(1.05);
}

  #hero-text {
    transition: opacity 0.5s ease-in-out;
  }

  .fade-out {
    opacity: 0;
  }

  .fade-in {
    opacity: 1;
  }

/* ====== Tablet and Mobile Hero Responsiveness ====== */

/* Tablets / small desktops */
@media (max-width: 992px) {
  header{
    height: 700px;
  }
  header img {
    max-width: 450px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  
  header img {
    max-width: 350px !important;
  }

}

/* ====== Section General ====== */
section {
  padding: 100px 0;
}


section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0 !important;
}

section hr {
  color: #67C4DB;
}

section .text-muted {
  font-size: 20px;
  margin: 0 0 25px 0;
}

section p {
  font-size: 18px;
  color: #2D2D2D;
  line-height: 30px;
}

/* ====== About ====== */

#about img {
  width: 100%;

}

#about h3 {
  font-size: 27px;
  margin-bottom: 20px;
}



/* ====== Services ====== */
#services {
  padding: 100px 0;
}

#services i {
  font-size: 25px;
  color: #fff;
  background-color: #67C4DB;
  border-radius: 50%;
}

#services i:hover {
  color: #67C4DB;
  background-color: #fff;
  border: 2px solid #67C4DB;
}

#services h5 {
  font-weight: 600;
  font-size: 25px;
}

#services .col-md-6 {
  transition: 0.3s;
  border-radius: 5px;
}

#services .col-md-6:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* ====== Blogs ====== */

#blogs .card {
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: 0.3s;
  background-color: #fff;
}

#blogs .card:hover {
  box-shadow: 0 8px 20px rgba(78, 50, 50, 0.15);
  transform: translateY(-3px);
}

#blogs img {
  height: 200px;
  width: 70% !important;
  object-fit: contain;
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#blogs h5 {
  font-weight: 600;
  font-size: 22px;
}

#blogs .btn {
  background-color: #67C4DB;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 3px;
}

#blogs .btn:hover {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
  transform: scale(1.05);
}



/* CAREERS SECTION */

#careers h4{
    font-size: 25px;
    font-weight: 600;
}

#careers h5{
    font-size: 22px;
    font-weight: 500;
}

.career-form {
    background-color: #fff;
}

.career-form input,
.career-form select {
    border-radius: 6px;
    padding: 10px;
}

#careers .form-control:focus,
#careers .form-select:focus {
    border-color: #67C4DB;
    box-shadow: 0 0 4px rgba(0, 183, 255, 0.4);
}


#careers .form-button {
    background-color: #67C4DB;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    padding: 10px 20px;
    transition: 0.3s;
    border-radius: 3px;
}

#careers .form-button:hover {
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
    transform: scale(1.03);
}


/* ====== CTA ====== */

.cta-section {
  position: relative;
  background: url('../assets/cta-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
}

.cta-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 41, 41, 0.6);
  /* dark overlay */
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.cta-section p {
  max-width: 700px;
  color: #fff;
}

.cta-section .btn {
  background-color: #67C4DB;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 3px;
}

.cta-section .btn:hover {
  color: #000;
  background-color: #fff;
  transform: scale(1.05);
}


/* ====== Events ====== */
#events .card {
  border: 1px solid #ddd;
  transition: 0.3s;
  padding: 4px;
  border-radius: 5px;
}

#events .card img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 270px;
}

#events .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#events .card h6 {
  font-weight: 400;
  font-size: 20px;
  color: #67C4DB;
}

/* Event Images */
.event-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Modal content centering */
#eventModal .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #67C4DB;
  /* dark background */
  padding: 20px;
  border-radius: 10px;
}

/* Modal Image */
#eventModalImage {
  width: 100%;
  max-width: 800px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 20px auto;
}

/* Modal Text */
.modal-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Modal Title & Description */
#eventModalTitle {
  font-size: 1.25rem;
  color: #fff !important;
  /* white title */
}

#eventModalDesc {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #fff !important;
  /* white description */
}



/* ====== Testimonials ====== */
#testimonials {
  padding: 100px 0;
}

#testimonials .testimonial-card {
  border: 1px solid #ddd;
  border-left: 6px solid #67C4DB;
  /* bold left border */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: #fff;
}

#testimonials .testimonial-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto;
}

#testimonials .text {
  color: #2D2D2D;
  font-size: 17px;
}

.swiper-pagination-bullet {
  background: #2D2D2D;
}

.swiper-pagination {
  position: relative;
  margin-top: 50px;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 0;
}

/* Equal height and aligned content */
#testimonials .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

#testimonials .swiper-slide {
  display: flex;
  height: auto;
}

#testimonials .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 25px;
}

/* Image alignment */
#testimonials .testimonial-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
  /* ensures consistent gap below image */
}

/* Paragraph alignment and spacing */
#testimonials .text {
  color: #2D2D2D;
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 20px;
  /* space below paragraph */
}


/* ====== Gallery ====== */



#gallery .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Popup Image */
.modal-content img {
    width: 100%;         /* Full width of modal */
    max-width: 800px;    /* Optional: max width */
    height: 450px;       /* Fixed height for all images */
    object-fit: cover;   /* Ensures the image fills the container without stretching */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}


#gallery .card img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #ddd;
}



/* ====== QUICK CONNECT ====== */

#connect .contact-info i {
  color: #67C4DB;
}

#connect .contact-info p {
  font-size: 18px;
}

#connect .form-control,
#connect .form-select {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

#connect .form-control:focus,
#connect .form-select:focus {
  border-color: #67C4DB;
  box-shadow: 0 0 4px rgba(0, 183, 255, 0.4);
}

#connect .btn {
  background-color: #67C4DB;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 3px;
}

#connect button:hover {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
  transform: scale(1.05);
}

/* ====== FOOTER ====== */
footer {
  background-color: #2D2D2D;
}

footer .footer-bottom {
  font-size: 16px;
}

footer .footer-bottom .text-info {
  color: #fff !important;
}

footer .footer-bottom .text-info:hover {
  color: #67C4DB !important;
}



/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
}

.whatsapp-icon {
  margin-top: 15px;
}

.whatsapp_float:hover {
  background-color: #1ebc59;
  text-decoration: none;
}


#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  display: none;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #67C4DB;
  font-size: 15px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}
