* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  body {
      font-family: "Segoe UI";
    }
  
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}



.nav-container {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  height: 70px; /* adjust this for better size */
  max-height: 100%;
  object-fit: contain;
  
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
}

.dropdown {
  display: block;
  position: relative;
}


/* Dropdown base */


.dropdown .arrow {
  font-size: 10px;
  margin-left: 2px;
  transform: rotate(180deg);
  color: rgb(248, 0, 33); /* optional highlight color */
}

/* Dropdown menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background-color: #f5f7ff;
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  
}



.dropdown-menu li a {
  padding: 10px 20px;
  color: #222;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  color: #0099ff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown:hover .arrow {
  
  transition: 0.3s ease;
}


/* Hero Section */
.hero {
  
  height: 100vh;
  background: url('img/1457.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.hero-overlay {
  max-width: 600px;
  margin-left: 70px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.subline {
  margin: 20px 0;
  font-size: 1rem;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav a:hover{
  color: #ff0000;
}
.about-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-text h5 {
  color: #6a2fc9;
  font-size: 16px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.about-text p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #00ec4f;
  border: 1px solid #00ec4f;
  color: #fff;
}

.about-images {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 450px;
  
  border-radius: 8px;
  object-fit: cover;
}
.about-img:hover{
  scale: 1.02;
  transition: 0.4s ease;
}
/* offer section */
.offer-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.offer-header h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 10px;
}

.offer-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 350px;
  text-align: left;
}

.offer-card h3 {
  font-size: 20px;
  padding: 20px 20px 0 20px;
}

.offer-card p {
  padding: 10px 20px 20px 20px;
  color: #555;
  font-size: 15px;
}

.offer-image {
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.offer-image:hover img {
  transform: scale(1.02);
}
/* footer styles */
.site-footer {
  background-color: #f0f0f0;
  padding: 60px 20px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #000;
  display: inline-block;
}

.social-icons a:hover {
  color: #0077b5; /* LinkedIn blue as example */
}

.footer-bottom {
  width: 100%;
  background-color: #007a2d;
  padding-top: 10px;
  padding-bottom:  10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-top: 30px;
}
/* choose section */
.choose-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.choose-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.choose-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.choose-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.choose-icon {
  width: 50px;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 15px;
  color: #444;
}
/* testimonial styles */
.testimonial-section {
  background: url('img/74913.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
  color: #fff;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.testimonial-slider {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  color: #fff;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Responsive: stack to 1 column on small screens */
@media (max-width: 992px) {
  .testimonial-slider .swiper-slide {
    width: 100% !important;
  }
}

/*contact us */
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form {
  background: #66a690;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1 1 500px;
  max-width: 600px;
  color: #fff;
  text-align: left;
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: bold;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
}

.contact-form textarea {
  resize: none;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #007f4f;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #005f3c;
}

.contact-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form .form-row {
    flex-direction: column;
  }
}
