/* Reset and Box Model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: transparent !important;
  width: 100% !important;
}

/* Container Adjustments for Even Spacing */
.container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

/* Main Content Area (if needed) */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #fff;
}
/* Navbar Base Styling */
.navbar {
  background-color: rgb(219, 184, 154);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Brand/Logo Styling */
.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #341aca !important;
  padding: 8px 0;
  text-decoration: none;
}

.brand-text {
  display: inline-block;
  color: #7e3c03;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* Navbar Link Styling */
.navbar-nav {
  align-items: center;
}

.navbar-nav > li > a.nav-link:not(.dropdown-toggle) {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 8px;
  color: #ffffff !important;
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}

/* Underline effect */
.navbar-nav > li > a.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}

.navbar-nav > li > a.nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav > li > a.nav-link:not(.dropdown-toggle):focus::after {
  width: 100%;
}

.navbar-nav > li > a.nav-link:not(.dropdown-toggle):hover,
.navbar-nav > li > a.nav-link:not(.dropdown-toggle):focus {
  color: #000000 !important;
}

/* Dropdown toggle */
.navbar-nav .dropdown-toggle {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 8px;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-nav .dropdown-toggle:hover,
.navbar-nav .dropdown-toggle:focus {
  color: #180b00 !important;
  box-shadow: none;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 15px rgba(202, 45, 6, 0.705);
  margin-top: 10px;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
}

.dropdown-menu .dropdown-item {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0e1301;
  padding: 8px 20px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #ff8800;
}

/* Toggle button */
.navbar-toggler {
  border: none;
}

/* ============================= */
/* RESPONSIVE MEDIA QUERY */
/* ============================= */
@media (max-width: 991px) {

  .navbar {
    padding: 8px 15px;
  }

  .brand-text {
    font-size: 26px;
  }

  .navbar-nav {
    margin-top: 10px;
    align-items: flex-start;
  }

  .navbar-nav > li > a.nav-link,
  .navbar-nav .dropdown-toggle {
    font-size: 1.2rem;
    margin: 6px 0;
  }

  /* Remove underline on mobile */
  .navbar-nav > li > a.nav-link:not(.dropdown-toggle)::after {
    display: none;
  }

  .dropdown-menu {
    box-shadow: none;
    margin-top: 5px;
    border-radius: 6px;
  }
}
/* ===============================
   Banner Container
================================ */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
}

/* ===============================
   Image Container (Slider)
================================ */
.image-container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.banner-image {
  flex: 1 0 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ===============================
   Dark Overlay
================================ */
.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* subtle dark overlay */
  z-index: 1;
}

/* ===============================
   Content Overlay
================================ */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 80%;
}

