/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: spantax;
}



/* Main Navbar Styling */
/* Navbar Gradient Background */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:#fffeff;
  padding: 10px 20px;
}

/* Container for navbar items */
.container {
  display: flex; /* Uses Flexbox to align items in a row */
  justify-content: space-between; /* Distributes space between the logo, nav links, and phone numbers */
  align-items: center; /* Vertically aligns items */
  width: 100%; /* Ensures the container stretches to full width */
}

/* Logo Container Styling */
.logo {
  display: flex;
  justify-content: flex-start; /* Align logo to the left */
  align-items: center;         /* Corrected from 'left' to 'center' (valid value) */
  padding: 10px;               /* Optional spacing around the logo */
}

/* Logo Image Styling */
.logo img {
  height: 420px;               /* Increased height */
  width: 250px;                /* Increased width */
  object-fit:cover;         /* Prevent distortion */
  border-radius: 10px;
  margin-right: 20px;          /* Reduce from 90% which pushes it too far */
}


/* Navigation links styling */
.nav-links {
  display: flex; /* Uses Flexbox to arrange nav items horizontally */
  list-style: none; /* Removes default list styling */
  gap: 20px; /* Adds space between each navigation item */
  justify-content: center; /* Centers the navigation items horizontally */
  flex-grow: 2; /* Makes the nav-links grow to take available space */
  margin-right: 6%;
}
/* Notification styling */
.download-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #00aaff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-links li {
  display: inline-block; /* Ensures the links are displayed inline */
  position: relative; /* Ensures the dropdown and sub-dropdown are properly positioned */
  margin-top: 2%;
}

/* Individual link styling within the nav */
.nav-links li a {
  color: #0b0447; /* Set link color to sky blue */
  text-decoration: none; /* Removes underline */
  padding: 10px 15px; /* Adds padding around each link */
  font-size: 17px; /* Specifies font size for links */
  font-weight: bold; /* Makes the links bold */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  
}
.nav-links .dropdown {
  margin-top: 2%;
  padding-left: 2%;
}
/* Hover effect on links */
.nav-links li a:hover {
  border-radius: 10px;
background-color: #e2eefd;

}


/* Hamburger Menu */
.hamburger {
  display: none; /* default hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  top: 35px;
  right: 45px;
  z-index: 1100;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}


/* Small devices (phones) */
@media (max-width: 600px) {
  .nav-links .dropdown {
    margin-top: 4%;
    padding-left: 28%;
  }
}

/* Medium devices (tablets) */
@media (min-width: 601px) and (max-width: 992px) {
  .nav-links .dropdown {
    margin-top: 3%;
    padding-left: 3%;
  }
}

/* Large devices (desktops) */
@media (min-width: 993px) {
  .nav-links .dropdown {
    margin-top: 2%;
    padding-left: 2%;
  }
}


/* Mobile-specific styling (for screens smaller than 768px) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column; /* Stacks elements vertically on small screens */
  }

  .nav-links {
    flex-direction: column; /* Makes the nav links stack vertically */
    align-items: center; /* Centers the links */
    display: none; /* Hides the nav links by default */
    width: 100%; /* Makes the nav-links take up the full width */
  }

  .nav-links.active {
    display: flex; /* Displays the nav links when "active" class is added */
  }

  .phone-numbers {
    margin-top: 10px; /* Adds top margin to space out phone numbers */
    justify-content: center; /* Centers the phone numbers */
  }

  .hamburger {
    display: block; /* Shows the hamburger icon on mobile */
  }
}
/* Small screens: Keep Products link, remove dropdowns */
@media (max-width: 768px) {
  /* Hide dropdown and sub-dropdown menus */
  .dropdown-menu,
  .sub-dropdown-menu {
    display: none !important;
  }

  /* Keep the main Products link visible */
  .dropdown > a {
    display: block !important;
    margin-right: 32%;
  }

  /* Optional: Remove pointer cursor or dropdown indicator for clarity */
  .dropdown > a::after {
    content: none;
  }
}

