/* Full-screen overlap container */
body {
  position: absolute;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  top: 0;
  background-image: url(./img/backgound.png);
  left: 0;
  background-size: cover; /* Cover the container */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat;
  
}
/* Logo Styles */
.navbar-brand img {
height: 11rem;
}

@media (max-width: 1200px) {
.navbar-brand img {
    height: 11rem;
}
}

@media (max-width: 991px) {
.navbar-brand img {
    height: 5.5rem;
}
}

@media (max-width: 576px) {
.navbar-brand img {
    height: 90px;
}
}

/* Navbar Styles */

.navbar {
/* background: linear-gradient(90deg, #FF6B6B 0%, #FFD93D 100%); */
padding: 0.5rem 1rem;
min-height: 64;

}

.navbar.sticky-top {
transition: box-shadow 0.3s ease-in-out;
}


/* Navigation Links */
.nav-link {
color: white !important;
font-weight: 500;
margin: 0 1rem;
transition: opacity 0.3s;

}

.nav-link:hover {
opacity: 0.8;
}

/* Dropdown Styles */
.dropdown-menu {
background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%); 
border: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 0.5rem;
min-width: 180px;
}

.dropdown-item {
color: #f1b8b8;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: all 0.3s ease;
}

.dropdown-item:hover {
background-color: #FFD93D;
color: #ffffff;
transform: translateX(5px);
}

/* Contact Button */
.contact-btn {
  background-color: #FFA500; /* Orange color */
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: 50px; /* More rounded corners */
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 8px 15px rgba(255, 165, 0, 0.3);
  position: relative;
  text-decoration: none;
}

.contact-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0));
  pointer-events: none;
}

.contact-btn:hover {
  background-color: #FF9500;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(255, 165, 0, 0.4);
}

.contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(255, 165, 0, 0.3);
}

/* Hamburger Menu */
.navbar-toggler {
border: none;
padding: 0.3rem;
}


.navbar-toggler:focus {
box-shadow:  0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Offcanvas Styles
.offcanvas {
background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);

}
*/
.offcanvas-header {
padding: 1.5rem 2rem;
}

.offcanvas-title {
color: white;
font-weight: 600;
}

