/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.6;
  color: #000;
}

/* Page Container */
.page-container {
  min-height: 100vh;
  background-color: #f3ebe2;
  position: relative;
}

/* Header Styles */
.header {
  width: 100%;
  padding: 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1366px;
  margin: 0 auto;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}

.logo {
  font-size: 1.875rem;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

.menu-toggle {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
}

/* Hero Section */
.hero-section {
  padding: 2rem 1rem 4rem;
}

.hero-content {
  max-width: 1366px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.2;
}

/* .cta-button {
  background-color: #01b101;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
} */

.cta-button {
  background-color: #01b101;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 1rem 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #019901;
}

.guarantee-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}

/* Main Content */
.main-content {
  padding: 2rem 1rem;
}

.content-container {
  max-width: 1366px;
  margin: 0 auto;
}

.content-card {
  background: white;
  border: 4px solid #20f00d;
  border-radius: 0.375rem;
  padding: 2rem;
  position: relative;
}

.company-badge {
  text-align: center;
  margin-bottom: 2rem;
}

.company-image {
  width: 22rem;
  height: 10rem; position: relative; z-index: 1;
  margin: 0 auto;
}
.company-image img { width: 320px; }
.company-text {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.content-section {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  text-transform: capitalize;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 3rem;
}

.section-content {
  max-width: 42rem; text-align: left; 
  margin: 0 auto;
  font-size: 1.125rem;
  color: #000;
  line-height: 1.6;
}

.section-content p {
  margin-bottom: 1rem; line-height: 1.3;
}

.bold-text {
  font-weight: 700;
}

.underlined-text {
  font-weight: 700;
  text-decoration: underline;
}

/* Solutions Section */
.solutions-section {
  padding: 4rem 1rem;
}

.solutions-container {
  max-width: 1366px;
  margin: 0 auto;
}

.solutions-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  text-transform: capitalize;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 3rem;
}

.solutions-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 4rem;
  text-transform: capitalize;
}

.solutions-card {
  background: white;
  border-radius: 15px;
  padding: 3rem 5rem;
}

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

.solution-item {
  background-color: #F7F7F7;
  border: 4px solid #20f00d;
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
}

