 
 /*secondbanner*/
 .contact-info-container {
    background-color: #ffffff;
  }
  
  .logo-img {
    width: 70px; /* Adjust according to your logo size */
    height: auto;
    margin-left: 60px; /* Add left margin for logo */
  }
  
  .company-text p {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: bold;
  }
  
  .contact-details {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-right: 60px; /* Add right margin for the address */
  }
  
  .contact-item p {
    font-size: 14px;
    color: #333;
    margin-left: 8px;
    margin-top: 8px;
  }
  
  .icon-circle {
    background-color: #B92325;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon-circle i {
    color: white;
    font-size: 18px;
  }
  
/* Button Style */
.btn-talk {
    background-color: #B92325;
    color: white;
    border: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
  }
  
  .btn-talk .icon-circle {
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
  }
  
  .btn-talk i {
    color: #B92325;
    font-size: 16px;
  }
  
  .btn-talk span {
    font-weight: bold;
  }
  
  /* Hover effect for button */
  .btn-talk:hover {
    background-color: #9B1C1E;
  }
  
  @media (max-width: 768px) {
    .contact-info-container {
      display: none; /* Hide the entire container on mobile */
    }
  
    .logo-img {
      display: none; /* Hide the logo */
    }
  
    .company-text p {
      display: none; /* Hide the company text */
    }
  
    .contact-details {
      display: none; /* Hide the contact details section */
    }
  
    .contact-item {
      display: none; /* Hide individual contact items */
    }
  
    .icon-circle {
      display: none; /* Hide the circular icons */
    }
  }
  

  /*navbar*/
/* Navbar custom styling */
/* Navbar custom styling */
.navbar-custom {
  background-color: #324D90; /* Set the background color */
  width: 90%; /* Decrease the width of the navbar */
  margin: 0 auto; /* Center the navbar */
  position: absolute; /* Position navbar on top of the banner */
  top: 140px; /* Position at the top */
  left: 50%; /* Center navbar horizontally */
  transform: translateX(-50%); /* Adjust position after centering */
  z-index: 10; /* Ensure navbar is on top of the banner */
  border-radius: 50px;
}
.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* Rest of the CSS remains unchanged */
.navbar-nav {
  flex-direction: row; /* Align the nav items horizontally */
}

.navbar-left {
  margin-right: auto; /* Align navbar items to the left */
}

.navbar-nav .nav-item {
  margin-right: 20px; /* Space between the navigation items */
}

.navbar-toggler-icon {
  background-color: white; /* Change the color of the toggler icon to white */
}

.nav-link {
  color: white !important; /* Set text color to white */
  font-weight: bold; /* Make the text bold */
}

.navbar-brand {
  color: white !important; /* Set brand color to white */
  font-weight: bold; /* Make the brand text bold */
}

.get-quote {
  margin-left: 30px; /* Add spacing on the left side for 'Get a Quote' */
  font-weight: bold; /* Bold text */
}

.nav-link:hover, .get-quote:hover {
  color: #FFD700 !important; /* Change the hover color to gold */
}

/* Active state styling */
.nav-link.active {
  color: #FFD700 !important; /* Active link color */
  font-weight: bold; /* Keep the text bold for active links */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .navbar-custom {
    display: none; /* Hide the entire navbar on mobile */
  }
}


/*mobile navbar*/
/* Mobile Navbar Styles */

.mobile-navbar {
  display: none; /* Hide by default on all devices */
  width: 100%;
}

