/* 🌍 Global Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow: hidden;
  color: #fff;
  position: relative;
  background: #000;
}

/* 🎥 Background Video */
.bg-video1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* 🧭 Navbar */
.navbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(19, 0, 0, 0.301);

}

/* ===== Logo ===== */
.logo img {
  width: 145px;

}



/* ===== Nav Links ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Neon glow + underline effect */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #fa2415;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #fa2415;
  text-shadow: 0 0 8px #fa2415;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* 🍔 Hamburger Menu */
.menu-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-icon div {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* 📱 Mobile Navbar */
@media (max-width: 768px) {
  body {
    overflow: scroll;

  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-icon {
    display: flex;
  }
}

/* 🏗 Container Layout */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  min-height: 100vh;
  padding: 8rem 6%;
  gap: 2rem;

}

@media (max-width: 992px) {
  .container {
    flex-direction: column;
    padding: 7rem 4%;
  }
}

/* 🎠 Carousel Section */
.carousel-section {
  position: relative;
  width: 45%;
  max-width: 500px;
  top:10px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Carousel Buttons */
.carousel-btns {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.carousel-btns button {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px 14px;
  transition: background 0.3s ease;
}

.carousel-btns button:hover {
  background: rgba(233, 21, 21, 0.719);
}

/* 📝 Text Section */
.text-section {
  width: 55%;

  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  /* backdrop-filter: blur(6px); */
}

.text-section h1 {
  font-size: 2.4rem;
  color: white;

  text-align: center;
}

.text-section p {
  font-size: 0.8rem;
  line-height: 1.2rm;

  text-align: justify;
  color: #e0e0e0;
}

.text-section h4 {
  font-size: 1.2rem;
  color: white;
  margin-top: 1.5rem;
}

/* 🌐 Tablet View */
@media (max-width: 992px) {
  body {
    overflow: scroll;

  }
  
  .carousel-section {
    width: 90%;
    max-width: 600px;
  }

  .text-section {
    width: 90%;
    margin-top: 2rem;
    text-align: center;
  }

  .text-section p {
    text-align: left;
  }
}

/* 📱 Mobile View */
@media (max-width: 600px) {
  body {
    overflow-x: scroll;
  }

  .container {
    flex-direction: column;
    padding: 6rem 1.5rem;
    gap: 1.5rem;
  }

  .carousel-section {
    width: 100%;
    border-radius: 15px;
  }

  .text-section {
    width: 100%;
    padding: 1.5rem;
    border-radius: 15px;
  }

  .text-section h1 {
    font-size: 1.8rem;
  }

  .text-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .carousel-btns button {
    font-size: 1.6rem;
  }
  .bg-video {
    left: 48%; /* adjust this value as needed */
    width: 110vw;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
}

.leadership-section {
  width: 100%;
  min-height: 100vh;
  padding: 8rem 6%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}


.left-img {
  flex: 1;
  max-width: 30%;
  display: flex;
  justify-content: center;
}

.left-img img {
  width: 100%;

  height: 450px;
  border-radius: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}


/* 📝 Right Text Section */
.right-text {
  flex: 1;
  max-width: 70%;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);

}

.right-text h2 {
  color: white;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.scroll-txt {

  max-height: 300px;
  overflow-y: auto;

}

.scroll-txt p {
  font-size: 0.9rem;
  line-height: 1.2rm;

  text-align: justify;
  color: #e0e0e0;
}

.scroll-txt::-webkit-scrollbar {
  width: 8px;
}

.scroll-txt::-webkit-scrollbar-thumb {
  background-color: rgba(58, 57, 57, 0.514);
  border-radius: 6px;
}

/* ➡️ Arrow Button */
.arrow-svg {
  position: absolute;
  top: 150px;
  right: 90px;
}

.arrow-svg img {
  width: 40px;
  transition: transform 0.3s ease;
}

.arrow-svg img:hover {
  transform: translateX(8px);
}

.arrow-svg1 {
  position: absolute;
  top: 150px;
  right: 140px;
}

.arrow-svg1 img {
  width: 40px;
  transition: transform 0.3s ease;
}

.arrow-svg1 img:hover {
  transform: translateX(8px);
}

/* 🌐 Tablet View */
@media (max-width: 992px) {

  .leader-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .left-img {
    max-width: 70%;
  }

  .right-text {
    max-width: 90%;
    padding: 1.8rem;
  }

  .scroll-txt {
    max-height: none;
    overflow-y: visible;
  }

  .arrow-svg {
   
    margin-top: 470px;
    left: 400px;
  }

  .arrow-svg img {
    width: 50px;
  }

  .arrow-svg1 {
   
    margin-top: 470px;
    left: -180px;
  }

  .arrow-svg1 img {
    width: 50px;
  }
}

/* 📱 Mobile View */
@media (min-width: 300px)and (max-width:599px){
  .leader-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
.arrow-svg  img {
    width: 45px;
  }
  .arrow-svg1  img {

    width: 45px;
  }
   
  .bg-video{
   width: fit-content;
   transform: translateX(-52%);
   top:0px;
  }
  }

  @media (min-width:314px)and (max-width:400px) {
    .arrow-svg {
 
    left: 70%; /* or adjust for how far left you want */
    top: 90px;
    
  }

  .arrow-svg1 {
    
    right: 0%; /* keeps it from moving inward */
    top: 90px;
  }
  }

  @media (min-width:401px)and (max-width:450px) {
    .arrow-svg {
 
    left: 60%; /* or adjust for how far left you want */
    top: 90px;
    
  }

  .arrow-svg1 {
    
    right: 0%; /* keeps it from moving inward */
    top: 90px;
  }
  }
@media (min-width:451px)and (max-width:514px) {
    .arrow-svg {
 
    left: 50%; /* or adjust for how far left you want */
    top: 90px;
    
  }

  .arrow-svg1 {
    
    right: 0%; /* keeps it from moving inward */
    top: 90px;
  }
  }
@media (min-width:512px)and (max-width:600px) {
    .arrow-svg {
 
    left: 45%; /* or adjust for how far left you want */
    top: 90px;
    
  }

  .arrow-svg1 {
    
    right: 0%; /* keeps it from moving inward */
    top: 90px;
  }
  }


@media (max-width: 600px) {
  body {
    overflow-x: hidden; 
    overflow-y: auto;
  }
  html{
    overflow-x:hidden;
  }
  .leadership-section {
    padding: 7rem 1.5rem;
  }
  .leader-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .left-img {
    max-width: 100%;

  }

  .right-text {
    max-width: 100%;
    padding: 1.2rem;
  }

  .right-text h2 {
    font-size: 1.2rem;
  }

  .scroll-txt p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  
  
}


/* 🖥️ Laptop & Big Screen Optimization */
@media (min-width: 1200px) {
  .leader-row {
    gap: 5rem;
  }

  .left-img img {
    max-width: 500px;
  }

  .right-text {
    padding: 3rem;
    width: 100%;
  }

  .right-text h2 {
    font-size: 1.3rem;
  }

  .scroll-txt p {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}

/* ===========================
   📞 CONTACT PAGE STYLES
=========================== */

/* 🌍 Base Contact Layout */
.contact-layout {
  width: 100%;
  min-height: 100vh;
 padding: 8rem 6%;
  display: flex;
  justify-content: center;
  
  align-items: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
 
  z-index: 2;
}

/* 🗺️ Map Section */
.map-box {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #000000, #1a1a1a);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.map-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  filter: grayscale(30%) contrast(1.1) brightness(0.95);
  transition: filter 0.4s ease;
}

.map-box:hover iframe {
  filter: grayscale(0%) brightness(1);
}

/* 📍 Contact Info */
.contact-content {
  flex: 1;
  min-width: 45%;
  height: 400px;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  letter-spacing: 1px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 35px;
  height: 35px;
}

.contact-label {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-link {
  color: #fa2415;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ff4b3e;
}

/* 🦶 Footer */
.footer {
  width: 100%;
  height: 50px;
  text-align: center;
  padding: 1.2rem 0;
  background: rgba(0, 0, 0, 0.75);
  color: #ccc;
  position: fixed;
  /* ✅ keeps it visible even when scrolling */
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* ✅ ensures it's above background video */
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 🌐 Social Media Icons Section */
.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* makes icons white if they’re dark */
}

.social-icons a:hover img {
  transform: scale(1.15);
  filter: brightness(1) invert(0);
}

/* 🧭 For Mobile */
@media (max-width: 600px) {
  .map-box {
    height: 300px;
    border-radius: 15px;
  }

  .social-icons {
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .social-icons a img {
    width: 28px;
    height: 28px;
  }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .map-box,
  .contact-content {
    width: 100%;
    max-width: 700px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-block {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }

  .contact-icon {
    width: 30px;
  }
}

@media (max-width: 600px) {
  .contact-layout {
    padding: 7rem 1rem 4rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-label {
    font-size: 1rem;
  }

  .contact-block p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer {
    font-size: 0.8rem;
  }
}
@media (min-width: 993px ) and (max-width:1300px){
 .text-section {
  height: 400px;
  overflow-y: scroll;
 }
 .text-section::-webkit-scrollbar {
  width: 8px;
}

.text-section::-webkit-scrollbar-thumb {
  background-color: rgba(58, 57, 57, 0.514);
  border-radius: 6px;
}
}
/* 💻 Laptop & Big Screen Responsive Design */
@media (min-width: 1200px) {
 
  
  .contact-container {
    max-width: 1400px;
    gap: 4rem;
  }

  .map-box {
    height: 400px;
    border-radius: 25px;
  }

  .contact-content {
    height: 400px;
    padding: 2rem;
    border-radius: 25px;
  }

  .contact-title {
    font-size: 2.3rem;
   
  }

  .contact-label {
    font-size: 1rem;
  }

  .contact-link {
    font-size: 1.05rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-icons a img {
    width: 38px;
    height: 38px;
  }

  .footer {
    font-size: 0.8rem;
    
  }
}

/* 🖥️ Ultra-Wide Screens (e.g., 1600px and above) */
@media (min-width: 1600px) {
  .contact-layout {
    padding: 12rem 10% 7rem;
  }

  .contact-container {
    max-width: 1600px;
    gap: 5rem;
  }

  .map-box,
  .contact-content {
    height: 520px;
  }

  .contact-title {
    font-size: 2.6rem;
  }

  .contact-label {
    font-size: 1.3rem;
  }
}


