/* ========== GENERAL RESET & FONTS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== HEADER ========== */
header {
  color: #fff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000000;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 28px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  position: relative;
  padding: 4px 8px;
  transition: color 0.3s ease;
  z-index: 0;
}

nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 77, 7, 0.974);
  z-index: -1;
  transition: width 0.4s ease;
}

nav a:hover::before {
  width: 100%;
}

/* ========== HERO SECTION ========== */
.heropage {
  height: 100vh;
  background-image: url('images/herogb.jpg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.herotext {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  color: #fff;
}

.herotext h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.herotext h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff5a5f;
  color: #fff;
  border-radius: 5px;
  margin-right: 15px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e14c50;
}

.scroll-down-arrow {
  font-size: 1.5rem;
  display: inline-block;
  color: #fff;
  margin-top: 20px;
}

/* ========== SERVICES SECTION ========== */
.services-page {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services-header p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-page {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.portfolio-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.portfolio-header p {
  color: #666;
  margin-bottom: 40px;
}

.portfolio-gallery {
      padding: 40px 20px;
    }
    .filter-labels {
      text-align: center;
      margin-bottom: 20px;
    }
    .filter-labels label {
      margin: 0 15px;
      cursor: pointer;
      font-weight: 500;
      padding: 8px 16px;
      border: 1px solid #ccc;
      border-radius: 20px;
    }
    .filter-labels label.active {
      background-color: #3e3b92;
      color: white;
      border-color: #3e3b92;
    }
    .gallery-grid {
     column-count: 4;       /* Number of masonry columns */
  column-gap: 20px;
    }
    .gallery-grid img,
    .gallery-grid iframe {
    width: 100%;
    margin-bottom: 20px;
   border-radius: 10px;
    display: block;
   break-inside: avoid;   /* Prevent breaking elements between columns */
    }
    .gallery-grid img:hover,
    .gallery-grid iframe:hover {
      transform: scale(1.03);
    }
    .gallery-item {
      display: none;
    }
    .gallery-item.show {
      display: block;
    }
     .video-section {
      background-color: #9b9da3c9;
      padding: 20px;
    }

    .video-section h2 {
      margin-bottom: 20px;
      font-size: 1.5rem;
      color: #000033;
      
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .video-frame {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: none;
      border-radius: 5px;
    }


/* ========== ABOUT SECTION ========== */
.about-page {
  padding: 80px 20px;
  background-color: #fdfdfd;
  color: #333;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.1rem;
  color: #666;
}

.about-main {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.about-profile img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-bio {
  max-width: 600px;
}

.about-bio h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.highlights {
  padding-top: 30px;
}

.highlights h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.highlight-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.highlight-item {
  flex: 1 1 250px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-8px);
}

.highlight-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.highlight-item p {
  font-size: 0.95rem;
  color: #555;
}
.cta-section {
     background-image: url('images/cta_bg.jpg');
      padding: 120px 20px;
      text-align: center;
      color: #fff;
      
    }

    .cta-wrapper {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 56px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .cta-description {
      font-size: 20px;
      margin-bottom: 40px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .cta-buttons a {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: #fff;
      color: #2e3192;
      padding: 14px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .cta-buttons a:hover {
      background-color: #d1d1ff;
      transform: translateY(-2px);
    }

    .cta-buttons svg {
      width: 24px;
      height: 24px;
      fill: #2e3192;
    }


/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 10px 0;
    font-size: 18px;
  }
  .herotext h1 {
    font-size: 2.2rem;
  }

  .services-grid,
  .highlight-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-profile img {
    width: 80%;
    max-width: 250px;
  }

  .about-bio {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .about-header h1,
  .portfolio-header h2,
  .services-header h2 {
    font-size: 2rem;
  }

  .about-header p,
  .about-bio p {
    font-size: 0.95rem;
  }

  .about-bio h2,
  .highlights h2 {
    font-size: 1.5rem;
  }
   .cta-title {
        font-size: 36px;
      }

      .cta-description {
        font-size: 16px;
      }
     .filter-labels label {
        display: inline-block;
        margin: 5px 8px;
        padding: 6px 12px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
     .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }}
