
:root {
  --primary-color: #ff7f50;
  --secondary-color: #ff8c00;
  --white-color: #fff8e1;
  --gray-color: #d2691e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 12px 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 1px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #d35400;
  font-weight: 700;
  font-size: 1.3rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.btn-book {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-book:hover {
  background-color: #5741d9;
}

/* Dropdown */
.nav-menu li.dropdown {
  position: relative;
}

.nav-menu li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: var(--white-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

.nav-menu li .dropdown-menu li {
  border-bottom: 1px solid #ddd;
}

.nav-menu li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.nav-menu li.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-menu li .dropdown-menu li a:hover {
  background-color: #ffe0b2;
}



.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: var(--white-color);
  font-family: sans-serif;
}

/* no fixed width anymore */
.hero-slider-wrapper {
  display: flex;
  height: 100vh;
  transition: transform 1.2s ease; /* slower & smoother */
}

.hero-slide {
  flex: 0 0 100vw;              /* each slide = full viewport width */
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

.hero-btn {
  background-color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  color: var(--white-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #5a4acd;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-controls button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.slider-controls button:hover {
  background: rgba(0,0,0,0.8);
}










    .about, .services, .classes {
      background-color: #d6b068;
      text-align: center;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }

    p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      color: #e6dfdf;
    }

    @media (max-width: 768px) {
      .nav-list {
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
      }
    }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #f8f8f8;
}

.about {
  position: relative;
  padding: 100px 20px;
  background: url('https://images.unsplash.com/photo-1500534623283-312aade485b7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
  background-attachment: fixed;
  z-index: 1;
  color: white;
}

.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.section-header h2 {
  color: #ffaf00 !important; /* bright orange */
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #ffffff !important; /* pure white */
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-img {
  flex: 1 1 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-img img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h3 {
  font-size: 2rem;
  color: #ffcc70; /* Elegant golden tone */
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  color: #f1f1f1;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

.btn {
  background: linear-gradient(135deg, #ffaf00, #ff6f00);
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ffa500, #ff4500);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.6);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-img,
  .about-text {
    flex: 1 1 100%;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}




/* === Classes Section === */
.classes {
    padding: 60px 20px;
    background: #f8f9fa;
    animation: fadeIn 1s ease-in;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2.4rem;
    color: #000000;
    font-weight: 600;
}
.section-header p {
    color: #504d4d;
    font-size: 1.05rem;
    margin-top: 8px;
}

.class-filters {
    text-align: center;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 10px 20px;
    margin: 0 8px;
    border: none;
    background-color: #e0e0e0;
    color: #000000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.filter-btn.active,
.filter-btn:hover {
    background-color: #4caf50;
    color: #fff;
}

/* === Grid Layout === */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* === Card === */
.class-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(3, 3, 3, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.6s ease;
}
.class-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* === Improved Image Styling === */
.class-img {
    overflow: hidden; /* ensure hover zoom doesn't overflow card */
    border-radius: 15px 15px 0 0; /* rounded corners on top only */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05); /* subtle inner shadow */
}
.class-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    filter: brightness(0.95);
}
.class-img img:hover {
    transform: scale(1.05);
    filter: brightness(1);
}

/* === Info === */
.class-info {
    padding: 20px;
}
.class-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #aa4982;
}
.class-info p {
    font-size: 0.95rem;
    color: #000000;
}
.class-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin: 15px 0;
    color: #095fff;
}
.class-meta i {
    margin-right: 6px;
}

/* === Primary Button === */
.btn-primary {
    background-color: #4caf50;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #388e3c;
}

/* === Modal === */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.5s ease;
}
.close-modal {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}
.close-modal:hover {
    color: #000;
}

/* === Modal Form === */
.modal-content h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #333;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #444;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}






















:root {
  --primary-color: #ff7f50;   /* Coral Orange */
  --secondary-color: #ff8c00; /* Dark Orange */
  --white-color: #fff8e1;     /* Light Creamy Orange (off-white) */
  --gray-color: #d2691e;      /* Chocolate Orange */
}



.services {
  position: relative;
  padding: 60px 20px;
  margin: 0;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') no-repeat center center / cover;
  background-attachment: fixed;
}

/* Dark overlay */
.services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 600;
}

.section-header p {
  color: #e0d4ec;
  font-size: 1.05rem;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white-color);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(74, 63, 85, 0.05);
  transition: all 0.3s ease;
  position: relative;
  color: #4a3f55; 
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(74, 63, 85, 0.1);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.extra-text {
  display: none;
  color: var(--gray-color);
  font-size: 0.95rem;
  margin-top: 10px;
}

.service-card.expanded .extra-text {
  display: block;
}

.btn-secondary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: var(--secondary-color);
}  



/* Container for blog cards */
.blog-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  gap: 20px;
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
  margin: 0 -15px; 
  padding: 0 15px; 

}


.blog-grid::-webkit-scrollbar {
  height: 8px;
}
.blog-grid::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 4px;
}
.blog-grid::-webkit-scrollbar-track {
  background: transparent;
}


.blog-card {
  flex: 0 0 400px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: visible; 
  padding: 25px 30px;
  box-sizing: border-box;
  height: auto;
  display: flex;
  flex-direction: column;
}


