
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Header and Navigation */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

#logo {
  max-height: 50px;
  transition: transform 0.3s;
}

#logo:hover {
  transform: scale(1.05);
}


.header-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Navigation Links */
/* === Base Styles === */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  width: 135px;
  height: auto;
  cursor: pointer;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list li a {
  text-decoration: none;
  color: #504e4e;
  font-size: 16px;
  font-weight: 500;
}
.nav-list a:hover{
  color: #000;
}


/* === Hamburger Styles === */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* === Media Query: Below 992px === */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
    margin-left: 55%;
  }

  /* Hamburger animation to X */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger-btn span {
  transition: all 0.3s ease;
}


  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 600px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 55px;
  }
  .nav-list li a{
    display: block;
    padding-left: 48%;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #eee;
  }
}

/* === Media Query: Below 580px === */
@media (max-width: 580px) {
  .main-header {
    padding: 12px 20px;
  }

  .site-logo {
    width: 115px;
  }

  .hamburger-btn {
    width: 24px;
    height: 18px;
  }

  .nav-list li a {
    font-size: 15px;
  }
}
@media screen and(max-width:490px) {
  .hamburger-btn{
    display: flex;
  }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

h1 {
  margin-top: 60px;
  font-size: 2rem;
  text-align: center;
  color: #222;
}

/* ====== Gallery Section ====== */
.gallery-section {
  padding: 20px 0;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 40px); /* 3 items per row, accounting for gap */
  max-width: calc(33.333% - 80px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ====== Responsive Design ====== */

/* Tablets */
@media (max-width: 992px) {
  html {
    font-size: 14px;
}

.header-container {
    padding-right: 0;
}

.nav-links {
    gap: 2rem;
}

  .gallery-item {
    flex: 1 1 calc(50% - 40px); /* 2 items per row */
    max-width: calc(50% - 40px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 1.5rem;
  }
}

.contact-us {
  margin-left: 20%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  width: 60%;
  margin-top: 40px;
  padding: 50px 30px;
  background-color: #ffffff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #333;
}
.contact-us:hover{
  transform: scale(1.05);
  transition: transform 2s ease;
}

.contact-us h2 {
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-thickness: 2px;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}

.contact-us p {
  text-align: justify;
  font-size: 0.9rem; /* Smaller but still readable */
  margin: 10px 0;
  margin-left: 20%;
  line-height: 1.4;
}

/* ========== Responsive Media Queries ========== */

/* Large screens */
@media (min-width: 1441px) {
  .contact-us {
    width: 50%;
    margin-left: 25%;
    padding: 60px 40px;
  }

  .contact-us p {
    font-size: 1rem;
  }
}

/* Tablets and medium screens */
@media (max-width: 1024px) {
  .contact-us {
    width: 80%;
    margin-left: 10%;
    padding: 40px 25px;
  }

  .contact-us p {
    font-size: 0.85rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .contact-us {
    width: 90%;
    margin-left: 5%;
    padding: 30px 20px;
  }

  .contact-us h2 {
    font-size: 2rem;
  }

  .contact-us p {
    font-size: 0.8rem;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .contact-us {
    padding: 25px 15px;
  }

  .contact-us h2 {
    font-size: 1.6rem;
  }

  .contact-us p {
    font-size: 0.70rem;
  }
}
@media screen and (max-width:361px) {
  .contact-us p{
    font-size: 0.60rem;
  }
}

/* Very small screens */
@media (max-width: 330px) {
  .contact-us h2 {
    font-size: 1.4rem;
  }

  .contact-us p {
    font-size: 0.7rem;
  }
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

.footer-logo img {
  width: 200px;
  margin-top: 30%;
  margin-left: -25%;
}

.footer-links {
display: flex;
justify-content: space-between;
padding: 40px 20px;
flex-wrap: wrap;
gap: 20px;
font-family: 'Poppins', sans-serif;
}

footer {
  background-color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.partners1 {
  padding: 40px 20px;
  margin-top: 10px;
  text-align: center;
  background-color: #ffffff;
}

.partners1 h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.partner-logos1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 30px;
}

.partner-logos1 img {
  height: 60px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.7;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;

}

.partner-logos1 img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ========== Media Queries ========== */

/* 2500px to 1441px */
@media (min-width: 1441px) {
  .partner-logos1 img {
      height: 100px;
      max-width: 150px;
  }
  .partner-logos1{
    gap: 7rem;
  }
}

/* 1440px to 1025px */
@media (max-width: 1440px) {
  .partners1 h2 {
      font-size: 2.2rem;
  }

  .partner-logos1 img {
      height: 80px;
      max-width: 160px;
  }
 
}

/* 1024px to 769px */
@media (max-width: 1024px) {
  .partners1 h2 {
      font-size: 2rem;
  }

  .partner-logos1 {
      gap: 20px;
  }

  .partner-logos1 img {
      height: 70px;
      max-width: 140px;
  }
}

/* 768px to 481px */
@media (max-width: 768px) {
  .partners1 {
      padding: 30px 15px;
  }

  .partners1 h2 {
      font-size: 1.8rem;
  }

  .partner-logos1 {
      gap: 15px;
  }

  .partner-logos1 img {
      height: 60px;
      max-width: 100px;
  }
}

/* 480px to 331px */
@media (max-width: 480px) {
  .partners1 h2 {
      font-size: 1.5rem;
  }

  .partner-logos1 {
      flex-direction: row;
      align-items: center;
      gap: 10px;
  }

  .partner-logos1 img {
      height: 30px;
      max-width: 600px;
  }
}

/* 330px and below */
@media (max-width: 330px) {
  .partners1 {
      padding: 20px 10px;
  }

  .partners1 h2 {
      font-size: 1.3rem;
  }

  .partner-logos1 img {
      height: 45px;
      max-width: 90px;
  }
}



/* Back to Top Button */
.back-too-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
}

.back-too-top a {
  font-size: 2.2rem;
  color: rgb(125, 122, 122);
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-too-top:hover {
  transform: translateY(-5px);
}




.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 4rem 6%;
  font-family: 'Poppins', sans-serif;
}

/* Logo section */
.footer-logo {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

/* Links section */
.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: flex-start;
}

/* Columns */
.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
  text-transform: uppercase;
}


.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: #000000;
  opacity: 0.85;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-column ul li:hover {
  opacity: 1;
  transform: translateX(5px);
  color: #ffd700;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.footer-column a{
  display: flex;
  gap: 2.1rem;
  text-decoration: none;
  color: #333;
  margin-left: 40%;
}

.footer-column a:hover{
  transform: scale(1.02);
}


/* Extra large screens */
@media (min-width: 1441px) {
  .footer-content {
    padding: 5rem 8%;
  }

  .footer-column h3 {
    font-size: 1.4rem;
  }

  .footer-column ul li {
    font-size: 1.05rem;
  }
}

/* Laptops and desktops */
@media (max-width: 1440px) {
  .footer-content {
    padding: 4rem 5%;
  }

  .footer-column h3 {
    font-size: 1.25rem;
  }

  .footer-column ul li {
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-column {
    min-width: 250px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-column h3 {
    font-size: 1.15rem;
  }

  .footer-column ul li {
    font-size: 0.95rem;
  }
  .footer-column a{
    margin-left: 4rem;
  }

}

/* Mobile landscape */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-column ul li {
    font-size: 0.9rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .footer-content {
    padding: 3rem 10px;
  }

  .footer-logo img {
    max-width: 140px;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-column ul li {
    font-size: 0.85rem;
  }
}

/* Ultra small devices */
@media (max-width: 330px) {
  .footer-column h3 {
    font-size: 0.95rem;
  }

  .footer-column ul li {
    font-size: 0.8rem;
  }
}


.footer-bottom {
    font-size: 14px;
    color: #666;
    padding-top: 20px;
}


@media screen and (max-width: 1200px) {
  .header-container {
    padding-right: 15%;
  }

  .nav-links {
    gap:50px;
  }

}

/* ------------ Medium Devices (Tablets, 992px and down) ------------ */
@media screen and (max-width: 992px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .header-container {
    padding-right: 0;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    padding-top: 15px;
  }

  
}
/* ========== BASE STYLES ========== */
.header-container1 {
  padding: 40px 130px;
  color: #333;
}

.header-container1 h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.nav-links1 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.nav-links1 a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-links1 a:hover {
  color: #000;
  padding-left: 8px;
}

/* ========== SMOOTH SCROLL ========== */
html {
  scroll-behavior: smooth;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* 2500px to 1600px */
@media screen and (max-width: 2500px) {
  .header-container1 {
    margin-left: 10px;
  }
  .header-container1 h3 {
    font-size: 26px;
  }
}

/* 1600px to 1280px */
@media screen and (max-width: 1600px) {
  .header-container1 {
    padding: 35px 80px;
  }
  .header-container1 h3 {
    font-size: 24px;
  }
}

/* 1280px to 1024px */
@media screen and (max-width: 1280px) {
  .header-container1 {
    padding: 30px 60px;
  }
  .header-container1 h3 {
    font-size: 22px;
  }
}

/* 1024px to 768px */
@media screen and (max-width: 1024px) {
  .header-container1 {
    padding: 30px 40px;
  }
  .nav-links1 a {
    font-size: 15px;
  }
}

/* 768px to 600px */
@media screen and (max-width: 768px) {
  .header-container1 {
    padding: 25px 30px;
  }
}

/* 600px to 480px */
@media screen and (max-width: 600px) {
  .header-container1 h3 {
    font-size: 20px;
  }
  .nav-links1 a {
    font-size: 14px;
  }
}

/* 480px to 330px */
@media screen and (max-width: 480px) {
  .header-container1 {
    padding: 20px 20px;
  }
  .header-container1 h3 {
    font-size: 18px;
  }
  .nav-links1 a {
    font-size: 13px;
  }
}

/* Minimum width 330px */
@media screen and (max-width: 330px) {
  .header-container1 {
    padding: 20px 15px;
  }
  .nav-links1 a {
    font-size: 12.5px;
  }
}

/* ------------ Small Devices (Mobiles, 768px and down) ------------ */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ------------ Extra Small Devices (Very Small Mobiles, 576px and down) ------------ */
@media screen and (max-width: 576px) {
  .header {
    padding: 15px;
  }
  .social-icons i {
    font-size: 16px;
  }
}

/* ========== IFRAME STYLING ========== */

/* General iframe styling */
/* ========== IFRAME STYLING ========== */

/* General iframe styling */
/* ========== IFRAME STYLING ========== */

/* General iframe styling */
iframe {
  margin-left: 10%;
  border: 2px solid #ddd;
  border-radius: 8px;
  width: 40%; /* Default width */
  height: 400px; /* Default height */
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 2500px and larger - Very Large Screens */
@media screen and (min-width: 2500px) {
  iframe {
    width: 45%; /* Slightly wider for very large screens */
    height: 450px; /* Slightly taller for better visibility */
    margin-left: 10%; /* Centered on very large screens */
  }
}

/* 1800px to 2500px - Large Screens */
@media screen and (max-width: 2500px) and (min-width: 1800px) {
  iframe {
    width: 45%; /* Maintain similar width for large screens */
    margin-left: 20%; /* Adjust for larger screens */
  }
}

/* 1500px to 1800px - Medium Large Screens */
@media screen and (max-width: 1800px) and (min-width: 1500px) {
  iframe {
    width: 45%; /* Maintain similar width */
  }
}

/* 1300px to 1500px - Medium Screens */
@media screen and (max-width: 1500px) and (min-width: 1300px) {
  iframe {
    width: 45%; /* Maintain similar width */
  }
}

/* 1024px to 1300px - Tablet Screens */
@media screen and (max-width: 1300px) and (min-width: 1024px) {
  iframe {
    width: 60%; /* Increase width on tablet */
    height: 350px; /* Adjust height for better view */
    margin-left: auto;
    margin-right: auto;
  }
}

/* 768px to 1024px - Small Tablet Screens */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  iframe {
    width: 80%; /* Increase width on smaller devices */
    height: 300px; /* Adjust height */
  }
}

/* 600px to 768px - Mobile Devices */
@media screen and (max-width: 768px) and (min-width: 600px) {
  iframe {
    width: 90%; /* Full width for mobile devices */
    height: 250px; /* Adjust height for better visibility */
  }
}

/* 480px to 600px - Very Small Mobile Devices */
@media screen and (max-width: 600px) and (min-width: 480px) {
  iframe {
    width: 100%; /* Full width for small mobile devices */
    height: 220px; /* Adjust height for small mobile screens */
  }
}

/* 330px to 480px - Ultra Small Mobile Devices */
@media screen and (max-width: 480px) and (min-width: 330px) {
  iframe {
    width: 100%; /* Full width for very small screens */
    height: 200px; /* Minimal height */
  }
}

/* Less than 330px - Extremely Small Devices */
@media screen and (max-width: 330px) {
  iframe {
    width: 100%; /* Full width for extremely small screens */
    height: 180px; /* Minimal height */
  }
}
