/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 50px; /* Space for fixed bottom bar */
}

a {
  color: #ff0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: #ff0000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  transition: max-height 0.3s ease-in-out;
}

.nav-links a {
  color: #fff;
  font-weight: bold;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #fff;
}

/* Top Video */
.top-video {
  width: 100%;
  background: #000;
}

.top-video video {
  width: 100%;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  background: url('https://via.placeholder.com/1200x600?text=Hero+Image') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
}

/* Sections */
section {
  padding: 60px 0;
}

h2 {
  color: #ff0000;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
  
}
h1 {
  color: #ff0000;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
}
h4 {
  color: #ff0000;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
}

h5 {
  color: #ff0000;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
}

h3 {
  color: #ff0000;
  margin: 20px 0 10px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
}

ul {
  margin: 10px 0;
  padding-left: 20px;
}

/* Profile List */
.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);       /* 4 columns on desktop */
  gap: 20px;                                   /* better spacing */
  margin: 40px 0;
}

.profile {
  background: #111;                            /* slightly darker for contrast */
  border: 1px solid #ff0000;
  border-radius: 8px;
  overflow: hidden;                            /* nice rounded corners */
  text-align: center;
  transition: transform 0.3s ease;
}

.profile:hover {
  transform: scale(1.05);                      /* hover zoom effect */
  box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
}

.profile img {
  width: 100%;
  height: 350px;                               /* fixed height for uniformity */
  object-fit: cover;
  display: block;
}

/* Responsive - break to fewer columns */
@media (max-width: 1024px) {
  .profiles {
    grid-template-columns: repeat(3, 1fr);     /* 3 on tablets */
  }
}

@media (max-width: 768px) {
  .profiles {
    grid-template-columns: repeat(2, 1fr);     /* 2 on mobile */
  }
}

@media (max-width: 480px) {
  .profiles {
    grid-template-columns: 1fr;                /* 1 on very small screens */
  }
}

/* Categories & Areas */
.categories, .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.categories span, .areas span {
  background: #222;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.advantage {
  background: #111;
  padding: 20px;
  border-radius: 8px;
}

/* FAQs */
.faq {
  margin-top: 40px;
}

.faq details {
  background: #111;
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 10px;
}

summary {
  font-weight: bold;
  cursor: pointer;
}

/* Testimonials */
.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
  gap: 20px;
  padding: 0 10px;
}

.carousel-container .testimonial {
  flex: 0 0 100%;                    /* each takes full width → 1 at a time */
  min-width: 100%;
  scroll-snap-align: center;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,0,0,0.2);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #ff0000;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Hide scrollbar but keep functionality */
.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Mobile - make arrows smaller */
@media (max-width: 768px) {
  .carousel-prev, .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* Footer */
.footer-bg {
  background: url('https://via.placeholder.com/1200x400?text=Footer+Image') center/cover no-repeat;
  padding: 40px 0;
  color: #fff;
  position: relative;
}

.footer-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  margin: 0 10px;
}

.footer-column h3 {
  color: #ff0000;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li a {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.footer-title {
  text-align: center;
  font-size: 32px;
  color: #fff;
  background: #000;
  padding: 10px 0;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.phone {
  background-color: #ff69b4;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

.whatsapp {
  background-color: #00ced1;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #ff0000;
    padding: 20px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  h2 {
    font-size: 28px;
  }

  .profiles {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer-columns {
    flex-direction: column;
  }

  .bottom-bar {
    flex-direction: column;
  }




