*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    
}
/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(224, 224, 224);
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Always on top */
}

/* Logo Image - New Class */
.logo-img {
  padding-left: 35px;
  height: 80px;
  width: 99px;
  object-fit:cover;

}
/* Default navbar (for desktop) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgb(224, 224, 224);
}

/* Mobile view - unfix navbar */
@media (max-width: 768px) {
  .navbar {
    position: static; /* OR you can use 'relative' */
  }
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #f4c430;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1px;
}

.social-icons a {
  color: #000;
  font-size: 18px;
  transition: 0.3s;
  padding-right: 20px;
}

.social-icons a:hover {
  color: #f4c430;
}

/* Global Anchor */
a {
  text-decoration: none;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .logo-img {
    height: 50px;
  }
}
html body {
  scroll-behavior: smooth;
}
/* end */
.hero-section {
  background-image: url('img/bannaer.jpeg'); 
  background-size: cover;
  background-position: center; 
  padding: 100px 20px;
  text-align: center;
  color: #B8860B;
  height: 100vh;
  width: 100%;
  
}
.hero-content {
  animation: fadeInUp 2.5s ease-in-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* @keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
.hero {
  height: 115vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("img/ChatGPT\ Image\ Jul\ 22\,\ 2025\,\ 05_34_19\ PM.png") center/cover no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  animation: fadeInUp 1.5s ease-in-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f4c430;
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f4c430;
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}


.hero-content h1 {
  font-size: 49px;
  margin-bottom: 10px;
  color: white;
}

.hero-content p {
  font-size: 19px;
  font-weight: 600;
  color:white;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  border: none;
  background-color: #A9DFBF;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: #7FBF9E;
}

.hero-buttons .btn.secondary {
  background-color:#A9DFBF;
}

.hero-buttons .btn.secondary:hover {
  background-color:#7FBF9E;
}
/* about start*/
.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 500px;
  padding: 20px;
}

.about-text h2 {
  color:gold;
  font-size: 45px;
  margin-bottom: 20px;
}

.about-text p {
  color: #5D4037;
  font-size: 18px;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 500px;
  padding: 20px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
/* cards section */
.cards-section {
  padding: 80px 20px;
  background-color: whitesmoke;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #B8860B;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  font-size: 22px;
  color: #B8860B;
  margin-top: 15px;
}

.card p {
  font-size: 16px;
  color: #5D4037;
  margin-top: 10px;
}
/* servies section */
.services-section {
  padding: 80px 20px;
  background-color: #fff8e1;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #B8860B;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #f0e6d2;
  border-radius: 12px;
  width: 280px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 20px;
  color: #B8860B;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
  color: #5D4037;
  line-height: 1.6;
}
/* brand section */
.brand-section {
  padding: 60px 20px;
  background-color: #fefefe;
}

.brand-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.brand-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.brand-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}

.brand-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #006400;
}

.brand-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.brand-img {
  flex: 1;
  text-align: center;
  min-width: 250px;
  padding: 20px;
}

.brand-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* feedback section */
.feedback-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.feedback-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feedback-form input,
.feedback-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
}

.feedback-form button {
  background-color: #B8860B;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feedback-form button:hover {
  background-color: #a67407;
}

.section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}
/* chosse section */
.choose-us-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.choose-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.point {
  background-color: #fff8e1;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 18px;
  color: #5D4037;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
/* news letter */
.newsletter-section {
  padding: 80px 20px;
  background-color: #B8860B;
  color: white;
  text-align: center;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 250px;
  font-size: 16px;
}

.newsletter-form button {
  background-color: #5D4037;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background-color: #4e362f;
}
/* footer section */
.main-footer {
  background-color: #3E2723;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 15px;
}

.footer-content p {
  margin: 5px 0;
}
/* conent section */
.rose-footer {
  background-color: #061010;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 00px;
}

.footer-column h3.logo {
  font-size: 22px;
  margin-bottom: 10px;
  color: #f4c430;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-column p,
.footer-column ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 15px;
  color: #aaa;
}

.logos{
  font-size: 30px;
  color:rgb(245, 217, 7);


}
/* Default navbar (for desktop) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgb(224, 224, 224);
}

/* Mobile view - unfix navbar */
@media (max-width: 768px) {
  .navbar {
    position: static; /* OR you can use 'relative' */
  }
}

html{
  scroll-behavior: smooth;
}
/* Responvie  */
/* Already existing styles remain same... */

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
  }

  .social-icons {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 50px;
  }

  .nav-links li a {
    font-size: 15px;
  }

  .social-icons a {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .rose-rice-card {
    flex-direction: column;
    text-align: center;
  }

  .card-content h3 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* Responsive navbar */
/* .navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f5f5f5;
}

.logo img {
  height: 50px;
} */
