/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body */
body {
    line-height: 1.6;
    color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  padding: 10px 20px;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
}

.top-bar .contact-info span {
  margin-right: 15px;
}

.top-bar .social-icons a img {
  width: 20px;
  margin-left: 10px;
}

/* Top Bar */
@media (max-width: 992px) {
    .top-bar {
        flex-direction: row;
        align-items: center;
        padding: 10px 20px;
    }
    .top-bar .social-icons {
        margin-top: 10px;
        align-items: center;
        width: 150px;
    }
    .top-bar .contact-info {
        width: 250px;
    }
}

/* Navbar */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* 🔹 reduced from 50px to 20px */
  padding: 10px 10px;
  flex-wrap: nowrap; /* force single line */
}


/* Logo */
.logo img {
  height: 40px;
  width: 120px;
  flex-shrink: 0; /* never shrink */
}

/* Navbar Links */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  white-space: nowrap; /* prevent wrapping */
  flex-shrink: 1;
}

nav ul li {
  overflow: hidden;
  text-overflow: ellipsis;
}

nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "dm-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: bold;
}

nav ul li a:hover {
  color: #f10f58;
}

/* Dropdown */
.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 400px;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 1200;
}

.dropdown-menu li a {
  padding: 8px 16px;
  color: #333;
  font-size: 14px;
  width: 250px;
  font-family: "dm-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #e74c3c;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Enquire Button */
.enquire-btn {
  padding: 8px 15px;
  background: #f10f58;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  height: 40px;
  letter-spacing: 2px;
  flex-shrink: 0; /* never shrink */
  white-space: nowrap;
}

.enquire-btn a{
  text-decoration: none;
  color: #fff;
}

.enquire-btn a:hover {
  background: #fff;
  color: black;
  transition: background 0.0000000000001s, color 0.00000000001s;
}

.enquire-btn:hover {
  background: #fff;
  color: black;
  transition: background 0.0000000000001s, color 0.0000000000001s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .nav-container {
    justify-content: space-evenly; /* logo + button side by side */
  }
  nav {
    justify-content: space-evenly;
    overflow-x: auto; /* horizontal scroll for links if needed */
    -webkit-overflow-scrolling: touch;
    flex-direction: row;
    align-items: center;
    padding: 10px 20px 10px 20px;
    gap: 50px;
  }
  nav ul {
    gap: 10px;
  }
}

/* Font size scaling */
@media (max-width: 768px) {
  nav ul li a {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  nav ul li a {
    font-size: 10px;
  }
}

/* Banner Slider */
.banner-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
  animation-duration: 1.5s;
}

.banner-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slides .slide {
    position: absolute;
    width: 100%;
    height: 500px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

/* `.fade-in` was making all slides visible; instead we control visibility
   via animation (s1/s2 classes) or via the `.active` class toggled by JS. */

/* When JS toggles an active slide, make it visible */
.slides .slide.active {
    opacity: 1;
    z-index: 2;
}

.button {
    gap: 20px;
}

.services-btn{
    width: 150px;
    height: 40px;
    background: transparent;
    color: #fff;
    border: white 2px solid;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    height: 40px;
    letter-spacing: 2px;
    flex-shrink: 0; /* never shrink */
    white-space: nowrap;
}

.about-us-btn {
    width: 150px;
    height: 40px;
    background: white;
    color: #f10f58;
    border: white 2px solid;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    height: 40px;
    letter-spacing: 2px;
    flex-shrink: 0; /* never shrink */
    white-space: nowrap;
}

.about-us-btn a{
  text-decoration: none;
  color: #f10f58;
}

.slide-text {
    position: absolute;
    top: 20%;
    left: 10%;
    color: #fff;
    display: block;
    align-items: right;

}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: "sanvito-pro-display", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.slide-text p {
    font-size: 18px;
}

/* Arrows */
.arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrows button,
.arrows label {
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border: none;
}

@media (max-width: 1200px) {
    .banner-slider, 
    .banner-slider img,
    .slides .slide {
        height: 400px;
    }
    .slide-text h1 {
        font-size: 36px;
    }
    .slide-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner-slider, 
    .banner-slider img,
    .slides .slide {
        height: 300px;
    }
    .slide-text {
        top: 20%;
        left: 5%;
    }
    .slide-text h1 {
        font-size: 28px;
    }
    .slide-text p {
        font-size: 14px;
    }
    .arrows button,
    .arrows label {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .banner-slider, 
    .banner-slider img,
    .slides .slide {
        height: 200px;
    }
    .slide-text {
        top: 15%;
        left: 5%;
    }
    .slide-text h1 {
        font-size: 22px;
    }
    .slide-text p {
        font-size: 12px;
    }
    .arrows button,
    .arrows label {
        padding: 6px;
        font-size: 12px;
    }
}

/* About Section */
.about {
    display: flex;
    justify-content: left;
    padding: 80px 50px 50px 230px;
    background: #f5f5f5;
}

.about-container {
    display: flex;
    max-width: 1200px;
    position: relative;
    gap: 40px;
}

.about-container img {
    width: 522px;
    height: 595px;
}

.about-card {
    position: absolute;
    left: 70%;
    top: 20%;
    background: linear-gradient(to bottom, #fff 60%);
    padding: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    list-style: none;
    width: 700px;
}

.about-card h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
}

.about-card p {
    line-height: 1.5;
    font-family: "dm-sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.list-group-item1{
  background-color: #f10f58;
  color: white;
  padding: 30px;
  margin-top: 10px;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: 650px;
        width: 375px;
    }

    .about-card {
        width: 340px;
    }

    .about-container img{
        width: 335x;
        height:300px
    }

    .about-card h2 {
        font-size: 32px;
    }

    .about-card p {
        font-size: 15px;
    }

    .list-group-item1 {
        font-size: 13px;
        padding: 12px 15px;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .about {
        padding: 50px 20px;
        width: auto;
    }

    .about-container img {
        width: 200px;
        height: 200px;
    }

    .about-card {
        margin-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        width: 340px;

    }

    .about-card h2 {
        font-size: 24px;
    }

    .about-card p {
        font-size: 14px;
    }

    .list-group-item1 {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* Middle Image + Bubbles */
.middle-image {
    position: relative;
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(340deg, #FFB9E5 22.344970703125%, #ECF872 51.0040283203125%, #BEE0E6 76.86767578125%);;
}

.middle-image .image-container {
    position: relative;
    display: inline-block;
}

.middle-image img {
    width: 617px;
}

.bubble {
    position: absolute;
    width: 213px;
    height: 199px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #ed5829;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    transition: transform 0.3s;
    font-style: wfont_ba2cd3_3184f6049fac41c5afca8dbd25c26960, wf_3184f6049fac41c5afca8dbd2, orig_poppins_regular;
    opacity: 0.9;
}



.bubble a{
  text-decoration: none;
    color: #ed5829;
}

.top-left {
    top: -60px;
    left: -200px;
}

.middle-right {
    top: 15%;
    right: -230px;
}

.bottom-left {
    bottom: -10px;
    left: -280px;
}

/* Services */
.services {
    text-align: center;
    padding: 80px 50px;
    position: relative;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better readability */
    color: #000000;
    width: 100%;
}

.services video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.services h2 {
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: "sanvito-pro-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    justify-items: center;
    grid-auto-rows: 1fr;
}

.service-cards .card {
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 1.2;
    margin: 0 auto;
    opacity: 0;
    animation: popUp 0.6s ease-out forwards;
}

/* Add staggered delay for each card */
.service-cards .card:nth-child(1) { animation-delay: 0.1s; }
.service-cards .card:nth-child(2) { animation-delay: 0.2s; }
.service-cards .card:nth-child(3) { animation-delay: 0.3s; }
.service-cards .card:nth-child(4) { animation-delay: 0.4s; }
.service-cards .card:nth-child(5) { animation-delay: 0.5s; }
.service-cards .card:nth-child(6) { animation-delay: 0.6s; }
.service-cards .card:nth-child(7) { animation-delay: 0.7s; }
.service-cards .card:nth-child(8) { animation-delay: 0.8s; }
.service-cards .card:nth-child(9) { animation-delay: 0.9s; }
.service-cards .card:nth-child(10) { animation-delay: 1.0s; }
.service-cards .card:nth-child(11) { animation-delay: 1.1s; }
.service-cards .card:nth-child(12) { animation-delay: 1.2s; }
.service-cards .card:nth-child(13) { animation-delay: 1.3s; }
.service-cards .card:nth-child(14) { animation-delay: 1.4s; }
.service-cards .card:nth-child(15) { animation-delay: 1.5s; }

.service-cards .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    transform: scale(1.1);  /* Start slightly zoomed in */
}

.service-cards .card:hover img {
    transform: scale(1);    /* Zoom out to normal size on hover */
}

.card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    min-height: 80px;
}

.service-cards .card h3 {
    color: #000000;
    text-align: center;
    margin: 0;
    font-weight: 20px;
    letter-spacing: 0.5px;
    font-family: "sanvito-pro-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
}

/* testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #fafafa;
    text-align: center;
    font-family: "Poppins", sans-serif;
    background-image: linear-gradient(90deg, rgba(241,15,88,0.7) 0%, rgba(85,14,155,0.7) 100%), url('Testimonials.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    /* Gradient overlay on top of image, only one image, no tiling */
}

.section-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 60px;
  font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
}

/* Slider Container */
.testimonial-slider {
  position: relative;
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50px;
}

/* Slider Track */
.testimonial-track {
  display: flex;
  width: 1100px; /* 1100px * 7 cards */
  height: 350px;
  animation: slideLeft 35s infinite ease-in-out;
}

/* Each Card */
.testimonial-card {
  flex: 1 0 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  box-sizing: border-box;
}

/* Image Stack (Left) */
.testimonial-images {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.testimonial-images .square {
  width: 255px;
  height: 268px;
  border-radius: 15px;
  object-fit: cover;
  position: absolute;
  top: -50px;
  left: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.testimonial-images .circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 30px;
  left: -40px;
  border: 24px solid #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Text Content (Right Side) */
.testimonial-content {
  flex: 1;
  text-align: left;
  padding-left: 150px;
}

.testimonial-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: "dm-sans", sans-serif;
font-weight: 500;
font-style: normal;
}

.testimonial-content h4 {
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}

/* Animation for Sliding */
@keyframes slideLeft {
  0% { transform: translateX(0); }
  12% { transform: translateX(0); }

  14% { transform: translateX(-100%); }
  26% { transform: translateX(-100%); }

  28% { transform: translateX(-200%); }
  40% { transform: translateX(-200%); }

  42% { transform: translateX(-300%); }
  54% { transform: translateX(-300%); }

  56% { transform: translateX(-400%); }
  68% { transform: translateX(-400%); }

  70% { transform: translateX(-500%); }
  82% { transform: translateX(-500%); }

  84% { transform: translateX(-600%); }
  96% { transform: translateX(-600%); }

  98% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

/* ---------------- Responsive Design ---------------- */

/* For large tablets and small desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .testimonial-slider {
    width: 90%;
  }

  .testimonial-card {
    padding: 30px 40px;
  }

  .testimonial-content {
    padding-left: 100px;
  }

  .testimonial-images .square {
    width: 200px;
    height: 210px;
    top: -40px;
    left: 20px;
  }

  .testimonial-images .circle {
    width: 90px;
    height: 90px;
    left: -30px;
    top: 20px;
  }
}

/* For tablets (max-width: 992px) */
@media (max-width: 992px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .testimonial-images {
    margin-bottom: 30px;
    width: 180px;
    height: 180px;
    justify-self: center;
  }

  .testimonial-images .square {
    position: relative;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
  }

  .testimonial-images .circle {
    position: relative;
    top: -50px;
    left: 0;
    width: 180px;
    height: 180px;
    margin-bottom: 15px; /* Hide overlapping image for smaller screens */
  }

  .testimonial-content {
    padding-left: 0;
    text-align: center;
  }

  .testimonial-content p {
    font-size: 16px;
  }
}

/* For mobile devices (max-width: 600px) */
@media (max-width: 600px) {
  .testimonials {
    padding: 60px 20px;
    height: 800px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .testimonial-slider {
    width: 100%;
    border-radius: 20px;
    height: 560px;
    width: 200px;
  }

  .testimonial-card {
    padding: 25px 20px;
    border-radius: 10px;
    height: 560px;
    width: 45px;
  }

  .testimonial-images {
    width: 200px;
    height: 200px;
  }

  .testimonial-images .square {
    width: 200px;
    height: 200px;
  }

  .testimonial-images .circle {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
  }

  .testimonial-content p {
    font-size: 15px;
    line-height: 1.5;
    width: 300px;
  }

  .testimonial-content h4 {
    font-size: 16px;
  }
}

/* For very small devices (max-width: 400px) */
@media (max-width: 400px) {
  .section-title {
    font-size: 1.5rem;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .testimonial-content h4 {
    font-size: 15px;
  }
}



/* News & Events */
.news-events {
    padding: 80px 50px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color:white;
}

.events-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event-card {
    width: 290px;
    height: 330px;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
}

.event-card .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    padding: 30px 30px 30px 30px;
    box-sizing: border-box;
    gap: 10px;
    justify-content: space-around;
}

.event-card .event-section1 {
    width: 100%;
    text-align: left;
    font-size: 1em;
    font-weight: 500;
    word-break: break-word;
    margin-bottom: 30px;
    font-family: "dm-sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.event-card .event-section2 {
    width: 100%;
    text-align: left;
    align-content: end;
    word-break: break-word;
    margin-top: 30px;
    justify-content: space-between;
    font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size:20px;
}

.event-card .event-section3 {
    width: 100%;
    text-align: left;
    font-size: 1em;
    font-weight: 500;
    word-break: break-word;
    margin-bottom: 40px;
}

.event-card .event-section:last-child {
    margin-bottom: 40px;
}


/* Team */
.team {
    padding: 80px 50px;
    text-align: center;
    background: #f5f5f5;
    background-image: url(teambg.png);
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.team-members .member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    justify-content: space-between;
}

.team-members .member h3 {
    margin-top: 15px;
    font-size: 20px;
    color: white;
    font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
}

.team-members .member p {
    color: white;
}

/* Contact Form */
.contact {
    padding: 80px 50px;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact .form-row {
    display: flex;
    gap: 15px;
}

.contact input, .contact textarea, .contact select {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact select.country-code {
    width: 200px;
    flex-shrink: 0;
    background-color: white;
}

.contact input[type="tel"] {
    flex: 1;
}

.contact button {
    padding: 12px;
    border: none;
    background: #e74c3c;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact button:hover {
    background: #c0392b;
}

.cont-container {
  background: #fff;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

/* Contact Info Table */
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  text-align: left;
}

.con-table{
    padding: 10px 150px;
}

.contact-table tr{
    justify-items: right;
}

.contact-table td {
  padding: 15px;
}

.contact-table td:last-child {
  border-right: none;
}

/* Map & Form Side-by-Side */
.map-form-table {
  width: 100%;
  border-collapse: collapse;
  vertical-align: top;
}

.map-form-table td {
  padding: 10px;
  vertical-align: top;
}

.map-cell iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 5px;
}

.form-cell form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

textarea {
  min-height: 100px;
}

.button-submit {
  margin-top: 15px;
  padding: 12px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.button-submit {
  background: #c0392b;
}

/* Responsive Design */
@media (max-width: 800px) {
  .map-form-table tr {
    display: flex;
    flex-direction: column;
  }

  .map-cell,
  .form-cell {
    width: 100%;
  }

  .con-table{
    padding: 0px 20px;
  }

  .contact-table tr {
    display: flex;
    flex-direction: column;
  }

  .contact-table td {
    border: none;
  }

  .contact-table td:last-child {
    border-bottom: none;
  }
}


/* Make form responsive */
@media (max-width: 576px) {
    .contact .form-row {
        flex-direction: column;
    }
    
    .contact select.country-code {
        width: 100%;
    }
}


/* General Page Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Company Info Section */
#company-info {
  text-align: center;
  padding: 0px 0px 60px 0px;
  background-color: #ffffff;
}

.company-title {
  font-size: 44px;
  font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  padding: 0px;
  background-color: #f8f8f8;
}

.company-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  font-family: "dm-sans", sans-serif;
  font-style: normal;
  font-weight: 30px;
  color: #595959;
}

/* Parallax Image Section */
#image-parallax {
  background-image: url('corporate3.png');
  min-height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 70px;
  margin-right: 70px;
}

/* Team Section */
#team-section {
  padding: 100px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.team-heading {
  font-size: 44px;
  margin-bottom: 60px;
}

/* Horizontal Team Cards */
.team-row {
  display: flex;
  justify-content: center;
  gap: 30px; /* space between cards */
  flex-wrap: wrap; /* wrap on smaller screens */
}

.member-card {
  flex: 0 0 300px; /* fixed width per card, can shrink on smaller screens */
  background-color: #ffffff;
  border: 1px solid #f10f58; /* border color for the card */
  text-align: left;
}

.member-card img {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.member-name {
  margin-bottom: 12px;
  font-size: 40px;
  padding: 0px 0px 0px 10px;
  color: #f10f58;
  font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.member-info {
  font-size: 16px;
  line-height: 1.7;
  padding: 0px 0px 0px 10px;
  font-family: "dm-sans", sans-serif;
  font-style: normal;
  font-weight: 30px;
  color: #595959;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .member-card {
    flex: 0 0 45%; /* two cards per row on tablets */
  }
}

@media (max-width: 768px) {
  #company-info {
    padding: 60px 15px 40px 15px;
  }

  #image-parallax {
    min-height: 300px;
    margin: unset;
  }

  .image-overlay {
    height: 150px;
    width: 90%;
  }

  .team-heading {
    font-size: 36px;
  }

  .company-title {
    font-size: 36px;
  }

  .member-card {
    flex: 0 0 90%; /* single column on mobile */
    margin-bottom: 30px;
  }
}


/* Footer */
footer {
    background: #50051d;
    color: #fff;
    padding: 50px 100px 50px 80px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    flex-direction: row;
}

.footer-column h3{
  font-family: "sanvito-pro-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 5px 0;
    transition: color 0.3s;
    font-family: "dm-sans", sans-serif;
    font-style: normal;
}

.footer-column a:hover {
    color: #e74c3c;
}

.social-icons-footer {
    display: flex;
    gap: 10px; /* space between icons */
    align-items: center; /* vertically center if needed */
}

.social-icons-footer img {
    width: 25px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* Service Cards Pop-up Animation */
@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media(max-width: 992px){
    .about-container, .service-cards, .events-grid, .team-members {
        flex-direction: column;
        align-items: center;
    }
    
    .about-card {
        position: static;
        width: 80%;
        margin-top: -80px;
    }

    .middle-image img {
        width: 100%;
    }

    .bubble {
        display: none;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    header {
        position: relative;
    }
}
/* Banner Slider Auto Animation */
.slides {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slides .slide {
    position: absolute;
    width: 100%;
    height: 500px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Removed CSS keyframe-based auto animation for hero slides.
     Slides are now controlled by JavaScript (toggling `.active`). */

/* Testimonial Slider Auto Scroll */
.testimonial-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.testimonial-slider .testimonial {
    min-width: 300px;
    flex-shrink: 0;
}
/* Global adjustments for smaller screens */
body {
    font-size: 16px;
}



/* Navbar */
@media (max-width: 992px) {
    .nav-container {
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* Middle Image + Bubbles */
@media (max-width: 768px) {
    .middle-image img {
        width: 100%;
    }
    .bubble {
        display: none;
    }
}

/* Services */
@media (max-width: 1200px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    .service-cards .card {
        width: 100%;
        max-width: 300px;
    }
}

/* News & Events */
@media (max-width: 992px) {
    .events-grid {
        flex-direction: column;
        align-items: center;
    }
    .event-card {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* Team Section */
@media (max-width: 992px) {
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    .team-members .member img {
        width: 120px;
        height: 120px;
    }
}

/* Contact Form */
@media (max-width: 768px) {
    .contact form {
        width: 90%;
    }
}

/* Footer */
@media (max-width: 992px) {
    .footer-columns {
        flex-direction: row;
        gap: 30px;
        width: 246px;
        padding-left: -20px;
    }
    .footer-columns{
        padding: 10px 30px 10px 30px;

    }
}

/* Make banner slider responsive */
@media (max-width: 576px) {
    .banner-slider img {
        height: 200px;
    }
    .slide-text h1 {
        font-size: 24px;
    }
    .slide-text p {
        font-size: 14px;
    }
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
}

.car-container {
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card Styles */
.card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 455px;
    height: 340px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1000px;
    max-height: 400px;
}

/* Profile */
.profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.profile-name {
    font-family: "dm-sans", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
}

/* Card Text */
.card-title {
    font-size: 1.5rem;
    margin: 5px 0;
    font-family: "sanvito-pro-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 35px;
}

.card-title:hover{
    color: #f10f58;
}

.card-description {
    font-size: 1rem;
    color: #000000;
    font-family: "dm-sans", sans-serif;
    font-weight: 10px;
    font-style: normal;
}

.card-description:hover{
    color: #f10f58;
}

/* Divider */
.card-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

/* Meta Section */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats span {
    margin-right: 15px;
    font-size: 0.9rem;
}

/* Like Button */
.like-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

/* Upright Heart */
.heart {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    transform: translate(-50%, -50%) rotate(45deg); /* upright */
    transition: all 0.00000000000001s ease;
}

.heart::before,
.heart::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    top: 0;
    left: 0;
}


.heart::before {
    left: -10px;
}

.heart::after {
    top: -10px;
}

.like-btn.liked .heart {
    background-color: #ff4b5c;
}

.like-btn.liked .heart::before,
.like-btn.liked .heart::after {
    background-color: #ff4b5c;
}

/* Responsive */
@media(max-width: 768px) {
    .card {
        flex-direction: column;
    }
    .card-image img {
        width: 100%;
        height: 200px;
    }
}