/* Mobile Navbar visible only on screens max-width 786px */
@media (max-width: 786px) {
  .mobile-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff;
      padding: 10px;
      position: relative;
  }

  /* Logo Styles */
  .mobile-logo {
      flex: 1;
      display: flex;
      justify-content: flex-start; /* Align logo to the left */
      align-items: center; /* Vertically center the logo */
      margin: 0; /* Remove any margin */
      padding: 0; /* Remove any padding */
  }

  .mobile-logo img {
      width: 60px; /* Adjust logo size */
      height: auto;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      margin: 0; /* Remove any margin from the image */
  }

    .logo-text {
      color: #000; /* Text color */
      font-size: 18px; /* Adjust font size */
      line-height: 1.5;
      display: flex;
      flex-direction: column; /* Display text in vertical order */
      margin-left: 10px;
    }

    .logo-text p {
      margin: 0; /* Remove margin around text */
      padding: 0; /* Remove padding around text */
      font-weight: bold;
    }


  /* Toggle Button Styles */
  .mobile-toggle-btn {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 1001;
  }

  .mobile-toggle-btn .bar {
      width: 30px;
      height: 4px;
      background-color: #000000;
      border-radius: 2px;
      transition: all 0.3s ease;
  }

  /* Toggle Bar Animation (smooth transition) */
  .mobile-toggle-btn.active .bar1 {
      transform: rotate(45deg) translateY(7px);
  }

  .mobile-toggle-btn.active .bar2 {
      opacity: 0;
  }

  .mobile-toggle-btn.active .bar3 {
      transform: rotate(-45deg) translateY(-7px);
  }

  .mobile-menu {
      display: none; /* Hidden by default */
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 100px;
      right: 0;
      width: 100%;
      background-color: #333;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      margin: 0;
      padding: 0;
  }

  /* Show menu when active */
  .mobile-menu.show-menu {
      display: flex;
      opacity: 1;
      transform: translateY(0);
  }

  .mobile-menu-item {
      width: 100%;
      text-align: center;
      padding: 12px 0;
  }

  .mobile-menu-item a {
      text-decoration: none;
      color: #fff;
      font-size: 18px;
  }


  .quote-btn {
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
  }
}
/* Active state for mobile menu item */
.mobile-menu-item.active {
  background-color: #6A87E5; /* Change background color when active */
  color: #fff; /* Change text color when active */
}

/* Optional: Hover effect for mobile menu item */
.mobile-menu-item a:hover, .mobile-menu-item.active a {
 
  color: #fff; /* Ensures text stays white */
}


