/* Global Styles */
:root {
  --primary-color: #ea580c;
  --secondary-color: #c2410c;
  --secondary-light-color: #fbbf24;
  --dark-color: #111827;
  --light-color: #f9fafb;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #4b5563;
  --gray-light-color: #6b7280;
  --gray-dark-color: #374151;
  --gray-bg-color: #f3f4f6;
  --gray-light-bg-color: #f7f7f7;
  --gray-dark-bg-color: #111827;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

.counter-col1 {
  width: 150px;
  float: left;
  height: 73px;
  /* background: url(../images/counter-bg.png) no-repeat left 15px; */
  /* border-image: url("{% static 'images/counter-devider.png' %}") no-repeat left 15px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
.counter-col1 .title {
  text-align: center;
  color: #ffffff;
  text-align: left;
  margin: 6px auto 0 39px;
  width: 145px;
}
.counter-col1 > span {
  margin-top: 30px !important;
}
.counter-col1 .title .title-inside {
  width: 90px !important;
  margin: 0 auto;
  color: var(--secondary-color);
  float: left;
  font-size: 40px;
}
.counter-col1 > span {
  float: left;
  width: auto;
  font-size: 15px;
  margin-top: -9px;
}
.counter-col2 {
  width: 195px;
  float: left;
  height: 73px;
  /* background: url(../images/counter-bg.png) no-repeat -155px 10px; */
  padding-left: 5px;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}
.counter-col2 .title {
  text-align: center;
  color: #ffffff;
      display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.counter-col2 .title .title-inside {
  /* width: 113px !important; */
  margin: 0 auto;
  color: var(--secondary-color);
  float: left;
  font-size: 40px;
}
.counter-col2 > span {
  float: left;
  width: auto;
  font-size: 15px;
  margin-left: 12px;
  margin-top: 5px;
}
.counter-col3 {
  width: 183px;
  float: left;
  height: 73px;
  /* background: url(../images/counter-bg.png) no-repeat -352px 10px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}
.counter-col3 .title {
  text-align: center;
  color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;

}
.counter-col3 .title .title-inside {
  margin: 0 auto;
  color: var(--secondary-color);
  float: left;
  font-size: 40px;
}
.counter-col3 > span {
  float: left;
  width: auto;
  font-size: 15px;
}
.count {
  color: var(--secondary-color);
  float: left;
  font-size: 40px;
  font-weight: bold;
  margin-right: 4px;
  width: auto;
}
.plus-icon {
  color: #5d5d5d;
  float: left;
  font-size: 37px;
  font-weight: 100;
  margin-left: 4px;
  margin-top: 10px;
}
.border-area {
  float: left;
  /* background: url(../images/counter-devider.png) no-repeat right bottom; */
}
.border-area:last-child {
  background: none;
}
.about-panel .title2 {
  background-position-x: center;
  background-position-y: center;
  float: left;
  text-align: center;
}
.readmore2 a {
  text-decoration: none;
  float: center;
  text-align: center;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 8px 19px;
  text-transform: uppercase;
  font-weight: 600;
  /* border-radius: 8px; */
}
.readmore2 a:hover {
  border: 1px solid #000;
  color: #000;
}
.readmore2 a::before,
.readmore3 a::before {
  display: none;
}
.about-img{float:right;width:100%;}
@media screen and (max-width:1024px){
.about-text {width: 53%;}
}

@media screen and (max-width:800px){
.about-text {width: 100%;}
.about-img { width:100%;margin-top:7%;text-align:center}
.about-img > img {display: inline; width: 100%; margin: 0 auto;}
}

@media screen and (max-width:640px) {
.about-text { width:100%}
.about-img { width:100%;}
}
@media screen and (max-width:360px) {
.about-img {margin-top: 14%;}	
}

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f4f6;
  color: #333;
}

.container {
  /* width: 100vw; */
  /* min-height: 80vh; */
  scroll-behavior: smooth;
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 8px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  font-family: "Courgette", serif;
  font-weight: 400;
  font-style: normal;
}

.hamburger{
  display: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--gray-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 0.175rem;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--primary-color);
  color: white;
}



/* Hero section */
.hero-section {
  /* height: 100vh; */
    background-color: #ffffff;
    padding: 48px 0;
    position: relative;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    filter: blur(10px);
}

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.certification {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--primary-color);
    width: fit-content;
    background-color: #ffa5005c;
    padding: 10px;
    border-radius: 20px;
}

.certification i {
    margin-right: 8px;
}

