/* Reset and Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --color-background: hsl(0, 0%, 100%);
  --color-foreground: hsl(215, 25%, 15%);
  --color-primary: hsl(215, 65%, 18%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(45, 95%, 55%);
  --color-secondary-foreground: hsl(215, 65%, 18%);
  --color-muted: hsl(210, 20%, 96%);
  --color-muted-foreground: hsl(215, 15%, 45%);
  --color-border: hsl(215, 20%, 88%);
  --color-card: hsl(0, 0%, 100%);
  --color-card-foreground: hsl(215, 25%, 15%);
  ---main-font: "Outfit", sans-serif;
}

body {
  font-family: var(---main-font);
  background-color: var(--color-background);
  color: var(--color-foreground);
  /* line-height: 1.6; */
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
}

.btn-hero {
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
}

.btn-hero:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-primary-foreground);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  background-color: var(--color-primary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  color: var(--color-secondary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: #224591;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-foreground);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-muted);
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 140vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsla(215, 65%, 18%, 0.95),
    hsla(215, 65%, 18%, 0.85),
    hsla(215, 65%, 18%, 0.7)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-text {
  max-width: 48rem;
  animation: fadeIn 1s ease-out;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  /* background-color: red; */
  margin-top: 40px;
}

.hero-badge svg {
  color: var(--color-secondary);
  animation: glow 2s ease-in-out infinite;
}

.hero-badge span {
  color: #eaa308;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn {
  font-family: var(---main-font);
}

.btn-hero {
  background-color: #e66202;
  color: white;
  font-family: var(---main-font);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #e66202;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator > div {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background-color: #e66202;
  border-radius: 0.375rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.about-content {
  animation: fadeIn 1s ease-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #224591;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item svg {
  color: #e66202;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-cards {
  display: grid;
  gap: 1.5rem;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.about-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.about-card:hover {
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  background-color: rgba(215, 65, 18, 0.1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  width: fit-content;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.about-card:hover .card-icon {
  background-color: var(--color-primary);
}

.card-icon svg {
  color: var(--color-primary);
}

.about-card:hover .card-icon svg {
  color: var(--color-primary-foreground);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #224591;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--color-muted-foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-out;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  animation: fadeIn 1s ease-out;
}

.service-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(45, 95, 55, 0.1);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background-color: #eaa308;
  transform: scale(1.1);
}

.service-icon svg {
  color: var(--color-secondary);
}

.service-card:hover .service-icon svg {
  color: #224591;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #224591;
  margin-bottom: 0.75rem;
}

.service-text {
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: white;
}

.section-title {
  padding-top: 40px;
}

.products-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  background-color: var(--color-card);
  border: 1px solid #e66202;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
  animation: fadeIn 1s ease-out;
}

.product-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, hsla(215, 65%, 18%, 0.8), transparent); */
}

.product-icon-wrapper {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--color-secondary);
  padding: 0.75rem;
  border-radius: 0.75rem;
}

.product-icon-wrapper svg {
  color: var(--color-secondary-foreground);
}

.product-content {
  padding: 1.5rem;

  p i {
    color: green;
    padding-right: 5px;
    font-size: 12px;
  }

  p {
    padding-top: 5px;
  }
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.product-card:hover .product-title {
  color: var(--color-primary);
}

.product-text {
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Section */
.contact-containerss {
  height: 500px;
  width: 100%;
  background-image: url(/images/contacthero.webp);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.475);
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.6);
}

.contactcontainerss {
  height: 500px;
  width: 100%;
  max-width: 1100px;
  /* background-color: #6BD100; */

  h1 {
    padding-top: 120px;
    color: white;
    font-size: 64px;
    font-family: var(---secondary-font);
  }

  p {
    color: white;
    font-family: var(---mainfont);
    padding-top: 30px;
    font-family: var(---secondary-font);
  }
}

/* ib styling */
.contact {
  padding: 5rem 0;
  /* background-color: rgba(210, 20, 96, 0.3); */
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.contact-info {
  animation: fadeIn 1s ease-out;
}

.contact-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}

.contact-text {
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--color-card);
  border: 1px solid #e66202;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  background-color: rgba(215, 65, 18, 0.1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  background-color: #224591;
}