/* Banner Section */
.banner {
    background-size: cover;
    background-position: center;
    height: 660px; /* Set the height of the banner */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    color: white;
    position: relative;
  }
  
  /* Content inside the banner */
  .banner-content {
    max-width: 650px; /* Max width for text */
    margin-left: 50px; /* Move text to the left */
  }
  
  /* Heading */
  .banner-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* Subheading */
  .banner-subheading {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  /* Buttons */
  .banner-buttons {
    display: flex;
    gap: 15px;
  }
  
  .banner-buttons .btn {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px; /* Updated border-radius */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  
  .banner-buttons .btn-primary {
    background-color: #B92325; /* Updated to red color */
    color: white;
  }
  
  .banner-buttons .btn-primary i {
    margin-left: 10px; /* Space between text and icon */
  }
  
  .banner-buttons .btn-primary:hover {
    background-color: #9B1C1E; /* Darker red on hover */
  }
  
 
  .small-text {
    font-size: 2.5rem; /* Adjust the size of 'Delivering Excellence' */
    font-weight: normal; /* Optional: Set the font weight to normal if needed */
  }
  
  /* Hover effect for buttons */
  .banner-buttons .btn:hover {
    opacity: 0.8;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .banner {
      height: 300px; /* Smaller height on mobile */
      padding-left: 20px;
    }
  
    .banner-content {
      max-width: 100%;
      margin-left: 20px; /* Adjust text alignment */
    }
  
    .banner-heading {
      font-size: 2rem; /* Smaller heading on mobile */
    }
  
    .banner-subheading {
      font-size: 1rem; /* Smaller subheading on mobile */
    }
  }
  /* Responsive adjustments for smaller screens */
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .banner {
      height: 400px; /* Smaller height on mobile */
      padding-left: 20px;
      padding-right: 20px; /* Added padding on the right */
      justify-content: center; /* Center the content vertically */
      text-align: center; /* Center text */
    }
  
    .banner-content {
      max-width: 100%;
      margin-left: 0; /* Remove left margin */
      margin-right: 0; /* Remove right margin */
      padding: 0 10px; /* Add padding for better spacing */
    }
  
    .banner-heading {
      font-size: 2rem; /* Smaller heading on mobile */
      line-height: 1.3; /* Adjust line height for better readability */
      margin-bottom: 15px; /* Reduced bottom margin */
    }
  
    .banner-subheading {
      font-size: 1rem; /* Smaller subheading on mobile */
      margin-bottom: 20px; /* Reduced bottom margin */
    }
  
    .banner-buttons {
      display: block; /* Stack the buttons vertically */
      gap: 10px; /* Space between buttons */
      align-items: center; /* Align buttons to the center */
    }
  
    .banner-buttons .btn {
      padding: 10px 15px; /* Reduced padding for mobile */
      font-size: 1rem; /* Smaller font size for buttons */
      width: auto; /* Full width buttons */
    }
  
    .banner-buttons .btn-primary {
      background-color: #9B1C1E;
      color: white;
      margin-bottom: 10px; /* Space between buttons */
    }
  
   
  
    .small-text {
      font-size: 1.5rem; /* Adjust the size for mobile */
      font-weight: normal;
    }
  }
  


  /*about section*/
  /* About Section Button */
.btn-learn-more {
    background-color: #B92325; /* Red color */
    color: white;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 50px; /* Rounded button */
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-learn-more:hover {
    background-color: #9B1C1E; /* Slightly darker red on hover */
  }

  /* Style to reduce the image size while keeping it responsive */
.about-section img {
    max-width: 80%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the image */
  }
  
  /* For even smaller images on smaller screens */
  @media (max-width: 768px) {
    .about-section img {
      max-width: 100%; /* Adjust for smaller screens */
    }
    .btn-learn-more{
      margin-bottom: 10px;
    }
  }
  
  /*slider section*/
  /* Section Styling */
/* Section Styling */
.innovation-section {
    background-color: #f9f9f9;
  }
  
  /* Heading & Paragraph */
  .section-heading {
    font-size: 31px;

    color: #333;
  }
  
  .section-text {
    font-size: 16px;
    color: #555;
  }
  
  /* Slider Buttons */
  .slider-btn {
    background-color: #B92325;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .slider-btn:hover {
    background-color: #9B1C1E;
  }
  
 /* Card Styling */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    text-align: center;
  }
  
  .card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .card-text {
    position: absolute;
    bottom: 20px; /* Adjusted to move text up */
    width: 100%;
    color: white;
    text-align: left;
    padding: 12px;
    font-size: 24px;
    font-weight: bold;
  }

  .card-text u {
    text-decoration: underline;
    text-decoration-color: white;
  }
  /* Responsive Styles */
@media (max-width: 1024px) {
  .swiper-container {
    padding: 0 20px; /* Add some padding for better alignment */
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 26px; /* Slightly reduce heading size */
  }

  .section-text {
    font-size: 14px; /* Reduce paragraph font size */
  }

  .slider-btn {
    padding: 8px 12px; /* Adjust button size */
    font-size: 16px;
  }

  .card-text {
    font-size: 20px; /* Adjust text size on cards */
    bottom: 15px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 22px; /* Reduce heading size further */
  }

  .slider-btn {
    padding: 6px 10px; /* Make buttons smaller */
    font-size: 14px;
  }

  .card {
    border-radius: 30px; /* Reduce border radius for a better fit */
  }

  .card-text {
    font-size: 22px; /* Adjust text size */
    bottom: 30px;
    padding: 10px;
  }
}



  /*product section*/

  /* Title & Text */
.fashion-title {
    font-size: 28px;
    color: #333;
  }
  
  .fashion-text {
    font-size: 16px;
    color: #555;
  }
  
  /* Button Styling */
  .red-button {
    background-color: #B92325;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
  }
  
  .red-button:hover {
    background-color: #9B1C1E;
  }
  
  /* Image Styling */
  .fashion-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Text Positioning */
  .fashion-info {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-top: 15px;
  }
  /* Responsive Styles */
@media (max-width: 768px) {
  .fashion-title {
    font-size: 24px; /* Reduce heading size */
  }

  .fashion-text {
    font-size: 14px; /* Reduce paragraph font size */
  }

  .red-button {
    padding: 10px 18px; /* Adjust button padding */
    font-size: 14px;
  }

  .fashion-info {
    font-size: 14px; /* Adjust info text size */
  }
}

/* Mobile View (Below 576px) */
@media (max-width: 576px) {
  .fashion-title {
    font-size: 22px;
  }

  .red-button {
    display: block; /* Ensure full width alignment */
    text-align: left; /* Align button to the left */
    width: fit-content; /* Fit content width */
    margin-top: 10px; /* Add spacing */
  }


}




  /*services heading*/
  
  .services-heading {
    font-size: 31px;

    color: #333;
  }
  
  .services-text {
    font-size: 16px;
    color: #555;
  }
  
  .services-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  



  .revolutionizing-section {
    background-image: url('img15.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    padding: 50px 0;
  }

  .revolutionizing-sections {
    background-image: url('img15.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
  }
  
  
  
  .revolution-heading {
    font-size: 31px;

    color: #333;
    margin-bottom: 40px;
  }
  
  .service-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    padding: 20px;
    transition: transform 0.3s ease-in-out;

  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .card-image {
    width: 25%;
    height: auto;
    border-radius: 5px;
  }

  .custom-card-heading,
  .sustainable-card-heading,
  .functional-card-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    text-align: left;
  }
  
  .custom-card-text,
  .sustainable-card-text,
  .functional-card-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: justify;
  }
  /* Responsive Styles */
@media (max-width: 768px) {
  .services-heading,
  .revolution-heading {
    font-size: 26px; /* Reduce heading size */
  }

  .services-text {
    font-size: 14px; /* Reduce paragraph font size */
  }

  .service-card {
    padding: 15px; /* Adjust padding */
  }

  .card-image {
    width: 40%; /* Increase image size for better visibility */
  }

  .custom-card-heading,
  .sustainable-card-heading,
  .functional-card-heading {
    font-size: 16px; /* Reduce heading font size */
  }

  .custom-card-text,
  .sustainable-card-text,
  .functional-card-text {
    font-size: 13px; /* Adjust text size */
  }
}

/* Mobile View (Below 576px) */
@media (max-width: 576px) {
  .services-heading,
  .revolution-heading {
    font-size: 22px; /* Reduce heading size further */
  }

  .service-card {
  
    margin-bottom: 20px; /* Add space between cards */
  }

 

  .card-image {
    width: 25%; /* Increase image size */
  }

  .custom-card-heading,
  .sustainable-card-heading,
  .functional-card-heading {
    font-size: 14px;
  }

  .custom-card-text,
  .sustainable-card-text,
  .functional-card-text {
    font-size: 12px;
  }
}



  /*sustainable manufacturing*/
  /* Sustainable Manufacturing Section */
.sustainable-manufacturing {
    padding: 50px 0;
  }
  
  .sustainable-heading {
    font-size: 28px;
    color: #333;
  }
  
  .sustainable-text {
    font-size: 16px;
    color: #555;
  }
  
  .btn-learn-more {
    background-color: #B92325;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .btn-learn-more:hover {
    background-color: #9B1C1E;
  }
  
  /* Image Styling */
  .sustainable-manufacturing img {
    width: 98%;
    height: auto;
    border-radius: 10px;
  }
  /* Responsive Styles */
@media (max-width: 768px) {
  .sustainable-heading {
    font-size: 24px; /* Reduce heading size */
    margin-bottom: 20px; /* Add margin bottom */
  }

  .sustainable-text {
    font-size: 14px; /* Reduce paragraph font size */
  }

  .btn-learn-more {
    padding: 8px 16px; /* Adjust button padding */
    font-size: 14px;
  }

  .sustainable-manufacturing img {
    width: 100%; /* Full width on smaller screens */
    border-radius: 8px; /* Slightly reduce border-radius */
  }
}

/* Mobile View (Below 576px) */
@media (max-width: 576px) {
  .sustainable-heading {
    font-size: 22px; /* Further reduce heading size */
    margin-bottom: 15px; /* Increase margin bottom */
    margin-top: 10px; 
  }

  .sustainable-text {
    font-size: 13px;
  }

  .btn-learn-more {
    padding: 6px 14px;
    font-size: 13px;
  }

  .sustainable-manufacturing img {
    border-radius: 6px;
  }
}

  



/* Partnering with Brands Section */
.partnering-brands {
    padding: 50px 0;
  }
  
  .partner-heading {
    font-size: 31px;
    color: #333;
    text-align: left;
    margin-bottom: 30px;
  }
  
  /* Image Styling */
  .partnering-brands .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* Ensures images don't get stretched */
  }
  

  
  /* Ensure columns are consistent */
  .partnering-brands .col-md-2 {
    display: flex;
    justify-content: center; /* Centers the images within the columns */
    align-items: center;
    height: 100%;
  }
  
  /* Ensure the row takes full container width */