h1 {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.hero-text h1 {
    font-size: 60px;
}
.hero-text p {
    margin: 24px 0;
    font-size: 24px;
    color: #4b5563;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.hero-image img {
    max-width: 400px;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  padding: 48px 0;
  color: white;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
}

.stat-label {
  margin-top: 8px;
  font-size: 16px;
  color: #fbbf24;
}

@media screen and (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
  }

  .stat {
    margin-bottom: 24px;
  }
}

.about-section{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about-section .container, .about-section .about-img{
  width: 100%;
}

#office_pic{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-panal {
  width: 100%;
  float: left;
  margin-bottom: 6%;
  margin-top: -9px;
}

#about .text-center{
  text-align: center;
}
#about h2{
  text-align: center;
}
#about p{
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about-panal {
    width: 100%;
    float: left;
    margin-bottom: 6%;
    margin-top: -9px;
  }
  #about .text-center{
    text-align: center;
  }
  #about h2{
    text-align: center;
  }
}

/* Product Section */
.products-section,
.about-section {
  background-color: #f9fafb;
  padding: 60px 20px;
}

.products-section .container, .about-section .container, .product-details-section .container, .features-section .container, .testimonials-section .container, .cta-section .container {
  width: 100%;
  margin: 0 auto;
}

.product-card {
  background-color: #f9fafb;
  padding: 24px;
  /* border-radius: 8px; */
  text-align: center;
  width: 30%;
  transition: box-shadow 0.3s ease;
}

.product-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.product-card a {
  display: block;
  margin-top: 12px;
  color: var(--primary-color);
  text-decoration: none;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Market Section */
.markets-section {
  padding: 60px 20px;
  background-color: #f3f4f6;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title h2 {
  margin-top: 8px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.section-title h2::after {
  content: '';
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  position: absolute;
  bottom: -8px;
  left: 0;
  z-index: -1;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.market-card {
  position: relative;
  border-radius: 30px 2px 30px 2px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* filter: brightness(75%); */
  filter: blur(3px);
  transition: 0.3s ease;
}

.market-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)); */
  /* filter: blur(20px); */
  z-index: 1;
}

.market-card .market-title {
  width: 85%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
}

.market-card:hover {
  transform: scale(1.02);
}

/* General Section Styles */
.product-details-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.product-details-section .product-details-container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
}

p {
  font-size: 1.125rem;
  color: #4b5563;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.product-grid .product-card {
  background-color: #ffffff;
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 80%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-grid .product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-grid .product-info {
  text-align: left;
}

.product-grid .product-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.product-grid .product-info p {
  font-size: 1rem;
  color: #4b5563;
}

/* General Section Styles */
.features-section,
.testimonials-section {
  padding: 60px 20px;
}

.features-section,
.testimonials-section,
.cta-section,
.about-section,
.products-section,
.product-details-section {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
}

/*p {*/
/*  font-size: 1.125rem;*/
/*  color: #4b5563;*/
/*  text-align: center;*/
/*}*/

/* Features Section */
.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-card {
  background-color: #ffffff;
  padding: 20px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex-basis: 30%;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.feature-card p {
  font-size: 1rem;
  color: #4b5563;
}

@media screen and (max-width: 768px) {
  .features-grid {
    flex-wrap: wrap;
  }

  .feature-card {
    flex-basis: 100%;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f9fafb;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-card {
  background-color: #f9fafb;
  padding: 20px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex-basis: 30%;
  text-align: center;
}

.testimonial-card q {
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .testimonials-grid {
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex-basis: 100%;
  }
}

.rating {
  display: flex;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.rating i {
  font-size: 1.25rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 16px;
}

.client-name {
  font-weight: 600;
  color: #111827;
}

.client-position {
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.cta-text p {
  font-size: 1.25rem;
  margin-top: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: white;
  color: var(--primary-color);
  font-weight: 500;
  /* border-radius: 8px; */
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #f3f4f6;
}

/* Footer Section */
.footer {
  background-color: #111827;
  color: #ffffff;
  padding: 60px 20px;
}

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#scrollToTop:hover {
  background-color: var(--secondary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.footer-logo i {
  margin-right: 8px;
}

.footer-about p {
  max-width: 400px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--gray-light-color);
}

.footer-social a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 10px;
  color: var(--gray-light-color);
}

.footer-contact i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 0.875rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        /* right: -100%; */
        width: 200px;
        height: calc(100vh - 60px);
        background-color: white;
        flex-direction: column;
        gap: 0;
        transition: right 0.5s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.show {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-link {
        padding: 20px;
        text-align: center;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }
}
