/* style.css */



a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: #fff;
  padding: 0px 0;
  border-bottom: 1px solid #e5e5e5;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0px;
    padding-bottom: 0px;
        margin-top: -148px;
    margin-bottom: -165px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.logo img {
        width: 260px;
        object-fit: contain;
    height: 445px;
}

.logo small {
  font-weight: normal;
  font-size: 12px;
  display: block;
}

.nav a {
  margin-left: 25px;
  color: #000;
  font-weight: 500;
  font-size: 19px;
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: #1d5ca5;
}

/* Hero Section */
.hero {
  padding: 0px 0;
  padding-bottom: 65px;
    margin-top: -89px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hero-text {
  max-width: 550px;
}

.tag {
  background-color: #2e8b57;
  color: white;
  display: inline-block;
      padding: 12px 16px;
    border-radius: 15px;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: -15px;
    margin-top: 65px;
}

.hero-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
      margin-bottom: 65px;
    margin-top: 65px;
}

.hero-title span {
  color: #1d5ca5;
}

.hero-desc {
  font-size: 25px;
  margin-bottom: 50px;
}

.hero-desc strong {
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #2e8b57;
  color: white;
}

.btn-secondary {
  border: 2px solid #000;
  color: #000;
  background-color: white;
}

.hero-image {
    max-width: 575px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    height: 545px;
    padding-top: 145px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Text */
@media (max-width: 767px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .nav {
    display: none; /* For real mobile nav, use a hamburger menu */
  }
}





/* === About Section === */
.about-section {
  background-color: #f9fff9;
  padding: 20px 20px;
 padding: 45px 20px;
    padding-top: 60px;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.about-left {
  flex: 1;
  max-width: 550px;
  margin-bottom: 70px;
      margin-top: 15px;
}

.about-heading {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 45px;
}

.about-heading span {
  color: #1d5ca5;
}

.about-desc {
  font-size: 17px;
  line-height: 1.6;
      line-height: 1.7;
    margin-bottom: 60px;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-btn {
  background-color: #2e8b57;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-btn .icon {
  font-size: 18px;
}

/* Image Grid */
.about-right {
  flex: 1;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.img-grid img {
  width: 70%;
  height: 90%;
  object-fit: cover;
  border-radius: 5px;
}



/* === Our Products Section === */
.products-section {
  background-color: #f6fdf7;
  padding: 60px 20px;
  text-align: center;
}

.section-heading {
font-size: 45px;
    color: #2e8b57;
    font-weight: 700;
    margin-bottom: 45px;
}

.section-desc {
    font-size: 18px;
    color: #333;
    max-width: 900px;
    margin: 1px auto 40px;
    line-height: 1.7;
}

/* Product Cards Grid */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Single Card */
.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 280px;
  flex: 1 1 280px;
  padding: 20px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
  object-fit: cover;
  height: auto;
}

.product-info {
  margin-bottom: 40px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0;
}

.product-type {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.product-desc {
  font-size: 14px;
  color: #444;
}

/* Plus Button */
.plus-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plus-btn:hover {
  background: #2e8b57;
}




.contact-section {
  background-color: #38a169;
  padding: 60px 20px;
  color: white;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  border: none;
  border-bottom: 2px solid white;
  background: transparent;
  color: white;
}

textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid white;
  background: transparent;
  color: white;
  height: 100px;
  resize: none;
  margin-bottom: 20px;
}

button {
  padding: 15px 30px;
  background-color: white;
  color: #38a169;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e6e6e6;
}

.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}




.contact-section {
  background: #33aa65;
  padding: 60px 20px;
  color: #fff;
  position: relative;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.contact-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 18px;
  font-weight: 400;
  color: #d5e9da;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input,
.form-message textarea {
  flex: 1;
  padding: 12px 10px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  color: #fff;
  outline: none;
}

.form-message textarea {
  width: 100%;
  height: 100px;
  resize: none;
}

.submit-btn {
  background: #fff;
  color: #2f9256;
  font-weight: bold;
  border: none;
  padding: 18px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #e2f1e8;
}

.social-icons {
  position: absolute;
  top: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons .icon {
  width: 44px;
  height: 44px;
  border: 1px solid #d3e8d7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
  opacity: 1; /* Makes placeholder fully visible */
}






.assist-section {
  padding: 85px 20px;
  background-color: #f9fdf8;
}

.assist-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.assist-left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #000;
  margin-bottom: 20px;
}

.assist-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.info-box {
  max-width: 250px;
}

.info-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.underline {
  width: 20px;
  height: 2px;
  background-color: #000;
  margin-bottom: 10px;
}

.bold {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.timing-title {
  font-weight: 600;
  margin-top: 10px;
}




.footer-section {
  background-color: #17629D;
  color: white;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  min-width: 205px;
}

.logo-col {
  flex: 1 1 250px;
}

.footer-logo {
    width: 225px;
    margin-bottom: -105px;
        margin-top: -145px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col p {
  margin: 6px 0;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.phone {
  font-weight: bold;
  color: #ffffff;
}






/* Ticker Section */
.ticker-section {
  background-color: #1f6194; /* Blue background */
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker span {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  padding-left: 100%;
  display: inline-block;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ticker span {
    font-size: 14px;
  }

  .ticker-section {
    height: 35px;
  }
}





/* Scrolling Marquee Styles */
.marquee-section {
  background-color: #1f6194;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-marquee 40s linear infinite;
}

.marquee-content span {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  padding-left: 100%;
  display: inline-block;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-content span {
    font-size: 14px;
  }

  .marquee-section {
    height: 35px;
  }
}



@media (max-width: 768px) {
  .about-right .img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .about-right .img-grid div {
    padding: 0;
  }

  .about-right .img-grid div img {
    width: 200%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px; /* Optional for smooth look */
    transform: scale(1.1); /* Zoom effect */
  }
}