.brand-logos {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }


  /*slider for products*/
  .crafted-quality-section {
    padding: 50px 0;
  }
  
  .crafted-heading {
    font-size: 30px;
    color: #333;
    margin-bottom: 40px;
  }
  
  .swiper-container {
    width: 100%;
    height: auto;
  }
  
  .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  /* Style for Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
    background-color: #CF1E20; /* Button color */
    color: white; /* Button icon color */
    border-radius: 50%; /* Round button shape */
    width: 40px; /* Button size */
    height: 40px; /* Button size */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 60%; /* Vertically center the button */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
    z-index: 10; /* Make sure buttons are on top */
    cursor: pointer; /* Cursor to pointer when hovering */
    padding: 10px;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
  }
  
  /* Right button (Next) - Position on the right */
  .swiper-button-next {
    right: 10px; /* Distance from the right edge */

  }
  
  /* Left button (Prev) - Position on the left */
  .swiper-button-prev {
    left: 10px; /* Distance from the left edge */
  }
  
  /* Hover Effect for buttons */
  .swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #9B1C1E; /* Darker shade on hover */
  }
  
  /* Adjust icon size inside buttons */
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px; /* Increase icon size */
    font-weight: bold; /* Make icon bold */
  }


  /*footer*/

  /* Footer Section */