.offcanvas-body {
width: 100%;
padding: 1rem 2rem;
}
.offcanvas .dropdown-menu {
background: linear-gradient(135deg, #f0d5d5 0%, #FFD93D 100%); 
border: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 0.5rem;
min-width: 180px;
}
.btn-close {
background-color: white;
}


/* Mobile Dropdown Styles */
@media (max-width: 991px) {
.dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
}
.body{
background-image: center;
}
.dropdown-item {
    color: rgb(233, 127, 127) !important;
    padding: 0.5rem 1rem;
    background:transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

}

/* Content Area Styles */
.content {
min-height: 200vh;
padding: 2rem 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
.nav-link {
    color: white !important;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-btn {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
    
}

.offcanvas {
  background: linear-gradient(135deg, rgba(255, 107, 107,0.8) 0%, rgba(255, 217, 61,0.8) 100%);
  width: 75%;
    max-width: 200px;
}
}
/* hero section */
.hero-section {
min-height: 10vh;
position: relative;
overflow: hidden;
}



.hero-content {
position: relative;
z-index: 1;
padding-top: 30px;
}

.hero-title {
color: white;
font-size: 3rem;
font-weight: bold;
max-width: 500px;
margin-bottom: 2rem;
} 
.hero-section .img-fluid {
max-width: 200%; /* Ensures the image doesn't exceed its container width */
height: auto; /* Maintains the aspect ratio */
display: block; /* Removes extra spacing below the image */
}

@media (max-width: 992px) { /* For medium screens and smaller */
.hero-section .img-fluid {
    max-width: 80%; /* Adjust the image width for smaller screens */
    margin: 0 auto; /* Center the image */
}
}

@media (max-width: 768px) { /* For tablets and smaller */
.hero-section .img-fluid {
    max-width: 70%; /* Further reduce the image size */
}
}

@media (max-width: 576px) { /* For mobile screens */
.hero-section .img-fluid {
    max-width: 60%; /* Scale down the image for smaller mobile screens */
}
}

@media (max-width: 768px) {
.hero-title {
    font-size: 2rem;
    text-align: center;
}

.hero-content {
    padding-top: 60px;
    text-align: center;
}
}
.product-item{
min-height: 100px;
background-color: blueviolet;
min-width: 200px;
}

/* Main Titles */
.main-title {
color: #f4853b;
text-align: center;
margin-bottom: 10px;
font-weight: 700;
}

.subtitle {
color: #dc3545;
text-align: center;
margin-bottom: 40px;
font: weight 500px; ;
}
/* Product Links */
.product-link {
text-decoration: none;
display: block;
}

.product-link:hover {
text-decoration: none;
}

/* Product Cards */
.product-card {
background-color: #f4853b;
border-radius: 15px;
padding: 20px;
text-align: center;
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 20px;
transition: transform 0.3s ease;
}

.product-card:hover {
transform: scale(1.05);
}

.product-icon {
width: 80px;
height: 80px;
margin-bottom: 15px;
}

.product-title {
color: white;
font-weight: 500;
margin: 0;


}

/* Responsive Adjustments */
@media (max-width: 576px) {
 .container {
      padding: 0 30px;
  }
/* .product-card {
    height: 100px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 20px;
    margin-left: auto;
    margin-right: auto;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 20px;
}

.main-title {
    font-size: 24px;
}

.subtitle {
    font-size: 14px;
}

.product-title {
    text-align: left;
    font-size: 16px;
} */
.product-card {
  height: 90px;
  flex-direction: row;
  justify-content: flex-start;
  padding: 10px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  gap: 15px;
}

.product-icon {
  width: 70px;
  height: 70px;
  margin: 0;
  flex-shrink: 0;
}

.product-title {
  text-align: left;
  font-size: 18px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 10px;
}
}
/* Marketing Section Styles */
#marketing-section {
background-color: #fdb347;
padding: 80px ;
}

.section-title {
color: #333;
margin-bottom: 20px;
}

.highlight-text {
color: #dc3545;
font-weight: 600;
font-size: 1.5rem;
margin-bottom: 30px;
}

.product-image {
max-width: 100%;
height: auto;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

.description-text {
color: #333;
font-size: 1rem;
line-height: 1.6;
margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.marketing-section {
    padding: 40px 0;
}

.highlight-text {
    font-size: 1.25rem;
    text-align: center;
}
.section-title{
  text-align: center;
  
}
.product-image {
  max-width: 75%;
  margin: 0 auto;
  display: block;
}

.description-text{
text-align: center;
}
}
@media (max-width: 576px) {
.product-image {
    max-width: 60%;
}

.content-wrapper {
    padding: 0 10px; /* Slightly less padding on very small screens */
}
}
/* Main Styles */
.welcome-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.main-title {
  color: #f0a500;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle {
  color: #dc3545;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

/* Card Styles */
.feature-card {
  background-color: #ffd580;
  border-radius: 25px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  color: #333;
}

.card-title {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .welcome-section {
      padding: 40px 0;
  }

  .main-title {
      font-size: 2rem;
  }

  .subtitle {
      font-size: 1.1rem;
      margin-bottom: 2rem;
  }

  .feature-card {
      padding: 1.5rem;
      margin-bottom: 1rem;
  }

  .card-icon {
      font-size: 2rem;
  }

  .card-title {
      font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .main-title {
      font-size: 1.75rem;
  }

  .feature-card {
      padding: 1.25rem;
  }
}

/* Footer Styles */
.footer {
background-color: #FFB74D;
padding: 20px 0;
color: #000;
}

.footer-logo {
max-width: 150px;
height: auto;
}

.footer-heading {
font-weight: 600;
margin-bottom: 15px;
}

.footer-links {
padding: 0;
}

.footer-links li {
margin-bottom: 8px;
}

.footer-links a {
color: #000;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: #333;
}

.address-text {
line-height: 1.5;
}

.copyright-text {
font-size: 14px;
color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.footer-heading {
    text-align: center;
}

.footer-links {
    text-align: center;
}

.address-text {
    text-align: center;
}
}
/* Footer Styles */
.footer {
  background-color: #FFB74D;
  padding: 20px 0;
  color: #000;
  width: 100%;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #333;
}

.address-text {
  line-height: 1.5;
}

.developer-credit {
  text-align: center;
  line-height: 1.4;

    border: 2px solid #000;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}
.phone-link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #333;
  text-decoration: underline;
}

.copyright-text {
  font-size: 14px;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-container {
      text-align: center;
      margin-bottom: 20px;
  }
  
  .footer-heading {
      text-align: center;
  }
  
  .footer-links {
      text-align: center;
  }
  
  .address-text {
      text-align: center;
  }
  
}