/* Dropdown Menu Styling */
.dropdown  {
  position: relative; /* Ensures the dropdown menu is positioned relative to the parent element */
  list-style: none;
}

.dropdown-menu {
  display: none; /* Hides the dropdown menu by default */
  position: absolute; /* Positions the dropdown menu */
  top: 100%; /* Positions the dropdown directly below the parent item */
  left: 0;
  background-color: #ffffff; /* Sets the background color to sky blue */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow to make the dropdown look elevated */
  z-index: 1; /* Ensures the dropdown is above other content */
  list-style: none; /* Removes default list styling */
  padding: 10px 0; /* Adds padding to the dropdown items */
  border-radius: 5px; /* Rounds the corners of the dropdown */
  min-width: 150px; /* Ensures dropdown has a minimum width */
list-style: none;
}

.dropdown:hover .dropdown-menu {
  display: block; /* Displays the dropdown menu when the parent item is hovered */
}

.dropdown-menu li a {
list-style: none;
  padding: 8px 16px; /* Adds padding to the links inside the dropdown */
  color: #0b0447; /* Set text color to white */
  text-decoration: none; /* Removes the underline from the links */
  display: block; /* Makes the links block elements, so they take the full width */
  transition: background-color 0.3s ease; /* Adds a transition effect when hovering over the links */
}

.dropdown .dropdown-menu{
  background-color: #ffffff;
}
.dropdown-menu li a:hover{
  color: #0b0447;
}


/* Sub-dropdown Menu Styling */
.sub-dropdown {
  position: relative; /* Ensures the sub-dropdown is positioned relative to the parent item */
 
}
.sub-dropdown a:hover{
  background-color: #7acbfa;
  
}


.sub-dropdown-menu {
  display: none; /* Hides the sub-dropdown menu by default */
  position: absolute; /* Positions the sub-dropdown relative to the parent item */
  left: 100%; /* Positions the sub-dropdown to the right of the parent item */
  top: 0;
  background-color: #ffffff; /* Sets the background color of the sub-dropdown */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow for an elevated look */
  padding: 10px 0; /* Adds padding inside the sub-dropdown */
  list-style: none; /* Removes the default list styling */
  border-radius: 5px; /* Rounds the corners of the sub-dropdown */
  min-width: 150px; /* Ensures sub-dropdown has a minimum width */
  list-style: none;
}


.sub-dropdown-menu li a {
  padding: 8px 16px; /* Adds padding to the links inside the sub-dropdown */
  color: #0b0447; /* Sets the text color */
  text-decoration: none; /* Removes the underline from the links */
  display: block; /* Makes the links block elements */
  transition: background-color 0.3s ease; /* Adds a transition effect when hovering over the links */
}