.contact-icon svg {
  color: var(--color-primary);
}

.contact-card:hover .contact-icon svg {
  color: var(--color-primary-foreground);
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
}

.contact-value {
  color: #224591;
  font-weight: 500;
}

.contact-form-wrapper {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #224591;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(215, 65, 18, 0.1);
}

.form-group textarea {
  resize: vertical;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contactcontainerss {
    h1 {
      font-size: 44px;
      font-weight: 600;
      padding-top: 160px;
    }
  }
}

/* Footer */
/* .footer {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-company {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  background-color: var(--color-secondary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  color: var(--color-secondary-foreground);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-description {
  opacity: 0.8;
  max-width: 28rem;
  line-height: 1.6;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-products ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-products ul li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
} */

.footer {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #224591;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.footer1 {
  width: 100%;
  max-width: 400px;

  h1 {
    padding-top: 60px;
    font-family: var(---secondary-font);
    color: white;
  }

  p {
    padding-top: 20px;
    line-height: 1.6;
    color: white;
    font-weight: 300;
    font-size: 14px;
    font-family: var(---secondary-font);
  }
}

.footer1 img {
  width: 110px;
  padding-top: 60px;
}

.footericons {
  margin-top: 25px;
  display: flex;
  gap: 30px;
}

.footericons i {
  color: white;
  font-size: 20px;
}

.footer2 {
  width: 100%;
  max-width: 780px;
  display: flex;
  justify-content: space-between;
}

.footerr1 {
  width: 100%;
  max-width: 200px;
  padding-left: 5px;
  padding-right: 5px;

  h3 {
    padding-top: 60px;
    font-family: var(---main-font);
    color: #3ab561;
  }

  p {
    font-weight: 300px;
    font-size: 14px;
    padding-top: 20px;
    color: white;
    font-family: var(---main-font);
  }
}

.footerr1 a {
  text-decoration: none;
}

.footerr2 {
  width: 100%;
  max-width: 200px;
  padding-left: 5px;
  padding-right: 5px;

  h3 {
    padding-top: 60px;
    font-family: var(---main-font);
    color: #3ab561;
  }

  p {
    font-family: var(---main-font);
    font-weight: 300px;
    font-size: 14px;
    padding-top: 20px;
    color: white;
  }
}

.footerr3 {
  width: 100%;
  max-width: 220px;
  padding-left: 5px;
  padding-right: 5px;

  h3 {
    padding-top: 60px;
    font-family: var(---main-font);
    color: #3ab561;
  }

  p {
    font-family: var(---secondary-font);
    font-weight: 300px;
    font-size: 14px;
    padding-top: 20px;
    color: white;
    font-family: var(--main-font);
  }
}