.footer-section {
    background-color: #324D90;
    padding: 50px 0;
  }
  
  .footer-logo {
    width: 100px;
    margin-bottom: 15px;
  }
  
  .footer-text {
    font-size: 14px;
    color: #ffffff;
  }
  
  .footer-heading {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-nav,
  .footer-social {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-nav li,
  .footer-social li {
    margin-bottom: 10px;
  }
  
  .footer-nav a,
  .footer-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
  }
  
 
  .footer-contact,
  .footer-address {
    font-size: 14px;
    color: #ffffff;
  }
  
  .footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #ffffff;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  /*about page*/
  /* Inner Banner Section */
 /* Inner Banner Section */
 .inner-banner {
  background-size: cover;
  background-position: center;
  height: 350px; /* Height for inner pages */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Content inside the inner banner */
.inner-banner-content {
  max-width: 650px; /* Max width for text */
}

/* Heading for Inner Banner */
.inner-banner-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 25px;

}



/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .inner-banner {
    height: 200px; /* Smaller height on mobile */
    padding-left: 20px;
    padding-right: 20px;
  }

  .inner-banner-heading {
    font-size: 1.8rem; /* Smaller heading on mobile */
  }
}
/* Subheading for Inner Banner */
.inner-banner-subheading {
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8); /* Slightly lighter color */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .inner-banner-subheading {
    font-size: 1rem; /* Smaller font size on mobile */
  }
}

/*product pages css*/
@media (max-width: 768px) {
  .our-products .row .col-6 {
    padding: 5px; /* Adds spacing between images */
  }

  .our-products img {
    padding: 5px; /* Adds inner spacing */
  }
}



/*contact form*/

.contact-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

.contact-form .form-input, .contact-form .form-textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-input:focus, .contact-form .form-textarea:focus {
  border-color: #CF1E20;
  outline: none;
}

.form-textarea {
  resize: vertical;
}

.btn-send {
  background-color: #CF1E20;
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius:10px;
  transition: background-color 0.3s ease;
}

.btn-send:hover {
  background-color: #a3141b;
  cursor: pointer;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-heading {
    font-size: 1.5rem;
  }

  .contact-form .form-input, .contact-form .form-textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .btn-send {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .contact-section {
    padding: 30px 15px; /* Reduce padding for smaller screens */
  }

  .contact-heading {
    text-align: center; /* Center the heading */
    font-size: 24px; /* Reduce font size */
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px; /* Adjust font size for input fields */
  }

  /* Stack columns on small screens */
  .contact-section .row {
    flex-direction: column;
  }

  
  /* Adjust Google Map */
  .contact-section iframe {
    width: 100% !important;
    height: 300px !important; /* Reduce height for better fit */
  }

  /* Adjust button */
  .btn-send {
    width: 100%; /* Make button full width */
    font-size: 16px;
    padding: 12px;
  }
}
