/* =================== GLOBAL RESET =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* =================== HEADER =================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2f2f2f;
  min-height: 100px;
  padding: 15px 40px;
  position: relative;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-btn {
  font-size: 32px;
  cursor: pointer;
  color: white;
  z-index: 1001;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  flex-shrink: 0;
}

.logo img {
  height: 65px;
  width: auto;
}

.logo span {
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.header-right a {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.header-right a:hover {
  color: #fbfaf9 !important;
}

.header-right i {
  font-size: 18px;
}

/* =================== ABOUT BANNER =================== */
.about-banner {
  background: url('banner.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  color: white;
  text-transform: uppercase;
}

.about-banner h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.about-banner p {
  font-size: 18px;
  letter-spacing: 2px;
}

/* =================== ABOUT SECTION =================== */
.about-section {
  display: flex;
  gap: 40px;
  padding: 60px 8%;
  background: #111;
  color: white;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-text h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

/* =================== SIDE MENU =================== */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #111;
  padding: 60px 20px;
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.side-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  margin: 20px 0;
}

.side-menu ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.side-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fafaf8;
}

.side-menu ul li a span {
  color: #f39c12;
  margin-right: 10px;
}

/* =================== SOCIAL BAR =================== */
.social-bar {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.social-bar img {
  width: 25px;
  height: 25px;
}

/* =================== MAIN CARDS =================== */
.cards {
  display: block;            /* flex hata do */
  width: 100%;
  margin: 0;
  padding: 0;
}

.card {
  position: relative;
  width: 100%;
  height: 100vh;             /* pura screen cover kare */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.red-overlay {
  background: rgba(241, 17, 17, 0.6);
}

.card-content {
  position: relative;
  padding: 50px;
  z-index: 2;
  color: white;
}

number {
  font-size: 24px;
  /* border: 2px solid white; */
  display: inline-block;
  padding: 8px 14px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.card p {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 8px;
}

.card h2 {
  font-size: 32px;
  font-weight: bold;
}


/* =================== VIDEO GRID =================== */
.videos-section {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.videos-section h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 8px;
}

/* =================== CONTACT =================== */
.contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.info-card {
  background-color: #1f1f1f;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  border-radius: 10px;
}

.contact-form-map {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
}

.map-container {
  flex: 1;
  display: flex;
  gap: 20px;
  min-width: 300px;
}

.map-container iframe {
  flex: 1;
  min-height: 350px;
  border: 0;
  border-radius: 10px;
}

/* =================== FOOTER =================== */
.footer {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1150px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 20px 0;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #f8f7f6;
}

/* =================== BACK BUTTON =================== */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #111;
  color: white;
  padding: 10px 14px;
  font-size: 18px;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-btn:hover {
  background: #ffcc00;
  color: #111;
}

/* =================== RESPONSIVE BREAKPOINTS =================== */
@media (max-width: 1200px) {
  .header {
    padding: 15px 30px;
  }
  .logo span {
    font-size: 28px;
  }
  .header-right {
    font-size: 16px;
  }
  .header-right a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 15px 25px;
  }
  .logo span {
    font-size: 26px;
  }
  .header-right {
    font-size: 15px;
    gap: 6px;
  }
  .header-right a {
    font-size: 13px;
  }
  .about-text h2 {
    font-size: 32px;
  }
  .about-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: row;
    padding: 12px 20px;
    min-height: 80px;
    gap: 10px;
  }
  .logo {
    position: relative;
    left: auto;
    transform: none;
    order: 2;
    flex: 1;
    justify-content: center;
  }
  .logo img {
    height: 55px;
  }
  .logo span {
    font-size: 22px;
    white-space: normal;
    line-height: 1.2;
  }
  .menu-btn {
    order: 1;
    font-size: 28px;
  }
  .header-right {
    order: 3;
    font-size: 14px;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .header-right a {
    font-size: 12px;
  }
  .header-right i {
    font-size: 16px;
  }
  .cards {
    flex-direction: column;
    height: auto;
  }
  .card {
    min-height: 250px;
  }
  .about-banner h1 {
    font-size: 36px;
  }
  .side-menu {
    width: 280px;
    left: -280px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 10px 15px;
    min-height: 70px;
  }
  .logo img {
    height: 45px;
  }
  .logo span {
    font-size: 18px;
  }
  .header-right {
    font-size: 12px;
    gap: 3px;
  }
  .header-right a {
    font-size: 11px;
  }
  .header-right i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
    padding: 10px 12px;
    min-height: auto;
    gap: 8px;
  }
  .logo {
    order: 2;
    flex: none;
    margin: 0px 0;
  }
  .logo img {
    height: 40px;
  }
  .logo span {
    font-size: 16px;
  }
  .menu-btn {
    order: 1;
    align-self: flex-start;
    font-size: 24px;
  }
  .header-right {
    order: 3;
    font-size: 11px;
    gap: 8px;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header-right a {
    font-size: 10px;
  }
  .header-right i {
    font-size: 12px;
  }
  .about-banner h1 {
    font-size: 28px;
  }
  .about-text h2 {
    font-size: 24px;
  }
  .about-text p {
    font-size: 16px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-map {
    flex-direction: column;
  }
  .map-container iframe {
    min-height: 250px;
  }
  .side-menu {
    width: 85vw;
    left: -85vw;
  }
}

@media (max-width: 360px) {
  .header {
    padding: 8px 10px;
  }
  .logo img {
    height: 35px;
  }
  .logo span {
    font-size: 14px;
  }
  .header-right {
    font-size: 10px;
  }
  .header-right a {
    font-size: 9px;
  }
  .header-right i {
    font-size: 11px;
  }
}
