
/* 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: transparent !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Brand/Logo Styling */
.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fa7407 !important;
  padding: 8px 0;
  text-decoration: none;
}

.brand-text {
  display: inline-block;
  color: #fa7407;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* Navbar Link Styling - for normal nav links */
.navbar-nav {
  align-items: center;
}

.navbar-nav > li > a.nav-link:not(.dropdown-toggle) {
  font-size: 1.4rem;           /* Slightly bigger text */
  font-weight: 600;            /* Bold text */
  margin: 0 8px;
  color: #e26600 !important;
  transition: color 0.3s;
  position: relative;          /* for underline */
  text-decoration: none;
}

/* Underline effect on hover for normal nav links */
.navbar-nav > li > a.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #e26600;
  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: #f6f7f6 !important;
}

/* Dropdown toggles (Company, Brands, Gallery) styling */
/* No underline, no dot effect, simple color hover */
.navbar-nav .dropdown-toggle {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 8px;
  color: #e26600 !important;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-nav .dropdown-toggle:hover,
.navbar-nav .dropdown-toggle:focus {
  color: #f6f7f6 !important;
  text-decoration: none;  /* no underline */
  box-shadow: none;       /* no dot or shadow */
}

/* Dropdown Menu Styling */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 15px rgba(56, 255, 6, 0.705);
  margin-top: 10px;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
}

/* Dropdown Items */
.dropdown-menu .dropdown-item {
  font-size: 1.05rem;          /* Slightly bigger */
  font-weight: 600;            /* Bold text */
  color: #83aa17;
  padding: 8px 20px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #ff0000;
}

/* Responsive Toggle Icon Adjustments */
.navbar-toggler {
  border: none;
}


/* Marquee Container */
#js-marquee-container {
  margin-top: 70px;
  width: 100%;
  height: 70px; /* fixed height */
  background-color: #222;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  display: flex;
  align-items: center; 
}

/* Marquee Text */
#js-marquee-text {
  position: absolute;
  white-space: nowrap;
  font-size: 16px;       
  font-weight: 100;
  color: #ddd;
  left: 100%;
}



/* Banner Container */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Image Container (for scrolling) */
.image-container {
  display: flex;
  width: 300%; 
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* Each Image */
.banner-image {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Content Overlay */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

/* Button Container */
.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Animated Buttons */
.animated-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect */
.animated-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00bcd4;
  z-index: -1;
  transition: left 0.4s ease;
}

.animated-btn:hover::before {
  left: 0;
}

.animated-btn:hover {
  color: #000;
  border-color: #00bcd4;
}





.about-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.about-image {
  /* FIX exact width & height */
  width: 250px;
  height: 250px;
  flex-shrink: 0; /* no shrinking */
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fit container exactly */
  display: block;
  border-radius: 30px;
}



.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
    height: auto; /* allow natural height */
    max-height: 100px;
    margin-bottom: 20px;
  }

  .about-image img {
    height: auto;
  }
}

/* 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;
}






  .news-events {
    padding: 40px;
    background: #a39e9e;
    text-align: center;
  }

  .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;
  }

  .news-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .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;
  }

  .news-card:hover {
    box-shadow: 0 8px 15px rgba(230, 126, 34, 0.6);
  }

  .news-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #34495e;
    font-weight: bold;
  }

  .news-card .date {
    font-size: 15px;
    color: #888;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }

  .text-content {
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .text-content.expanded {
    max-height: 300px;
  }

  /* Button style */
  .news-card button {
    margin-top: 10px;
    padding: 5px 12px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .news-card button:hover {
    background: #cf711a;
  }

  /* New style for button when expanded */
  .news-card button.expanded {
    background: #cf711a;
    color: #fff;
    filter: brightness(110%);
  }

  .hidden {
    display: none;
  }

  .view-all-container {
    margin-top: 10px;
    text-align: center;
  }

  .view-all-btn {
    padding: 8px 16px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .view-all-btn:hover {
    background-color: #cf711a;
  }










  

/* 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 {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
}

/* Main Footer Styling */
.footer {
  background-color: #111;
  color: #eee;
  padding: 30px 0 0;
  width: 100%;
}

/* Top Logo Section */
.footer-top-logo {
  text-align: center;
  padding-bottom: 15px;
}

.footer-top-logo img {
  max-height: 100px;
  width: auto;
  margin-bottom: 2px;
}

.footer-top-logo h2 {
  font-size: 20px;
  color: #e67e22;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

/* Footer Wrapper */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer Row */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

/* Footer Column */
.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e67e22;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background-color: #e67e22;
}

.footer-column p,
.footer-column ul li {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #e67e22;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #ccc;
  font-size: 22px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #e67e22;
}

/* Why Choose Us */
.why-us {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.why-us li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #ccc;
  padding-left: 20px;
  position: relative;
}

.why-us li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: bold;
  font-size: 16px;
}
/* RESET DEFAULTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
}

/* Main Footer Styling */
.footer {
  background-color: #111;
  color: #eee;
  padding: 30px 0 0;
  width: 100%;
}

/* Top Logo Section */
.footer-top-logo {
  text-align: center;
  padding-bottom: 15px;
}

.footer-top-logo img {
  max-height: 100px;
  width: auto;
  margin-bottom: 2px;
}

.footer-top-logo h2 {
  font-size: 20px;
  color: #e67e22;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

/* Footer Wrapper */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer Row */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

/* Footer Column */
.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e67e22;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background-color: #e67e22;
}

.footer-column h4 {
  font-size: 16px;
  margin: 15px 0 8px;
}

.footer-column p,
.footer-column ul li {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e67e22;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-icons a {
  color: #ccc;
  font-size: 22px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #e67e22;
  transform: translateY(-3px);
}

/* Why Choose Us */
.why-us {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.why-us li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #ccc;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.why-us li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: bold;
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #d35400;
  text-align: center;
  color: #fff;
  padding: 12px 15px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  border-top: 2px solid #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }

  .social-icons {
    justify-content: center;
  }

  .why-us li {
    text-align: left;
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .footer-top-logo img {
    max-height: 80px;
  }

  .footer-top-logo h2 {
    font-size: 18px;
  }

  .footer-column h3 {
    font-size: 17px;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 14px;
    padding: 10px;
  }
}