.sub-dropdown:hover .sub-dropdown-menu {
  display: block; /* Displays the dropdown menu when the parent item is hovered */
}
/* =============================
   Responsive (Mobile View)
============================= */
@media (max-width: 768px) {
  .container {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
    margin-left: auto;

  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    display: none;
    width: 100%;
    background-color: #feffff;
    margin-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu,
  .sub-dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 0;
    width: 100%;
  }

  .dropdown-menu li a,
  .sub-dropdown-menu li a {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  .dropdown:hover .dropdown-menu,
  .sub-dropdown:hover .sub-dropdown-menu {
    display: block;
  }
}




        .slider-container {
            width: 100%;
            height: 80vh;
         position: relative;
            overflow: hidden;
            z-index: -1;
        }

        .slider-wrapper {
            width: 100%;
            height: 90%;
            position: relative;
        }

        .slider-track {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 40%;
            background-size: contain; /* Changed from cover to contain */
            background-position: center;
            background-repeat: no-repeat;
          
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

       
      

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-nav:hover {
            background: rgba(0,0,0,0.8);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* Images - ensure these paths are correct */
       /* Images */
        .slide:nth-child(1) {
            background-image: url('IMAGES/banner\ pvc\ 1.jpg');
        }

        .slide:nth-child(2) {
            background-image: url('IMAGES/banners pvc2.jpg');
        }

        .slide:nth-child(3) {
            background-image: url('IMAGES/bab1.jpg');
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .slider-container {
                height: 70vh;
            }
        }

        @media (max-width: 768px) {
            .slider-container {
                height: 20vh;
            }
            
            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .prev {
                left: 10px;
            }

            .next {
                right: 10px;
            }

            .slider-dots {
                bottom: 15px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }
        }


.slider {
  position: relative;
  width: 100%;
  height: 50%;
  max-width: 1800px;
  min-width: 320px;         /* Minimum width for small devices */
  min-height: 240px;        /* Minimum height to prevent shrink */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  height: 60vh; /* 🔥 60% of viewport height */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 margin-top: 1%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;


}

    /* === Responsive Enhancements === */

    @media (max-width: 768px) {
      .slider {
        height: 50vh;
        border-radius: 12px;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 10px;
      }

      .slider {
        height: 45vh;
        min-height: 200px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

      .slide img {
        border-radius: 10px;
      }
    }

    #about-section {
      font-family: spantax;
      max-width: 1300px;
      margin: 10px auto;  /* Decreased the top and bottom margin */
      padding: 10px 20px;  /* Reduced padding */
      background-image: url(IMAGES/bg3.jpg);
      background-size: cover;
      color: #0b0447;
      font-weight: 500;
      border-radius: 12px;
      margin-top: 2%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      animation: fadeInUp 1s ease-out;
    }

    .about-title {
      text-align: center;
      margin-top: 10px;
      font-size: 2.5em;
      color: #ffffff; /* Dark text for the title */
      opacity: 0;
      animation: fadeIn 1.2s ease-out forwards;
    }

    .about-row {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 40px;
      align-items: center;
      opacity: 0;
      animation: fadeInUp 1s ease-out forwards;
      gap: 20px; /* Adjusts the space between the image and text */
    }

    .about-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .about-image {
      flex: 1;
      padding: 0px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-left: 5%;
    }

    .about-image img {
      width: 80%;
      border-radius: 8px;
      object-fit: cover;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-image:hover img {
      transform: scale(1.05); /* Slight zoom effect */
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Hover shadow effect */
    }

    .about-text {
    
      padding: 1px;
      margin-top: 20px; /* Adjust top space between image and text */
      margin-left: 1%;
    }
    .about-text h3{
      text-align: center;
    }
    .about-text p {
      font-size: 20px;
      text-align: left;         /* Makes text alignment consistent */
      max-width: 700px;         /* Restricts the width for better readability */
      margin: 0 auto;           /* Centers it horizontally if needed */
      padding: 5px 1px; 
      margin-top: 3%;
    }
    .about-text1 {
      flex: 1;
      padding: 10px;
      margin-top: 0px; /* Adjust top space between image and text */
      margin-right: 10%;
    }
    .about-text1 h3{
      text-align: center;
      margin-top: 2%;
    }
    .about-text1 p {
      font-size: 20px;
      text-align: left;         /* Makes text alignment consistent */
      max-width: 700px;         /* Restricts the width for better readability */
      margin: 0 auto;           /* Centers it horizontally if needed */
      padding: 5px 1px; 
    }
  @media (max-width: 768px) {
  .about-row {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .about-image {
    margin-left: 0;              /* Remove the offset */
    display: flex;
    justify-content: center;     /* Center the image horizontally */
    width: 100%;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;            /* Prevents overly large images */
    height: auto;
  }

  .about-text,
  .about-text1 {
    padding: 10px;
    margin: 0 auto;
    text-align: center;
  }

  .about-text p,
  .about-text1 p {
    text-align: center;
  }
}

    /* Animation Keyframes */
    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 12px;
  color: #000000;
}

.field input {
  display: block;
  min-width: 150px;
  line-height: 1.5;
  font-size: 14px;
}

input[type="submit"] {
  display: block;
  padding: 6px 10px;
  font-size: 14px;
  background-color: #070707;
  color: #fff;
  border: none;
  width: 30%;
  margin-left: 35%;
}


/* Section styling */
.slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}





/* Horizontal card slider */
.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 40px 0;
}

.card-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

/* Individual card styling */
.card {
  flex: 0 0 300px;           /* Fixed width */
  max-width: 300px;
  background-color: #87CEEB;
  border: 2px solid navy;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}




.card:hover {
  transform: scale(1.05);
  border-color: #003366; /* Darker navy on hover */
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h3 {
  color: #007BFF;
  margin: 10px 0 5px;
  font-family: spantex;
}

.card h3:hover{
  color: #0b0447;
}


/* Slider arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 1;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Form styling */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 10px 20px;
  background-color: #004aad;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 4px;
}

form button:hover {
  background-color: #00338d;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 30px 15px;
  }

  .product {
    width: 90%;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav a {
    font-size: 1rem;
  }

  form input, form textarea {
    font-size: 1rem;
  }

  form button {
    width: 100%;
  }
}

/*LOGOS SECTION*/

.logo-slider {
  overflow: hidden;
  padding: 40px 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.logo-track {
  display: flex;
  width: calc(260px * 14); /* No extra spacing (tight fit) */
  animation: scroll 65s linear infinite;
}

.logo {
  width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0px; /* Very small gap (5px each side) */
}

.logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.image-section {
  padding: 60px 20px;
  background: linear-gradient(-45deg, #fafafa, #010a5f, #158dbd, #6ccffa);
  background-size: 400% 400%;
  animation: gradientBG 5s ease infinite;
  margin-top: 4%;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-title {
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}


@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .card img {
    height: 160px;
  }
  
  .card-title {
    font-size: 1rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .image-section {
    padding: 20px 55px;
  }
  
  .card-container {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .section-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}









/* ========= CONTACT SECTION STYLING ========= */
.contact-section {
  padding: 30px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0b0447;
  margin-top: 3%;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #0b0447;
  text-align: center;
}

/* Unified Container Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Divider Between Sections */
.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-container::before {
    display: none;
  }

  .info-map-wrapper::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #ccc;
    margin: 30px 0;
  }
}

/* ===== Left Side: Contact Info & Map ===== */
.info-map-wrapper {
  flex: 1 1 500px;
  padding: 20px;
}

.contact-info {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== MAP STYLING ===== */
.map-container {
  text-align: left; /* Aligns image to the left on large screens */
}

.map-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.map-image:hover {
  transform: scale(1.03);
}

/* Center map on mobile screens */
@media (max-width: 768px) {
  .map-container {
    text-align: center;
  }

  .map-image {
    margin: 0 auto;
  }
}


.map-image:hover {
  transform: scale(1.03);
}

/* === Quick Enquiry Form Styling === */
.quick-enquiry {
  width: 100%;
  max-width: 500px;
  padding: 25px;
  background-color: #4faffd;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  /* Align to the left */
  margin-left: 0;
  margin-right: auto;
}

/* Form Heading */
.quick-enquiry-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Form Groups */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
}

/* Button */
.quick-enquiry button {
  background-color: beige;
  color: #00338d;
  padding: 12px 15px;
  font-size: 1.4rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;

  /* Center the button */
  display: block;
  margin-left: 30%;
  margin-right: auto;

  transition: all 0.3s ease;
  width: 40%; /* Adjust width as needed */
}

.quick-enquiry button:hover {
  background-color: #0b0447;
  color: #ffffff;
  transform: translateY(-2px);
}


/* === Responsive Styles === */
@media (max-width: 768px) {
  .quick-enquiry {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .btn {
    width: 40%;
  }

  
}

/* ===== Responsive Enhancements ===== */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 2rem;
  }


}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
}



        /* Desktop Footer Styles */
        footer {
            background-color: #4faffd;
            color: #fff;
            padding: 40px 0 0;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
            gap: 35px;
            align-items: start;
        }

        .footer-company-box {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            padding-top: 10px;
        }

        .footer-company-box .logo img {
            width: 180px;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-left: 30px;
        }

        .footer-link-box h3 {
            font-size: 1.1rem;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 15px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 8px;
        }

        .footer-link-box p {
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .footer-link-box a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link-box a:hover {
            color: #f0f8ff;
            text-decoration: underline;
        }

        .footer-link-box ul {
            list-style: none;
        }

        .footer-link-box ul li {
            margin-bottom: 8px;
        }

        .footer-link-box ul li a {
            color: #ffffff;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 4px 0;
            display: block;
        }

        .footer-link-box ul li a:hover {
            color: #f0f8ff;
            padding-left: 8px;
        }

        .location-section .map-container {
            margin: 15px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            width: 80%;
            max-width: 200px;
        }

        .location-section img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .location-section .address {
            margin-top: 15px;
            font-size: 0.85rem;
            line-height: 1.4;
            color: #ffffff;
            text-align: center;
        }

        .footer-bottom {
            background-color: #e4e2e2;
            padding: 15px 0;
            text-align: center;
            margin-top: 30px;
        }

        .footer-bottom span {
            color: #333;
            font-size: 0.85rem;
        }

        /* Mobile Styles - Minimal Design */
        @media (max-width: 768px) {
            footer {
                padding: 20px 0 0;
            }

            .footer-container {
                display: block;
                padding: 0 15px;
            }

            /* Hide non-essential sections on mobile */
            .footer-link-box:nth-child(3),
            .footer-link-box:nth-child(4) {
                display: none;
            }

            /* Compact company section */
            .footer-company-box {
                text-align: center;
                margin-bottom: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .footer-company-box .logo img {
                width: 100px;
                 margin-left: 80px;
                    object-fit: contain;
            }

            /* Minimal contact section */
            .footer-link-box {
                text-align: center;
                margin-bottom: 15px;
            }

            .footer-link-box h3 {
                font-size: 1rem;
                margin-bottom: 10px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                padding-bottom: 5px;
            }

            .footer-link-box p {
                font-size: 0.8rem;
                margin-bottom: 5px;
            }

            /* Simplified location section */
            .location-section .map-container {
                margin: 10px 0;
                height: 80px;
            }

            .location-section img {
                height: 80px;
            }

            .location-section .address {
                font-size: 0.75rem;
                margin-top: 8px;
            }

            .footer-bottom {
                padding: 12px 0;
                margin-top: 20px;
            }

            .footer-bottom span {
                font-size: 0.75rem;
            }
        }

        /* Ultra-minimal for very small screens */
        @media (max-width: 480px) {
            footer {
                padding: 15px 0 0;
            }

            .footer-container {
                padding: 0 10px;
            }

            /* Show only logo and essential contact */
            .footer-company-box {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .footer-company-box .logo img {
                width: 80px;
                margin-left: 80px;
                   object-fit: contain;
            }

            .footer-link-box h3 {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }

            .footer-link-box p {
                font-size: 0.75rem;
                margin-bottom: 3px;
            }

            /* Very compact location */
            .location-section .map-container {
                height: 60px;
                margin: 8px 0;
            }

            .location-section img {
                height: 60px;
            }

            .location-section .address {
                font-size: 0.7rem;
                line-height: 1.2;
            }

            .footer-bottom {
                padding: 10px 0;
                margin-top: 15px;
            }

            .footer-bottom span {
                font-size: 0.7rem;
            }
        }

/* Scroll to Top Button */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #000;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  color: #fff8f8;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background: #717171;
  transform: scale(1.1);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15);
}



/* In style.css or <style> block */
.dropdown {
  display: inline-block;
  margin-top: 20px;
}

.dropdown-menu {
  text-align: left;
}