.solution-title {
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.solution-content {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.solution-content p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.6;
}

.solution-button {
  background-color: #01b101;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  width: 80%;
  transition: background-color 0.3s ease;
}

.solution-button:hover {
  background-color: #019901;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 1rem;
}

.testimonials-container {
  max-width: 1366px;
  margin: 0 auto;
  text-align: center; padding: 0 4rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  text-transform: capitalize;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 4rem;
  font-style: italic;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonial-item {
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 1.875rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: capitalize;
  line-height: 1.3;
}

.testimonial-author {
  font-size: 1.25rem;
  color: #000;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;

}

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

.footer-content {
  text-align: center;  padding: 3rem 0;
}

.footer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0rem;
  text-transform: capitalize;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.footer-services {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: capitalize;
      display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-icon {
  width: 6rem;
  height: 7rem;
  transform: rotate(12deg); position: relative; top: -1rem; right: -2rem; order: 2;
}

.footer-phone {
  font-size: 2.5rem;
  font-weight: 800;
  color: #20f00d;
  font-style: italic;
  text-transform: capitalize;
  text-decoration: none;
}

.footer-logo {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.footer-copyright {
  border-top: 1px solid white;
  padding-block: 1.3rem;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: white;
  text-align: center;
  text-transform: capitalize;
}

/* Menu Overlay Styles */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f4f6;
  border: 4px solid #20f00d;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.show {
  display: flex;
  opacity: 1;
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-close svg {
  width: 5rem;
  height: 5rem;
  color: #000;
}

.menu-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 5rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.menu-item {
  display: block;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.05em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-item:hover {
  /* color: #20f00d; */
  color: #01b101;
}

.menu-descriptions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #000;
}

.menu-descriptions p {
  font-size: 1.25rem;
  font-style: italic; letter-spacing: normal; font-weight: 300;
}

/* Submenu Styles */
.submenu-content {
  text-align: center;
  max-width: 96rem;
  margin: 0 auto;
  padding: 2rem;
}

.submenu-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  text-transform: capitalize;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.submenu-title:hover {
  color: #01b101;
}

.submenu-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
}

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

.submenu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.submenu-items div {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

/* Responsive Design */
@media (max-width: 640px) {
.content-card { padding: 6rem 1rem 1rem; }
.content-section, .solutions-title, .solutions-subtitle, .section-title{ margin-bottom: 2rem; }
	.phone-number { display: none;}
	.hero-section { padding-bottom: 0; }
	.solutions-section, .solutions-card, .solution-item { padding: 1rem; }
	.solutions-subtitle { padding-bottom: 1rem; }
	.testimonials-section { padding: 2rem 1rem; }
	.testimonials-container { padding: 0; }
	.testimonial-quote { font-size: 1.4rem; }
	.testimonials-title, .submenu-title { margin-bottom: 2rem; }
	.footer-logo {     font-size: 3rem; }
	.footer-icon { width: 3rem;
    height: 2rem;
    transform: rotate(12deg);
    position: relative;
    top: -4rem;
    right: -10rem;
    order: 2;}
	.footer-title, .footer-phone, .section-title, .solutions-title, .testimonials-title { font-size: 2rem; }
	.footer-services { font-size: 1rem; }
	.submenu-grid { text-align: left; }
	.menu-descriptions p { font-size: 1rem; }
	.footer-services { flex-wrap: wrap; }
}
	

@media (min-width: 768px) {

  .header {
    padding: 1rem 2rem;
  }

  .hero-section {
    padding: 4rem 2rem 0;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }


  .content-card {
    padding:6rem 5rem 0 5rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .section-content {
    font-size: 1.25rem;
  }

   .main-content, .solutions-section,  .testimonials-section {
    padding: 2rem 8rem;
  }

  .solutions-title {
    font-size: 4rem;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .solution-title {
    font-size: 4rem;
  }

  .solution-content p {
    font-size: 1.375rem;
  }

 
  .testimonials-title {
    font-size: 4rem;
  }

  .footer-contact {
    flex-direction: row;
  }

  .footer-phone {
    font-size: 4rem;
  }

  .footer-logo {
    font-size: 6rem;
  }

  .menu-item {
    font-size: 4rem;
  }

  .submenu-title {
    font-size: 4rem;
  }

  .submenu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .submenu-items div {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 1rem 4rem;
  }

  .hero-title {
    font-size: 6rem;
  }

  .solutions-title {
    font-size: 6rem;
  }

  .section-title {
    font-size: 6rem;
  }

  .testimonials-title {
    font-size: 6rem;
  }

  .footer-title {
    font-size: 6rem;
  }

  .menu-item {
    font-size: 6rem;
  }

  .submenu-title {
    font-size: 6rem;
  }

  .submenu-items div {
    font-size: 3rem;
  }
}

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

  .solutions-title {
    font-size: 7rem; padding: 0 2rem;
  }

  .section-title {
    font-size: 6rem;
  }

  .testimonials-title {
    font-size: 7rem;
  }

  .footer-phone {
    font-size: 4rem; padding-left:0rem;
  }

  .footer-logo {
    font-size: 7rem;
  }

  .menu-item, .submenu-title {
    font-size: 5.5rem;
  }

  
}


  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-slide-in {
    animation: slideInUp 0.4s ease-out forwards;
  }




















/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #f3ebe2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
} */

/* Footer Styles */
.footer {
  background-color: #000;
  color: white;
  margin-top: auto;
}

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

.footer-content {
  text-align: center;
  padding: 3rem 0;
}
/* 
.footer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0rem;
  text-transform: capitalize;
  line-height: 1.1;
  letter-spacing: -0.05em;
} */

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.footer-icon {
  width: 6rem;
  height: 7rem;
  transform: rotate(12deg);
  position: relative;
  top: -1rem;
  right: -2rem;
  order: 2;
}

/* .footer-phone {
  font-size: 2.5rem;
  font-weight: 800;
  color: #20f00d;
  font-style: italic;
  text-transform: capitalize;
  text-decoration: none;
} */

/* .footer-logo {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-top: 2rem;
} */

.footer-copyright {
  border-top: 1px solid white;
  padding-block: 1.3rem;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: white;
  text-align: center;
  text-transform: capitalize;
}

/* Footer Services Accordion */
.footer-services {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.footer-service-item {
  position: relative;
  width: 100%;
  max-width: 300px;
  text-align: left;
}

.footer-service-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  transition: color 0.3s ease;
  text-align: left;
}

.footer-service-toggle:hover {
  color: #20f00d;
}

.footer-service-toggle.active {
  color: #20f00d;
}

.footer-service-toggle .toggle-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.footer-service-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.footer-submenu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-align: left;
  background-color: #000; /* Ensure submenu is same black */
}

.footer-service-toggle.active + .footer-submenu {
  display: flex;
}

.footer-submenu-item {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.footer-submenu-item:hover {
  color: #20f00d;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 640px) {
  .footer-title, .footer-phone {
    font-size: 2rem;
  }

  .footer-logo {
    font-size: 3rem;
  }

  .footer-icon {
    width: 3rem;
    height: 2rem;
    top: -4rem;
    right: -10rem;
  }

  .footer-services {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .footer-service-item {
    max-width: 100%;
  }

  .footer-service-toggle {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }

  .footer-submenu {
    padding-left: 0;
  }

  .footer-submenu-item {
    font-size: 0.875rem;
    padding-left: 0;
  }
}

@media (min-width: 641px) {
  .footer-services {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-service-item {
    flex: 1;
    max-width: none;
    min-width: 150px;
  }

  .footer-service-toggle {
    font-size: 1.1rem;
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
  }

  /* Changed from absolute to static positioning */
  .footer-submenu {
    position: static;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .footer-service-toggle {
    font-size: 1.25rem;
  }
}
  