.content h1 {
  font-size: 30px; /* smaller, elegant size */
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.content p {
  font-size: 16px; /* smaller paragraph */
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ===============================
   Button Container
================================ */
.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.buttons a,
.buttons button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: #ff3c00;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.buttons a:hover,
.buttons button:hover {
  background: #e63500;
  transform: scale(1.05);
}

/* ===============================
   Dots Navigation
================================ */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 12px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 2;
}

.dots span {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots span.active {
  width: 16px;
  height: 16px;
  background: #ff3c00;
  box-shadow: 0 0 10px #ff3c00;
}

/* ===============================
   Responsive Design
================================ */

/* Large Tablets & Small Laptops */
@media (max-width: 991px) {
  .banner {
    height: 80vh;
  }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 14px;
  }

  .buttons {
    gap: 15px;
  }
}

/* Tablets & Mobiles */
@media (max-width: 768px) {
  .banner {
    height: 70vh;
  }

  .content {
    width: 90%;
    padding: 0 15px;
  }

  .content h1 {
    font-size: 24px;
  }

  .content p {
    font-size: 13px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .buttons a,
  .buttons button {
    width: 100%;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .banner {
    height: 60vh;
  }

  .content h1 {
    font-size: 20px;
  }

  .content p {
    font-size: 12px;
  }
}
/* About Section Styles */
.about-section {
  background-color: #f9f9f9; /* light background */
  font-family: 'Arial', sans-serif; /* font */
  padding: 60px 0;
}

.about-title {
  font-weight: 400; /* normal weight */
  font-size: 2.5rem;
  color: #000; /* black text */
  text-align: center;
  margin-bottom: 50px;
}

.about-image {
  width: 100%;
  height: auto;        /* auto height */
  max-height: none;    /* remove height limit */
  object-fit: contain; /* keep full image visible */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}


.about-image:hover {
  transform: scale(1.05);
}

.about-text {
  font-weight: 400; /* normal weight */
  font-size: 1.2rem;
  color: #000; /* black text */
  line-height: 1.8;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .about-text {
    font-size: 1rem;
    padding: 0;
  }

  .about-image {
    max-height: 300px;
    margin-bottom: 20px;
  }
}
.section-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff7a00; /* Keep orange title */
}

.counter-box {
    background: #e6f0ff; /* light blue background */
    border-radius: 15px;
    transition: 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    border: 1px solid #b3cfff; /* soft blue border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* subtle shadow */
    cursor: pointer; /* shows clickable effect */
}

/* Hover effect - stronger blue glow */
.counter-box:hover {
    transform: translateY(-7px);
    border-color: #1e90ff; /* darker blue border */
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.35), 0 6px 15px rgba(0,0,0,0.08); /* blue glow + soft shadow */
}

/* Click / active effect */
.counter-box:active {
    transform: translateY(-3px) scale(0.97); /* slight shrink */
    box-shadow: 0 6px 12px rgba(30, 144, 255, 0.45), 0 4px 10px rgba(0,0,0,0.12); /* stronger blue glow */
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff7a00; /* Keep numbers orange for contrast */
}

.counter-label {
    font-size: 1.1rem; /* bigger text */
    font-weight: 400;  /* normal weight */
    color: #000000;    /* black text */
    margin-top: 10px;
    line-height: 1.4;
}



/* Vision & Mission Section Styles */
#vision-mission {
  padding: 50px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 600px;
  color: #000;
  z-index: 1;
}

/* White overlay */
#vision-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 0;
  pointer-events: none;
}

#vision-mission .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Box style */
.box {
  background: rgba(226, 215, 179, 0.85);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  flex: 1 1 45%;
  min-width: 280px;
  animation: fadeIn 1.2s ease-in-out;
  color: #000000;
}

.vision-mission-boxes,
.values-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.values-boxes .box:nth-child(1) {
  flex: 1 1 92%;
}

.box h2 {
  font-size: 1.6rem;
  color: #bb5c03;
  margin-bottom: 10px;
}

.box p,
.box li {
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .vision-mission-boxes,
  .values-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .box {
    flex: 1 1 100%;
  }

  #vision-mission {
    background-attachment: scroll;
  }
}




/* Section Background */
.brands-section {
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
}

/* Heading Box Container */
.brand-title-box {
    background-color: transparent;
    margin: 0;
    padding: 40px 0 10px;
    text-align: center;
}

/* Inner Box for Title */
.brand-title-inner {
    display: inline-block;
    background-color:#ff6a06;
    padding: 12px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(245, 245, 245, 0.1);
}

/* Heading Text */
.brand-title-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d8d8d8; /* Rich orange */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Slider Wrapper */
.brand-slider-wrapper {
    width: 100%;
    height: 260px; 
    overflow: hidden;
    padding: 30px 0;
}

/* Scrolling Row */
.brand-slider {
    display: flex;
    animation: scrollLeft 40s linear infinite; 
    align-items: center;
}

/* Individual Brand Box */
.brand-box {
    flex: 0 0 auto;
    width: 220px;        
    height: 200px;       
    margin: 0 15px;    
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Logo Image */
.brand-box img {
    max-height: 170px;  
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 30px;
}

/* Scroll Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover Effect with Orange Glow */
.brand-box:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4); /* orange glow */
}