.reserved {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #315cb9;

  p {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.683);
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

@media (max-width: 1009px) {
  .footer {
    flex-wrap: wrap;
  }

  .footer1 {
    max-width: 940px;
  }
}
@media (max-width: 767px) {
  .footer2 {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .reserved {
    p {
      text-align: left;
    }
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* about styling starts */
.aboutsss {
  height: 500px;
  background-image: url(/images/homepage3.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.74);
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
}

.aboutcontainersss {
  height: 500px;
  width: 100%;
  max-width: 1100px;

  h1 {
    padding-top: 160px;
    color: white;
    font-size: 64px;
    font-family: var(---secondary-font);
  }

  p {
    color: white;
    font-family: var(---secondary-font);
    padding-top: 30px;
  }
}

.abttwocontent {
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
  gap: 20px;
}

.firstcontnent {
  width: 100%;
  max-width: 590px;
  padding-left: 10px;
  padding-right: 10px;

  h3 {
    font-family: var(---secondary-font);
    color: #224591;
    padding-top: 10px;
  }

  h1 {
    font-family: var(---secondary-font);
    font-weight: 500;
    color: #224591;
  }

  p {
    font-family: var(---secondary-font);
    padding-top: 20px;
    color: #6b6b6b;
    line-height: 30px;
  }
}

.underline {
  height: 5px;
  width: 100%;
  max-width: 180px;
  background-color: #e66202;
  border-radius: 10px;
  margin-top: 8px;
}

.secondcontnent {
  width: 100%;
  max-width: 590px;
  padding-left: 10px;
  padding-right: 10px;

  p {
    font-family: var(---secondary-font);
    padding-top: 20px;
    color: #6b6b6b;
  }
}

.secondcontnent i {
  color: #e66202;
  font-size: 20px;
  padding-right: 5px;
}

.phone {
  height: 50px;
  width: 50px;
  background-color: #e66202;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smallbox {
  height: 50px;
  width: 100%;
  max-width: 300px;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.quotebtn {
  button {
    padding: 10px 40px;
    border: none;
    color: white;
    background-color: #e66202;
    font-family: var(--main-font);
    border-radius: 3px;
    margin-top: 30px;
  }
}

.achievement {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
}

.achievementcontent {
  width: 100%;
  max-width: 1150px;
  margin-top: 50px;
  display: flex;
}

.achievementone {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 383px;
  background-color: #224591;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box1 {
  width: 100%;
  max-width: 300px;
  display: flex;
}

.boxxone {
  height: 60px;
  width: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxxtwo {
  height: 60px;
  width: 100%;
  max-width: 250px;
  padding-left: 15px;
  padding-right: 5px;

  p {
    font-family: var(--main-font);
    color: white;
    font-family: var(---secondary-font);
  }

  h2 {
    font-family: var(---secondary-font);
    color: white;
    font-weight: 500;
  }
}

.achievementtwo {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 383px;
  background-color: #eef9ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box2 {
  width: 100%;
  max-width: 300px;
  display: flex;
}

.boxxthree {
  height: 60px;
  width: 50px;
  background-color: #224591;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxxfour {
  height: 60px;
  width: 100%;
  max-width: 250px;
  padding-left: 15px;
  padding-right: 5px;

  p {
    font-family: var(--main-font);
    color: #224591;
    font-family: var(---secondary-font);
  }

  h2 {
    font-family: var(---secondary-font);
    color: #224591;
    font-weight: 500;
  }
}

.achievementthree {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 383px;
  background-color: #224591;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box3 {
  width: 100%;
  max-width: 300px;
  display: flex;
}

.boxxfive {
  height: 60px;
  width: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxxsix {
  height: 60px;
  width: 100%;
  max-width: 250px;
  padding-left: 15px;
  padding-right: 5px;

  p {
    color: white;
    font-family: var(---secondary-font);
  }

  h2 {
    font-family: var(---secondary-font);
    color: white;
    font-weight: 500;
  }
}

.team {
  padding-left: 20px;
  padding-right: 20px;

  h1 {
    font-family: var(---secondary-font);
    color: #224591;
    font-weight: 500;
    text-align: center;
    padding-top: 80px;
  }
}

.teamcontainer {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.teamcontainerone {
  width: 100%;
  max-width: 325px;
  padding-bottom: 10px;

  h2 {
    font-weight: 500;
    padding-top: 10px;
    color: #224591;
    font-family: var(---secondary-font);
  }

  p {
    padding-top: 10px;
    color: #6b6b6b;
    font-weight: 500;
    font-family: var(---secondary-font);
  }
}

.teamcontaineroneimg {
  height: 400px;
  width: 100%;
  max-width: 325px;
  background-image: url(images/teamimg1.png);
  /* background-image: url(/project-master/images/teamimg1.png); */
  background-size: cover;
}

.teamcontainertwo {
  width: 100%;
  max-width: 325px;
  padding-bottom: 10px;

  h2 {
    font-weight: 500;
    padding-top: 10px;
    color: #224591;
    font-family: var(---secondary-font);
  }

  p {
    color: #6b6b6b;
    font-weight: 500;
    font-family: var(--main-font);
    font-family: var(---secondary-font);
  }
}

.teamcontainertwoimg {
  height: 400px;
  width: 100%;
  max-width: 325px;
  background-image: url(images/WhatsApp\ Image\ 2025-11-05\ at\ 2.00.50\ PM.jpeg);
  /* background-image: url(/project-master/images/WhatsApp\ Image\ 2025-11-05\ at\ 2.00.50\ PM.jpeg); */
  background-size: cover;
}

.teamcontainerthree {
  width: 100%;
  max-width: 325px;
  padding-bottom: 10px;

  h2 {
    font-weight: 500;
    padding-top: 10px;
    color: #224591;
    font-family: var(---secondary-font);
  }

  p {
    padding-top: 10px;
    color: #6b6b6b;
    font-weight: 500;
    font-family: var(---secondary-font);
  }
}

.teamcontainerthreeimg {
  height: 400px;
  width: 100%;
  max-width: 325px;
  /* background-image: url(/project-master/images/teamimg3.png); */
  background-image: url(images/teamimg3.png);
  background-size: cover;
}

.salesmanager {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.teamcontainerfour {
  width: 100%;
  max-width: 325px;
  padding-bottom: 10px;

  h2 {
    font-weight: 500;
    padding-top: 10px;
    color: #224591;
    font-family: var(---secondary-font);
  }

  p {
    padding-top: 10px;
    color: #6b6b6b;
    font-weight: 500;
    font-family: var(---secondary-font);
  }
}

.teamcontainerfourimg {
  height: 400px;
  width: 100%;
  max-width: 325px;
  background-image: url(images/teammemberfour.png);
  /* background-image: url(/project-master/images/teammemberfour.png); */
  background-size: cover;
}

.testimonial-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial {
  width: 100%;
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;

  h1 {
    text-align: center;
    color: #224591;
    font-family: var(---secondary-font);
    padding-bottom: 10px;
  }

  p {
    text-align: center;
    font-family: var(---secondary-font);
    padding-bottom: 20px;
  }
}

.testmonial-text {
  width: 100%;
  max-width: 650px;
  background-color: #224591;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: auto;
  padding-bottom: 40px;
}

.user-text {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;

  p {
    font-family: var(---secondary-font);
    color: white;
  }

  i {
    color: white;
    font-size: 30px;
  }
}

span {
  font-family: var(---secondary-font);
}

.user-text span {
  display: block;
  color: white;
  padding-top: 20px;
  font-size: 13px;
  font-family: var(---secondary-font);
  font-weight: 400;
}

.ourimg-one {
  height: 50px;
  width: 50px;
  /* background-image: url(/project-master/images/customer1.jpg); */
  background-image: url(images/customer1.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  border: 1.5px solid #e66202;
}

.testmonial-text2 {
  width: 100%;
  max-width: 650px;
  background-color: #224591;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: auto;
  padding-bottom: 40px;
  margin-top: 20px;
}

.user-text2 {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;

  p {
    font-family: var(---secondary-font);
    color: white;
  }

  i {
    color: white;
    font-size: 30px;
  }
}

.ourimg-one2 {
  height: 50px;
  width: 50px;
  /* background-image: url(/project-master/images/customer2.jpg); */
  background-image: url(images/customer2.jpg);
  background-size: cover;
  border-radius: 50%;
  border: 1.5px solid #e66202;
}

.user-text2 span {
  display: block;
  color: white;
  padding-top: 20px;
  font-size: 13px;
  font-family: var(---secondary-font);
  font-weight: 400;
}

.testmonial-text3 {
  width: 100%;
  max-width: 650px;
  background-color: #224591;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: auto;
  padding-bottom: 40px;
  margin-top: 20px;
}

.user-text3 {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;

  p {
    font-family: var(---secondary-font);
    color: white;
  }

  i {
    color: white;
    font-size: 30px;
  }
}

.user-text3 span {
  display: block;
  color: white;
  padding-top: 20px;
  font-size: 13px;
  font-family: var(---secondary-font);
  font-weight: 400;
}

.ourimg-one3 {
  height: 50px;
  width: 50px;
  /* background-image: url(/project-master/images/customer3.jpg); */
  background-image: url(images/customer3.jpg);
  background-size: cover;
  border-radius: 50%;
  border: 1.5px solid #e66202;
}

.our-location {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  margin-bottom: 80px;
  margin-top: 50px;
}

.location-text {
  width: 100%;
  max-width: 584px;
}

.location-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  font-family: var(---secondary-font);
  color: #224591;
}

.location-text p {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #444;
  font-family: var(---secondary-font);
}

.location-video {
  width: 100%;
  max-width: 584px;
}

.location-video video {
  width: 100%;
  max-width: 584px;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* partner section */
.partner {
  /* background-image: url(/project-master/images/partner.png); */
  background-image: url(images/partner.png);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.774);
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;

  h1 {
    padding-top: 20px;
    color: #e66202;
  }

  p {
    color: white;
    padding-top: 20px;
  }

  p i {
    color: #3ab561;
    padding-right: 5px;
    font-size: 14px;
  }

  h5 {
    color: white;
    padding-top: 20px;
    font-weight: 400;
  }
}

.partnerbtn {
  margin-top: 20px;

  button {
    padding: 8px 20px;
    border: none;
    background-color: #224591;
    color: white;
    font-family: var(---main-font);
    border-radius: 5px;
  }
}

@media (max-width: 990px) {
  .achievementcontent {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .aboutcontainersss {
    h1 {
      padding-top: 80px;
      font-size: 48px;
      font-weight: 500;
    }
  }

  .abttwocontent {
    flex-wrap: wrap;
  }

  .firstcontnent {
    max-width: 724px;
  }

  .secondcontnent {
    max-width: 724px;
  }

  .achieventcontainer {
    flex-wrap: wrap;
  }

  .our-location {
    flex-wrap: wrap;
  }

  .location-text {
    max-width: 724px;
  }

  .location-video {
    max-width: 724px;
  }

  .location-video video {
    max-width: 724px;
  }

  .teamcontainer {
    flex-wrap: wrap;
    /* background-color: #6BD100; */
  }

  .teamcontainerone {
    /* background-color: red; */
    max-width: 725px;
  }

  .teamcontaineroneimg {
    max-width: 725px;
  }

  .teamcontainertwo {
    /* background-color: aqua; */
    max-width: 725px;
  }

  .teamcontainertwoimg {
    max-width: 725px;
  }

  .teamcontainerthree {
    max-width: 725px;
  }

  .teamcontainerthreeimg {
    max-width: 725px;
  }

  .teamcontainerfour {
    max-width: 725px;
  }

  .teamcontainerfourimg {
    max-width: 725px;
  }
}

@media (max-width: 567px) {
  .aboutcontainersss {
    h1 {
      padding-top: 160px;
      font-weight: 600;
    }
  }

  .teamcontaineroneimg {
    background-size: cover;
    background-position: top;
  }

  .teamcontainertwoimg {
    background-position: center;
  }

  .teamcontainerthreeimg {
    background-position: center;
  }

  .missioncontent {
    padding-left: 40px;
    padding-right: 40px;

    h1 {
      padding-top: 30px;
    }

    p {
      padding-top: 20px;
    }
  }

  .scndmsoncontent {
    height: 389px;
    margin-top: 11px;
    padding-left: 40px;
    padding-right: 40px;

    h1 {
      padding-top: 30px;
    }

    p {
      padding-top: 20px;
    }
  }

  .teamcontainer {
    gap: 40px;
  }

  .teamcontainerone {
    h2 {
      text-align: center;
    }

    p {
      text-align: center;
    }
  }

  .teamcontainertwo {
    h2 {
      text-align: center;
    }

    p {
      text-align: center;
    }
  }

  .teamcontainerthree {
    h2 {
      text-align: center;
    }

    p {
      text-align: center;
    }
  }

  .teamcontainerfour {
    h2 {
      text-align: center;
    }

    p {
      text-align: center;
    }
  }

  .firstcontnent {
    /* background-color: #3A9758; */
    padding-left: 0px;
  }

  .secondcontnent {
    padding-left: 0px;
  }
}