.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


.blog-img {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* Blog info */
.blog-info {
  flex-grow: 1;
}

.blog-info .date {
  display: block;
  color: #5a4acd; 
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.blog-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  max-height: none;
}

.blog-info p {
  color: #000000;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  max-height: none;
}


.read-more {
  display: inline-flex;
  align-items: center;
  color: #5a4acd;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
  color: #141414;
}

.read-more:hover {
  color: #3f30a5;
}

.read-more:hover i {
  transform: translateX(5px);
}


.full-content {
  display: none;
}



#blogModal .modal-content,
#blogModal .modal-content * {
  color: #000 !important;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none !important; /
}







/* Styling for the पदाधिकारीहरू table section */
section.my-5 {
  padding: 40px 10px;
  background: #fff8e1; /* light yellow */
  margin: 0 auto;
}

section.my-5 h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #d35400; /* dark orange */
  margin-bottom: 20px;
}

.table-responsive {
  overflow-x: auto;
}

.table-bordered th,
.table-bordered td {
  text-align: center;
  vertical-align: middle;
}

.table-bordered img {
  border-radius: 8px;
  border: 1px solid #ddd;
}





.important-info-section {
  padding: 60px 10px;
  background: #ffffff; /* light yellow like पदाधिकारीहरू */
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.important-info-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.important-info-section .section-header h2 {
  font-size: 2.4rem;
  color: #d35400; /* dark orange */
  font-weight: 700;
  margin-bottom: 10px;
}

.important-info-section .info-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 10px;
  max-width: 100%;
  box-sizing: border-box;
}

.info-card {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  background: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  transition: transform 0.3s ease;
  border: 2px solid #d35400; /* dark orange border */
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.info-card .card-header {
  background: #d35400; /* match पदाधिकारीहरू orange */
  color: white;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.info-card .card-body {
  padding: 10px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 12px 12px;
  display: block;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}













/* Gallery Lineup Section */
.gallery-lineup {
  padding: 60px 0; /* Removed left/right padding */
  background: #f9f8f6;
}

.gallery-lineup .container {
  max-width: 100%;
  padding: 0 10px; /* optional small side padding */
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #3a5a40; 
  font-weight: 700;
}

.section-header p {
  color: #6b8e23; 
  font-size: 1.1rem;
  margin-top: 8px;
}

.lineup-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #a4c639 #f0f0f0;
}

.lineup-scroll::-webkit-scrollbar {
  height: 8px;
}

.lineup-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.lineup-scroll::-webkit-scrollbar-thumb {
  background-color: #a4c639;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.gallery-item {
  flex: 0 0 auto;
  width: 380px;  /* Increased width */
  height: 400px; /* Increased height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  animation-delay: var(--delay);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

/* Show lightbox */
.lightbox-overlay.active {
  display: flex;
}

/* Lightbox image */
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  cursor: auto;
}

/* Close button */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  font-weight: bold;
}



















.testimonials .container {
    max-width: 100%;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1rem;
}

.testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-slide {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    height: 420px; /* fixed height for all testimonial boxes */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: flex-start; /* Align photo and text from top */
    gap: 20px;
}

.testimonial-author img {
    flex-shrink: 0; /* Prevent shrinking */
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Soft clean shadow */
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 1rem;
}



/* Base Container */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #222;
}

.section-header p {
  font-size: 1.1rem;
  color: #000;
}

/* Contact Content Grid */
.contact-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Contact Info, Form, and Map Box Styling */
.contact-info,
.contact-form,
.contact-map {
  background-color: var(--white-color, #fff);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 600px; /* 🔁 Increased height for uniform look */
}

/* Contact Info Items */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.8rem;
  color: var(--primary-color, #5741d9);
  margin-right: 15px;
}

.info-item p {
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
  margin: 0;
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray, #f0f0f0);
  color: var(--primary-color, #5741d9);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color, #5741d9);
  color: var(--white-color, #fff);
  transform: translateY(-4px);
}

/* Contact Form Styling */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  padding: 12px 20px;
  background-color: var(--primary-color, #5741d9);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #4636b2;
}

/* Contact Map */
.contact-map iframe {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  min-height: 100%; /* 🔁 Ensure iframe stretches full height */
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .info-item {
    justify-content: flex-start;
  }

  .contact-info,
  .contact-form,
  .contact-map {
    margin-bottom: 30px;
    min-height: auto; /* Reset stacked box height on mobile */
    height: auto;
  }

  .contact-map iframe {
    min-height: 400px; /* Better visibility on small screens */
  }
}  


/* Footer */
.footer {
    background-color: #f09655;
    color: #000; /* All text black */
    padding: 80px 0 0;
    font-weight: 500;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 200px;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #000; /* Heading text black */
    font-weight: bold;
}

.footer-col p {
    margin-bottom: 20px;
    color: #000; /* Paragraph text black */
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #000; /* List text black */
}

.footer-col ul li a {
    color: #000; /* Link black */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #000; /* Social icon color black */
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: #fff; /* Optional: white on hover */
}

.footer-col input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    color: #000; /* Input text black */
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #000;
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}