/* CEO */
.ceo-section {

 
  font-family: Arial, sans-serif;
}

.ceo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.ceo-photo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 0 80px 80px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}


.ceo-message {
  max-width: 600px;
}

.ceo-message h3 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 5px;
}

.ceo-position {
  font-size: 1rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.ceo-quote {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .ceo-container {
    flex-direction: column;
    text-align: center;
  }

  .ceo-photo img {
    width: 200px;
  }
}



/* Services Section */

#services {
  padding: 80px 20px;
  background: linear-gradient(to right, #f0f0f0, #e6e6e6);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#services h2 {
  font-size: 48px; /* Increased from 42px */
  color: #000000;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

#services h2::after {
  content: '';
  width: 60%;
  height: 4px;
  background-color: #e67e22;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  background: #ffffff;
  padding: 35px 30px; /* Slightly increased */
  border-radius: 16px;
  width: 300px; /* Increased from 280px */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.8s ease;
  border-top: 6px solid #e67e22;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-10px) scale(1.03);
}

.service-box h3 {
  font-size: 22px; /* Increased from 20px */
  color: #e67e22;
  margin-top: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-box p {
  color: #000000;
  font-size: 17px; /* Increased from 16px */
  line-height: 1.8;
  margin-top: 12px;
}

.service-icon {
  font-size: 48px; /* Increased from 42px */
  color: #e67e22;
  margin-bottom: 14px;
}




/* Gallery Section - no outer spacing */
.gallery-section {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Container inside gallery */
.gallery-section .container {
    width: 95vw;
    padding: 0;
    margin: 0 auto;
    max-width: 95vw;
    overflow: hidden;
}

/* Heading */
.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

/* Scrollable Horizontal Gallery */
.gallery-row-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    padding: 10px 0;
    scroll-behavior: smooth;
    white-space: nowrap;
}

/* Gallery Images - balanced size */
.gallery-row-scroll img {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-row-scroll img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Custom Scrollbar */
.gallery-row-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-row-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.gallery-row-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}




/* Main Section */
.news-events {
  padding: 40px;
  background: #a39e9e;
  text-align: center;
}

/* Header */
.news-header {
  display: inline-block;
  background-color: #e2dbd6;
  padding: 10px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.news-header h1 {
  margin: 0;
  color: rgb(219, 144, 5);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 28px;
  font-family: Arial, sans-serif;
}

/* Grid Rows */
.news-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Card Styling */
.news-card {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-left: 5px solid #e67e22;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  color: #2c3e50;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.news-card:hover {
  box-shadow: 0 8px 15px rgba(230, 126, 34, 0.6);
  transform: translateY(-3px);
}

/* Title */
.news-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #34495e;
  font-weight: bold;
}

/* Date Styling */
.news-card .date {
  font-size: 15px;
  color: #888;
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Text Content Expandable */
.text-content {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.text-content.expanded {
  max-height: 300px;
}

/* Read More / Read Less Button */
.news-card button {
  margin-top: 12px;
  padding: 6px 14px;
  background: #e67e22;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}

.news-card button:hover {
  background: #cf711a;
}

/* When expanded (Read Less) */
.news-card button.expanded {
  background: #d35400;
  filter: brightness(105%);
}

/* View All Button Container */
.view-all-container {
  margin-top: 20px;
  text-align: center;
}

/* View All Button */
.view-all-btn {
  padding: 10px 20px;
  background-color: #db820c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.view-all-btn:hover {
  background-color: #da7c03;
}

/* Hidden Class */
.hidden {
  display: none;
}










  

/* Heading */
.staff-heading-box {
  background-color: #ff6a06;
  color: white;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 20px auto;
  width: fit-content;
}

/* Scroll Buttons Container */
.scroll-controls {
  text-align: center;
  margin-bottom: 10px;
}

/* Common Scroll Button Styles */
.scroll-controls .scroll-btn {
  background-color: #008080; /* teal */
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Left & Right Arrow Buttons */
.scroll-controls .scroll-btn:not(.auto-scroll-btn) {
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
}

/* Hover effect for arrow buttons */
.scroll-controls .scroll-btn:not(.auto-scroll-btn):hover {
  background-color: #006666; /* darker teal */
  transform: scale(1.1);
}

/* Auto Scroll Toggle Button (text-based) */
.scroll-controls .auto-scroll-btn {
  font-size: 0.95rem;
  padding: 6px 14px;
  margin: 0 8px;
  border-radius: 20px;
  font-weight: 600;
  width: auto;
  min-width: 110px;
}

/* Scroll Container */
.scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

/* Flex Wrapper */
.auto-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

/* Staff Card */
.id-card {
  background-color: #fffdf2;
  border: 2px solid #db3300;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  margin: 10px;
  transition: transform 0.3s ease;
}
.id-card:hover {
  transform: translateY(-5px);
}

/* Image Styling */
.id-card-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 4px solid #da3300;
  box-shadow: 0 2px 4px rgba(253, 38, 0, 0.1);
  border-radius: 50%;
}

/* Card Body */
.id-card .card-body {
  text-align: center;
}
.id-card h5 {
  font-size: 1.6rem;
  color: #ff6a06;
}
.id-card p {
  font-size: 1.1rem;
  color: #000000;
}

/* Column */
.col-md-4 {
  flex: 0 0 auto;
  width: 340px;
}

/* Responsive */
@media (max-width: 768px) {
  .col-md-4 {
    width: 90%;
  }
}

/* Contact Us Section Styling */
.contact-us-section {
  padding: 50px 20px;
  background-color: #cfcfcf; 
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form {
  width: 45%;
  background-color: #ffffff; 
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #2f4f2f;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.contact-form label {
  font-size: 1rem;
  color: #333333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #cccccc;
  background-color: #f8fdf8;
  border-radius: 4px;
  color: #333;
}

.contact-form button {
  background-color: #6fbf73; 
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #519e55;
}

/* Google Map Section */
.contact-map {
  width: 50%;
  background-color: #f0f5f0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 500px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-form,
  .contact-map {
    width: 100%;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}



/* RESET DEFAULTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  min-height: 100vh;
}

/* MAIN FOOTER */
.footer {
  background-color: #4b2d1f;
  color: #eee;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

/* TOP LOGO SECTION */
.footer-top-logo {
  text-align: center;
  padding: 15px 0;
}
.footer-top-logo img {
  max-height: 80px;
  width: auto;
  margin-bottom: 8px;
}
.footer-top-logo h2 {
  font-size: 24px;
  color: #e67e22;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

/* FOOTER WRAPPER */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

/* FOOTER ROW */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

/* FOOTER COLUMNS */
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  text-align: left;
}
.footer-column h3 {
  font-size: 20px;
  color: #e67e22;
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 3px;
  background-color: #e67e22;
}
.footer-column h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin: 12px 0 6px;
}

/* TEXT + LISTS + LINKS (BIG + BOLD) */
.footer-column p,
.footer-column ul li,
.footer-column ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #e67e22;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social-icons a {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #222;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

/* WHY CHOOSE US */
.why-us {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.why-us li {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.why-us li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-size: 18px;
  font-weight: 900;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background-color: #d35400;
  text-align: center;
  color: #fff;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 800;
  border-top: 3px solid #e67e22;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  .footer-column {
    min-width: 100%;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
  }
  .social-icons {
    justify-content: center;
  }
  .why-us li {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-top-logo img {
    max-height: 70px;
  }
  .footer-top-logo h2 {
    font-size: 20px;
  }
  .footer-bottom {
    font-size: 15px;
    padding: 12px;
  }
}
