
      body {
        margin: 0;
        font-family: "Outfit", sans-serif;
        background-size: cover;
        background-position: center;
        overflow-x: hidden;
      }
      @media (max-width:600px){
        body{
          overflow-x: hidden;
        }
      }
      .header {
        width: 100%;
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255);
        padding: 0 2rem;
        height: 5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
      }
      .header__logo img {
        height: 70px;
      }
      .navbar {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        position: relative;
        height: 100%;
      }
      .navbar__menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        justify-content: flex-end;
        width: 100%;
        margin-right: 10px;
      }
      .navbar__item {
        position: relative;
        font-size: 26px;
        font-weight: bold;
      }
      .navbar__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 8rem;
        height: 5rem;
        text-decoration: none;
        color: #000;
        font-size: 25px;
        text-transform: uppercase;
        transition: 0.3s ease;
        position: relative;
        z-index: 1;
        gap: 0.5rem;
      }

      .navbar__link i{
        font-size: 1.5rem;
      }

      .navbar__link span {
        font-size: 11px;
        transition: 0.3s ease;
      }
      .navbar__link:hover,
      .navbar__link:focus {
        color: #e72424;
      }
      .navbar__link.active {
        color: #e72424;
        font-weight: bold;
      }
      .navbar__gauge {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 8rem;
        background: linear-gradient(90deg, #e72424 60%, #fff 100%);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(.68,-0.55,.27,1.55);
        z-index: 0;
        pointer-events: none;
      }
      .navbar__gauge::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #e72424 60%, #fff 100%);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(.68,-0.55,.27,1.55);
      }
      .navbar__gauge::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(.68,-0.55,.27,1.55);
      }
      @media (max-width: 480px) {
        .navbar__link {
          width: 6rem;
        }
      }
      @media (max-width: 360px) {
        .navbar__link {
          width: 5rem;
        }
      }
      @media (max-width: 320px) {
        .navbar__link {
          width: 4rem;
        }
      }

      /* Dropdown menu (hidden by default) */
.navbar__dropdown {
  position: absolute;
  top: 100%;
  right: -220%;
  left: auto;
  transform: none;
  min-width: 480px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  border-radius: 10px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.68,-0.55,.27,1.55), transform 0.25s cubic-bezier(.68,-0.55,.27,1.55);
}


/* Show dropdown on hover */
.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Dropdown links */
.navbar__dropdown a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
  border-radius: 6px;
  white-space: nowrap;
}

.navbar__dropdown a:hover {
  background: #e72424;
  color: #fff;
}

    /* Footer styles */
footer a:hover {
    color: #f47c4c !important;
    transition: color 0.2s;
    font-size: 1.12em;
}
footer a {
    color: #bdbdbd;
    text-decoration: none;
}

.footercontainer{
    gap: 40px;
}

.footerlogo img{
    height: 70px;
}

.footerreliableproduct h3 {
    font-size: 1.5rem;
}

.footerquicklinks h3{
    font-size: 1.5rem;
}

.footercontactinfo h3{
    font-size: 1.5rem;
}


@media (max-width: 600px) {

    .footercontainer{
    flex-direction: column;    
    gap: 0px;
}

    .footerlocation{
        margin-left: 1.5rem;
    }

    .footerlogo img {
        margin-left: 1rem;
        height: 40px;
        width: 120px     
    }
    
    

    .footerquicklinks {
         margin-top: -50px;
        font-size: 1rem;
        margin-left: 1rem;
    }

    .footerquicklinks h3{
    font-size: 1.2rem;
    }


    .footerreliableproduct{
         margin-top: -30px;
        font-size: 1rem;
        margin-left: 1rem;
    }

    .footerreliableproduct h3{
    font-size: 1.2rem;
    }

    .footercontactinfo {
         margin-top: -30px;
        font-size: .7rem;
        margin-left: 1rem;
    }

    .footercontactinfo h3{
        font-size: 1.2rem;
    }

    .company-reach-map-container img {
        width: 10%;
    }
}



.hero-section {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0px 5px 10px #888888;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55; /* Adjust for desired darkness */
  pointer-events: none;
}

    .hero-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }

    /* Add glassmorphism effect to hero-content */
.hero-content {
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 2rem;
  /* Glassmorphism styles */
  background: rgba(0, 0, 0, 0.55);
  /* border-radius: 24px; */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.5);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  /* max-width: 600px; */
  height: 100%;
  margin: auto;
}

        .hero-text {
        margin-top: 200px;
        font-size: 50px;
        color: #f47c4c;
        font-weight: bold;
        margin-bottom: 1rem;
        font-family: 'Lora', serif;
      }
      .hero-subtext {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 4rem;
      }
    .hero-cta {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 100px;
    }

    .hero-cta a {
      text-decoration: none;
      color: #ffffff;
      background-color: #e72424;
      padding: 0.5rem 1.5rem;
      border-radius: 10px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    
    .hero-cta a:hover {
      background-color: #f5883f;
    }

    .hero-cta a:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(231, 36, 36, 0.5);
    }

    .hero-cta a:active {
      background-color: #b61a1a;
    }

    @media (max-width: 600px) {
      .hero-text {
        font-size: 2.2rem;
        margin-top: 150px;
      }
      .hero-subtext {
        font-size: 1.1rem;
      }
      .hero-section{
        height: 480px !important; /* Increase this value as needed */
    min-height: 400px;
      }


  .slider-hero {
    height: 550px !important; /* Increase this value as needed */
    min-height: 400px;
  }
  .hero-slide img{
    height: 550px !important;
    min-height: 400px;
  }
  .hero-bg-video {
    height: 550px !important;
    min-height: 400px;
  }
      .navbar__link {
        width: 4rem;
      }
    }
    

    /* Service Section Styles */
.services-section {
  background-color: #fff;
  padding: 20px 0;
}

.services-title {
  font-family: 'lora', sans-serif;
  font-size: 3rem;
  color: #f47c4c;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 0px 0 0px;          /* Space to the right of the title */
  padding-left: 0;             /* Remove left padding */
  min-width: 260px;            /* Prevent shrinking */
  white-space: wrap;
  
}

.main-service {
  width: 100%;
  text-align: center;
  align-items: center;         /* Vertically center */
  justify-content: center; /* Align to left */
  max-width: 1500px;
  margin: 0 auto;
  gap: 32px;                   /* Space between title and cards */
  padding: 10px 0;
}

.cards-service {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  gap: 24px;
  justify-content: flex-start;
}

.cards_item {
  flex: 1 1 0;
  max-width: 380px;          /* Adjust as needed */
  min-width: 260px;
  box-sizing: border-box;
  padding: 0;
  display: flex;
}

.card-service {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.card_image {
  position: relative;
  max-height: 250px;
  width: 100%;
}

.card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card_content {
  position: relative;
  padding: 16px 12px 0px 24px;
  margin: 16px 8px 8px 0;
  max-height: 290px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;       /* Center horizontally */
  min-height: 220px;
}

.card_content::-webkit-scrollbar {
  width: 8px;
}
.card_content::-webkit-scrollbar-thumb {
  background: #c89b3f;
  border-radius: 15px;
}

.card_title {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}
.card_title::after {
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c89b3f;
  content: "";
}

.card_text p {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.5;
}
.card_text p:last-child {
  margin: 0;
}

/* Services CTA Button */
.services-cta {
  display: flex;
    justify-content: center;
    margin-left: 250px;
  gap: 20px;
  margin-top: 20px;
}
.services-cta a {
  text-decoration: none;
  color: #ffffff;
  background-color: #e72424;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.services-cta a:hover {
  background-color: #78C0A8;
}
.services-cta a:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(231, 36, 36, 0.5);
}
.services-cta a:active {
  background-color: #b61a1a;
}

.card-btn {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  margin: 0;
  align-self: center;
  display: inline-block;
  margin: 12px auto 0 auto;  /* Top margin, auto left/right for center */
  padding: 0.4rem 1.2rem;
  background: #e72424;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  align-self: center;
}
.card-btn:hover,
.card-btn:focus {
  background: #78C0A8;
  color: #fff;
}
.cards-service .cards_item:nth-child(n+4) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* Responsive Styles */


@media (max-width: 600px) {
  .main-service {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
  }
  .services-title {
   font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    word-break: break-word;
  }
  /* Remove forced line breaks in HTML for mobile */
  .services-title br {
    display: inline;
  }
  .services-title::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 10;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: #c89b3f;
    border-radius: 2px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .cards-service {
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
    align-items: center !important;
  }
  .card-service{
    border-radius: 50px;
   box-shadow: 0 4px 10px rgba(12, 8, 2, 0.8);
  
  }

  
  .card_image img {
  height: 90%; 
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.card_content {
    min-height: 180px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 5px 12px 0px 24px;
  margin: -20px 8px 8px 0;
    
  
}
  .cards_item {
    max-width: 90vw !important;
    min-width: 0 !important;
    width: 90vw !important;
    margin: 0 auto !important;
    height: 600px;
    border-radius: 50px;
  }
  .card_title{
    padding-bottom: 2px;
    margin: 0px 0px 10px;
    font-size: 1rem;
    font-weight: 900;
  }

  .card_title::after {
   padding-top: 0; 
   margin-bottom: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c89b3f;
  content: "";
}

.card_text p {
  margin: 0 0 24px;
  font-size: 10px;
  line-height: 1.5;
}
.card_text p:last-child {
  margin: 0;
}

  .card-btn{
    bottom: 25px;
    font-size: 12px;
  }
}

/* WHY Reliable-Solution Section Styles */
.why-nexgen {
 
  padding: 20px 0;
  
  text-align: center;
}
.why-title {
 font-family: 'lora', sans-serif;
  font-size: 3rem;
  color: #f47c4c;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 0px 0 0px;          /* Space to the right of the title */
  padding-left: 0;             /* Remove left padding */
  min-width: 260px;            /* Prevent shrinking */
  white-space: wrap;
  background-color: #ffffff;
  
}
.why-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.why-row:last-child {
  margin-bottom: 0;
}
.why-card {

  background: rgb(255, 255, 255);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  /* padding: 32px 24px 24px 24px; */
  /* width: 270px;
  height: auto; */
  min-width: 220px;
  max-width: 300px;
  border-radius: 30px;
  box-shadow: 0px 10px 20px #888888;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  
}
.why-icon {
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: "Open", sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 550;
}

.why-card h3 span{
  display: block;
}
.why-card p {
  font-size: 0.9rem;
  color: #766f6f;
}
@media (max-width: 600px) {
  .why-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .why-card {
    
    width: 80%;
    max-width: 400px;
  }
  .why-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    word-break: break-word;
  }
  .why-title br {
    display: none;
  }
  .why-card h3 {
    font-size: 1rem;
  }
}

/* About Us Section Styles */
.about-section {
  width: 100%;
  background: #fcfbfa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0 40px 0;
   box-shadow: 0px 5px 10px #888888;
}
.about-container {
  display: flex;
  max-width: 1400px;
  width: 100%;
  gap: 40px;
  align-items: center;
}
.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-width: 440px;
}
.about-main-img {
  position: relative;
  width: 100%;
border-radius: 25px;
  overflow: hidden;
  /* Add a fixed height or increase min-height */
  height: 500px; /* Increase this value as needed */
  min-height: 320px;
}
.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px
  display: block;
}
.about-experience {
  position: absolute;
  left: -165px; /* Move further left to avoid overlap */
  top: 35%;
  transform: translateY(-50%) rotate(-90deg);
  color: #f47c4c;
  font-size: 18px;
  font-family: 'lora', sans-serif;
  letter-spacing: 2px;
  font-weight: 700;
  background: transparent;
  white-space: nowrap;
  font-size: 25px;
}
.about-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
}
.about-title {
  font-family: 'lora', sans-serif;
  font-size: 3rem;
  color: #f47c4c;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 0px 0 0px;          /* Space to the right of the title */
  padding-left: 0;             /* Remove left padding */
  min-width: 260px;            /* Prevent shrinking */
  white-space: wrap;
}
.about-title span {
  color: #f47c4c;
  font-size: 55px;
  font-family: 'lora', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.about-title hr {
  flex: 1;
  border: none;
  border-top: 2px solid #f47c4c;
  margin: 0;
  height: 0;
}
.about-heading {
  font-size: 45px;
  font-family: 'lora', sans-serif;
  color: #23223a;
  margin: 0 0 18px 0;
  line-height: 1.1;
  font-weight: 700;
}
.about-since span {
  color: #0d51b1;
  font-size: 30px;
  font-family: 'lora', sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}
.about-desc {
  color: #6d6d7b;
  font-size:18px;
  font-family: 'lora', sans-serif;
  margin-bottom: 32px;
  margin-top: 0;
  line-height: 1.7;
  max-width: 750px;
  font-weight: 600;
}
.about-btn {
  display: inline-block;
  background: #f47c4c;
  color: #fff;
  font-family: 'lora', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.7rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.5s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.about-btn:hover {
  background: #78C0A8;
}


@media (max-width: 600px) {
  .about-heading {
    font-size: 2.2rem;
  }
  .about-since span {
    font-size: 2.1rem;
  }
  .about-container {
    gap: 0px;
  }
  .about-experience {
    font-size: 18px;
    left: -60px;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
  }
  .about-left{
      width: 100%;
    
    min-width: 0;
    padding: 0;    
  } 
  .about-right {
    width: 100%;
    min-width: 0;
    padding: 0;
  }
  .about-right {
    padding-left: 0;
  }
  .about-main-img {
    width: 100%;
    border-radius: 0px;
  }
  .about-experience {
    position: static;
    transform: none;
    margin: 18px 0 0 0;
    left: 0;
    top: 0;
    text-align: left;
    padding-left: 7px;
  }
  .about-section {
    width: 93vw;
    margin: auto;
    padding: 0px 0 20px 0;
  }
  .about-heading {
    padding-left: 7px;
    font-size: 1.3rem;
  }
  .about-since span {
    padding-left: 7px;
    font-size: 1.1rem;
  }
  .about-desc {
    padding-left: 7px;
    font-size: 0.8rem;
  }
  .about-btn {
    font-size: 1.2rem;
    padding: 0.5rem 1.8rem;
    margin-left: 70px;
  }
  .about-main-img {
    border-radius: 0px;
    height: 0vh;
    width: 100%;
    
  }
  .about-main-img img {
    border-radius: 0px;
    height: 50vh;
    width: 100%;
    
  }
}

/* --- Partner Section Styles --- */
.partner-card {
  position: relative;
  width: 330px;
  height: 150px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
    box-shadow: 0 0 0 2px #78C0A8;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-direction: column;
  padding: 0;
   box-shadow: 0px 5px 10px #888888;
}
.partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}
.partner-card .partner-image img {
  transition: transform 0.35s cubic-bezier(.4,2,.6,1);
}
.partner-card:hover .partner-image img {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.08);
}
.partner-image {
   width: 100%;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.partner-name {
  font-size: 1.18rem;
  font-weight: bold;
  color: #f47c4c;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-align: center;
}
.partner-info {
  font-size: 1rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 10px;
}
.partner-learn-btn {
  margin-top:18px;
  display:inline-block;
  background: linear-gradient(90deg,#f47c4c,#c89b3f);
  color:#fff;
  font-weight:600;
  border:none;
  border-radius:22px;
  padding:9px 28px;
  font-size:1rem;
  text-decoration:none;
  box-shadow:0 2px 8px rgba(244,124,76,0.10);
  transition:background 0.2s,transform 0.2s;
}
.partner-learn-btn:hover {
  background: linear-gradient(90deg,#c89b3f,#f47c4c);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}
.partner-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 10px;
  
}
/* Add to your CSS */
.partners-title {
  font-family: 'lora', sans-serif;
  font-size: 3rem;
  color: #f47c4c;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 10px;
  margin: 0 0px 0 0px;          /* Space to the right of the title */
  padding-left: 0;             /* Remove left padding */
  min-width: 260px;            /* Prevent shrinking */
  white-space: wrap;
}
.partner-image-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg,rgba(0,0,0,0.08) 60%,rgba(35,35,35,0.7) 100%);
  pointer-events: none;
}
.partner-details {
  padding: 20px 18px 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-divider {
  height: 3px;
  width: 40px;
  background: linear-gradient(90deg,#f47c4c,#c89b3f);
  border-radius: 2px;
  margin-bottom: 10px;
}
.partner-desc {
  font-size: 0.2rem;
  color: #bdbdbd;
  text-align: center;
}
.partner-card .partner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 18px 18px 18px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-card:hover .partner-content {
  transform: rotateX(0deg);
}

.partner-card .partner-title {
  margin: 0;
  font-size: 20px;
  color: #333;
  font-weight: 700;
  text-align: center;
}

.partner-card .partner-desc {
  margin: 10px 0 0;
  font-size: 10px;
  color: #000000;
  line-height: 1.4;
  text-align: center;
}
.partner-logo {
  width: 220px;
  height: 600px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  padding: 10px 0;
}

.partner-card .partner-logo {
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.partner-card:hover .partner-logo {
  scale: 0;
}

.partners-para {
  font-family: 'open sans';
  text-align: center;
   color: #8a8a8a;
  font-size: 1.35rem;
  
}

/* Responsive for Partner Cards */
@media (max-width: 600px) {

  .partners-para {
  font-family: 'open sans';
  text-align: center;
   color: #8a8a8a;
  font-size: 0.9rem;
  padding: 0 10px;
}


    .partners-title  {
      padding-top: 0px;
      padding-bottom: 10px;
        margin-top: 0px;
        font-size: 1.3rem;
    }

    .partner-content .partner-title {
        
        font-size: 10px
    }

  .partner-container {
    width: 100vw;
    gap: 25px;
  }
  .partner-card {
    height: 100px;
    flex: 1 1 calc(50% - 10px)
    min-width: 180px;
    max-width: 35vw;
  }

  .partner-card .partner-desc{
    font-size: 7px;
  }

  .partner-image {
    height: 80px;
  }

  .partner-card .partner-logo {
    width: 100%;
    height: 100%;
  }
}

/* --- Customer Base (Marquee) Section Styles from home.html --- */
.general-companies {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  padding: 1rem 0;
  
}
.general-companies  {
  font-family: 'lora', sans-serif;
  font-size: 3rem;
  color: #f47c4c;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 0px 0 0px;          /* Space to the right of the title */
  padding-left: 0;             /* Remove left padding */
  min-width: 260px;            /* Prevent shrinking */
  white-space: wrap;
}
.marquee-container {
  height: 80px;
  display: flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  padding-top: 10px;
   
}
.marquee-container:hover {
  animation-play-state: paused;
}
.marquee-container img {
  height: 50px;
  padding-top: 10px;
  margin: 0 1rem;
  object-fit: contain;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (max-width:600px){
  .marquee-container{
  animation: marquee 40s linear infinite;

  }
  .marquee-container img {
    height: 60px;
    margin: 0 0.5rem;
  }
}

/* --- Company Reach Section Styles from home.html --- */
.company-reach-section {
  
  padding: 48px 0;
}



.company-reach-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}

.company-reach-map-container {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  align-items: flex-start;
}

.company-reach-img {
  width: 100%;
  max-width: 600px;
  height: 500px;
  object-fit: cover;
background: #fff;
  margin-bottom: 0;
  
}
.company-reach-map-container img:nth-child(2) {
  max-width: 640px;
  height: 620px;
  object-fit: contain;
  margin-bottom: 0;
}
/* Responsive styles for the company reach section at 600px */

@media (max-width: 600px) {
  .company-reach-section {
    padding: 24px 0;
  }
  .company-reach-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    max-width: 100vw;
    padding: 0 4vw;
  }
  .company-reach-table-container {

    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
  }
  .company-reach-title {
    font-size: 1.1rem;
    margin-left: 350px;
    margin-bottom: 10px;
    text-align: center;
  }
  .company-reach-section .services-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center !important;
}
.company-reach-section .services-title::after {
    display: none !important;
    content: none !important;
  }
  .company-reach-table {
    font-size: 0.98rem;
    width: 100%;
    min-width: 0;
  }
  .company-reach-table td {
    padding: 8px 6px;
    font-size: 0.98rem;
  }
  .company-reach-map-container {
    
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
  }
  .company-reach-img {
    margin-left: 143px;
    margin-right: 120px;
    width: 90vw !important
    width: 100vw !important;
    max-width: 98vw !important;
    height: auto !important;
    margin-bottom: 0 !important;
    border-radius: 10px !important;
    object-fit: contain !important;
  }
}

.slider-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 0;
  margin-left: -50vw;
  height: 650px;
  overflow: hidden;
  background: #000;
}
.hero-slider {
  width: 100vw;
  height: 100%;
  position: relative;
}
.hero-slide {
 position: absolute;
  width: 100vw;
  height: 100%;
  top: 0; left: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.hero-slide.active {
  display: block;
  opacity: 1;
  z-index: 2;
  animation: fadeIn 1s;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 0 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.hero-prev:hover, .hero-next:hover {
  background: rgba(0,0,0,0.7);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-dots span {
  display: block;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: 2px solid #e72424;
}
.hero-dots span.active {
  opacity: 1;
  background: #e72424;
}
.hero-content {
  background: rgba(0, 0, 0, 0.15); /* was 0.55 */
  position: relative;
  z-index: 3;
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .slider-hero { height: 320px; }
  .hero-slide img { height: 320px; }
}
.navbar__item:nth-child(5) .navbar__dropdown {
  right: 0 !important;
  left: auto !important;
}


.review-section {
  
  padding: 60px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 0;
  margin-left: -50vw;
  box-sizing: border-box;
}
.review-slider {
   padding-top: 20px;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  overflow: hidden;
  left: 50%;
  right: 0;
  margin-left: -50vw;
  box-sizing: border-box;
}
.review-slide {
  display: none;
  position: absolute;
  width: 100%;
  left: 0; top: 0;
  transition: opacity 0.6s;
  opacity: 0;
  z-index: 1;
}
.review-slide.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
  animation: fadeIn 0.8s;
  width: 100%;

}
.review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 0px 10px 2px #888888;
  padding: 36px 32px 28px 32px;
  text-align: center;
  height: 200px;
  width: 90%;
  max-width: 100vw;
  margin: 0 auto;
  box-sizing: border-box;
}
.review-text {
  font-size: 1.18rem;
  color: #23223a;
  margin: 0px 150px 28px;
  font-style: italic;
  font-family: 'Lora', sans-serif;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1.1rem;
  color: #f47c4c;
  font-weight: 600;
}
.review-author img {
  width: 5%;
  height: 40px;
  background: #fff;
  
}
.review-prev, .review-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  color: #e72424;
  border: none;
  font-size: 2rem;
  padding: 0 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.review-prev:hover, .review-next:hover {
  background: rgba(231,36,36,0.18);
}
.review-prev { left: 100px; }
.review-next { right: 100px; }
.review-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.review-dots span {
  display: block;
  width: 12px;
  height: 12px;
  background: #e0e0e0;
  border-radius: 50%;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: 2px solid #f47c4c;
}
.review-dots span.active {
  opacity: 1;
  background: #f47c4c;
}
/* Responsive styles for the review section at 600px */


@media (max-width: 600px) {
  .review-section {
    padding: 28px 0 18px 0;
  }
  .services-title {
    font-size: 1.3rem !important;
    padding-left: 0 !important;
    margin-bottom: 24px !important;
    text-align: center !important;
  }
  .review-slider {
    max-width: 100vw;
    padding-bottom: 48px;
  }
  .review-card {
    padding: 18px 4px 14px 4px;
    border-radius: 12px;
    font-size: 1rem;
    height: auto;
    min-height: 180px;
    max-width: 98vw;
    margin: 0 auto;
  }
  .review-text {
    margin: 0px 20px 0px;
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .review-author {
    font-size: 0.98rem;
    gap: 10px;
  }
  .review-author img {
    width: 20%;
    
  }
  .review-prev, .review-next {
    font-size: 1.5rem;
    padding: 0 8px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .review-dots {
    gap: 7px;
    margin-top: 14px;
  }
  .review-dots span {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
  }
  .review-prev{
    width: 38px;
    height: 38px;
font-size: 1.5rem;
    padding: 0 10px;
    left: 20%;
    bottom: 10px;
    top: auto;
    transform: translateX(-48px);
  }
  .review-next {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    padding: 0 10px;
    left: 80%;
    bottom: 10px;
    top: auto;
    transform: translateX(-48px);
  }
  .review-next {
    transform: translateX(10px);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#nationMap {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}


/* Responsive Navbar Styles */
@media (max-width: 951px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    padding: 90px 0 0 0;
    transition: right 0.3s cubic-bezier(.68,-0.55,.27,1.55);
    z-index: 1001;
    overflow-y: auto;
    gap: 0;
  }
  .navbar__menu.open {
    right: 0;
  }
  .navbar__item {
    width: 100%;
  }
  .navbar__link {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    flex-direction: row;
    gap: 0.7rem;
  }
  .navbar__gauge {
    display: none;
  }
  .navbar__dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    max-width: 80vw;
    background: #f9f9f9;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    border-radius: 0 10px 10px 0;
    opacity: 1;
    pointer-events: auto;
    margin: 0;
    padding: 0.5rem 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2000;
    transition: none;
  }
  /* .navbar__item.open > .navbar__dropdown {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem;
  } */
  .navbar__toggle {
    display: block;
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #e72424;
    z-index: 1100;
    cursor: pointer;
  }
  .header {
    padding: 0 0.5rem;
    height: 4.2rem;
  }
  .header__logo img {
    height: 54px;
  }
}

/* Hide menu and show toggle on mobile */
@media (max-width: 950px) {
  .navbar__menu {
    display: flex;
  }
}

/* Prevent body scroll when menu open */
/* body.menu-open {
  overflow: hidden;
} */

/* --- Desktop Dropdown: Full-width horizontal --- */
@media (min-width: 951px) {
  .navbar__item {
    position: relative;
  }
  .navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  transform: none;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  border-radius: 10px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.68,-0.55,.27,1.55), transform 0.25s cubic-bezier(.68,-0.55,.27,1.55);
  flex-direction: row;
  gap: 0.3rem !important;    /* Reduce horizontal gap between columns */
  padding: 1rem 0.5rem !important; /* Reduce padding */
  min-width: 220px !important;     /* Reduce min-width if needed */
  max-width: 98vw !important;      /* Prevent overflow on small screens */
  left: -100% !important;
  right: auto !important;
  /* If you use grid for the dropdown, also reduce grid-gap: */
  grid-gap: 0.3rem !important;
}
.navbar__item:nth-child(3) .navbar__dropdown {
  left: auto !important;
  right: -400px !important;
}
  .navbar__item:hover > .navbar__dropdown,
  .navbar__item:focus-within > .navbar__dropdown {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
}

/* --- Mobile Dropdown: Vertical --- */
/* Responsive Navbar Styles */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 0;
  }
  
  .navbar {
    width: 100%;
    justify-content: flex-start;
    position: static;
    height: auto;
  }
  .navbar__toggle {
    display: block !important;
    position: absolute;
    right: 0rem;
    top: .5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #F07818;
    z-index: 1100;
    cursor: pointer;
  }
  .navbar__menu {
    position: static;
    width: 100vw;
    max-width: 100vw;
    height: 0;
    overflow: hidden;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    padding: 0;
    transition: height 0.35s cubic-bezier(.68,-0.55,.27,1.55);
    z-index: 1001;
    gap: 0;
    display: flex;
  }
  .navbar__menu.open {
    height: 568px; /* Adjust based on your nav items */
    overflow: visible;
  }
  
  .navbar__item {
    width: 100%;
    height: 90px;
     position: relative;
  }
  .navbar__link {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    flex-direction: row;
    gap: 0.7rem;
  }
  .navbar__gauge {
    display: none;
  }
  /* .navbar__dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    max-width: 80vw;
    background: #f9f9f9;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    border-radius: 0 10px 10px 0;
    opacity: 1;
    pointer-events: auto;
    margin: 0;
    padding: 0.5rem 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2000;
    transition: none;
  } */
  .navbar__item:hover > .navbar__dropdown,
  .navbar__item:focus-within > .navbar__dropdown {
    display: flex;
  }
}
  /* Push hero section down when menu is open */
  body.menu-open .hero-contact,
  body.menu-open .contact-hero,
  body.menu-open .contact-main,
  body.menu-open .contact-map-embed {
    transform: translateY(520px); /* Same as .navbar__menu.open height */
    transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  }
  .navbar__toggle {
  display: none;
}

@media (max-width: 600px) {
  .navbar__toggle {
    display: block;
    display: flex;
    justify-content: center;
  }
}

  
 
/* ABOUT SECTION CSS START */

.company-branches-section {
  width: 100%;
  background: rgba(255,255,255,0.7);
  padding: 60px 0;
}
.company-branches-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}
.company-overview {
  flex: 1.2;
  min-width: 320px;
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 48px 36px 48px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.company-overview h2 {
  font-size: 3rem;
  font-family: 'Lora';
  font-weight: 700;
  margin-bottom: 24px;
  color: #23223a;
}
.overview-desc {
 font-family: 'open sans';
  color: #8a8a8a;
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.overview-point {
  margin-bottom: 24px;
}
.overview-icon {
  color: #f47c4c;
  font-size: 1.5rem;

}


.overview-title {
  font-weight: 700;
  margin-left: 8px;
  font-family: 'Lora'; 
  font-size: 30px; 
  color: #f47c4c;
}


.overview-text {
  margin-left: 32px;
  margin-top: 6px;
  font-family: 'open sans';
  color: #8a8a8a;
    
}
.branches-box {
  flex: 1;
  min-width: 340px;
  background: rgba(244,124,76,0.13);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.branches-box h2 {
 font-family: 'Lora'; 
 font-size: 44px;
}

.branches-map {
 height: 70%; 
 width: 100%;
}

.branches-box p{
  text-align: center; 
  font-family: 'open sans'; 
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .company-branches-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .company-overview, .branches-box {
    width: 100%;
    padding: 30px 0px;
  }
  .company-overview h2 {
    font-size: 1.5rem;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;

  }

    .overview-icon{
    padding-left: 10px;
  }

  .overview-title {
    font-size: 1.5rem;
  }

  .overview-text{
    margin-left: 0px;
    font-size: .9rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .overview-desc {
    font-size: .9rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .branches-box {
    
  }

  .branches-map {
    width: 80%;
  }


  .branches-box h2 {
    font-size: 1.5rem;
  }

  .branches-box p{
    padding-right: 25px;
    padding-left: 25px;
  }


}

.director-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-left: 120px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
  flex-wrap: wrap;
}
.director-img {
  flex: 1 1 340px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.director-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}
.director-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}
.director-social a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f47c4c;
  padding: 6px;
  transition: background 0.2s;
}
.director-social a:hover img {
  background: #e72424;
}
.director-content {
  flex: 2 1 480px;
  min-width: 320px;
  padding: 0 10px;
}
.director-title {
  color: #f47c4c;
  font-family: 'Lora';
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.director-title-line {
  display: inline-block;
  height: 3px;
  width: 120px;
  background: #f47c4c;
  border-radius: 2px;
}
.director-name {
  font-size: 3.8rem;
  font-family: 'Lora';
  color: #23223a;
  margin-bottom: 18px;
  font-weight: bold;
}
.director-message {
  font-size: 1.35rem;
  color: #2d2d30;
  font-family: 'Lora';
  margin-bottom: 18px;
  line-height: 1.5;
}


@media (max-width: 600px) {
  body{
    overflow-x: hidden;
  }
  .director-section {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 0 0 0;
    gap: 0;
  }
  .director-content {
    order: 1;
    padding: 0 10px 18px 10px;
    text-align: center;
  }
  .director-img {
    order: 2;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto 14px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .director-img img {
    width: 90vw;
    max-width: 340px;
    min-width: 0;
    border-radius: 14px;
    margin: 0 auto 10px auto;
    display: block;
  }
  .director-social {
    order: 3;
    justify-content: center;
    margin: 10px 0 18px 0;
    gap: 14px;
  }
  .director-title{
    text-align: center;
    font-size: 1.6rem;
  }
  .director-name{
    font-size: 2.6rem;
  }
  .director-message {
    text-align: center;
  }
}

.team-section {
  background: #fafafd;
  padding: 40px 0 60px 0;
  width: 100%;
}
.team-title {
  font-size: 40px;
  text-align: center;
  font-family: 'Lora';
  color: #000000;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: 1px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-title-line {
  width: 120px;
  height: 3px;
  background: #f47c4c;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(244,124,76,0.04);
  border: 1px solid #f47c4c;
  overflow: hidden;
  width: 300px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.team-card:hover {
  box-shadow: 0 6px 24px rgba(244,124,76,0.13);
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #f3f3f3;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.team-info {
  padding: 16px 8px 12px 8px;
  text-align: center;
}
.team-name {
  font-family: 'Lora';
  font-size: 1.08rem;
  color: #f47c4c;
  font-weight: 500;
  margin-bottom: 2px;
}
.team-role {
  font-family: 'Lora';
  font-size: 0.98rem;
  color: #e72424;
  font-weight: 400;
}
.team-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}


@media (max-width: 600px) {
  .team-section {
    padding: 18px 0 24px 0;
  }
  .team-title {
    font-size: 2rem;
  }
  .team-title-line {
    width: 60px;
  }
  .team-grid,
  .team-grid-custom {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 98vw;
    max-width: 100vw;
    margin: 0 auto;
  }
  .team-card {
    max-width: 98vw;
    width: 90vw;
    height: 110vw;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(244,124,76,0.04);
  }
  .team-card img {
    width: 100%;
    height: 100%;
    max-height: 110vw;
    min-height: 120px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #f3f3f3;
    display: block;
  }
  .team-info {
    text-align: center;
  }
  .team-name {
    font-size: 1.08rem;
    margin-bottom: 2px;
  }
  .team-role {
    font-size: 0.98rem;
  }
}  

/* ABOUT SECTION CSS END */


/* SOFTWARE SECTION CSS START */

  @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
      .software-section {
        padding: 60px 0 40px 0;
        
      }

        .software-grid-container {
            width: 90vw;
            max-width: 1400px;
            margin-inline: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns for better desktop view */
            gap: 2.5rem 2rem;
        }
        .software-card {
            --grad: #00c6ff, #0072ff;
            --border: #8ee6ff; /* Default border color */
            padding: 2.5rem;
            background-image: linear-gradient(to bottom left, #e0e4e5, #f2f6f9);
            border-radius: 2rem;
            gap: 1.5rem;
            display: grid;
            grid-template:
                "logo logo"
                "title icon"
                "content content"
                "bar bar"
                / 1fr auto;
            font-family: system-ui, sans-serif;
            color: #444447;
            box-shadow:
                inset -2px 2px hsl(0 0 100% / 1),
                -10px 10px 20px hsl(0 0 0 / .25);
            transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.3s, border 0.3s;
            position: relative;
            border-bottom: 6px solid var(--border);
            overflow: hidden; /* Crucial for the premium tag ribbon */
        }
        .software-card:hover {
            border-bottom: 6px solid var(--border-hover, #2da6e7);
            box-shadow: 0 12px 36px var(--border-shadow, rgba(44, 183, 255, 0.13)), -20px 20px 60px hsl(0 0 0 / .25);
            transform: translateY(-5px);
            z-index: 2;
        }

        /* --- PREMIUM CARD STYLING --- */
        .software-card--premium {
            --grad: #ff8c00, #ffc107; /* Brighter, premium gradient */
            --border: #ffc107; /* Gold border */
            --border-hover: #ffa500;
            --border-shadow: rgba(255, 193, 7, 0.4);
            border: 4px solid var(--border); /* Thicker initial border */
            box-shadow: 
                0 16px 48px rgba(255, 193, 7, 0.3), /* Stronger shadow */
                -10px 10px 20px hsl(0 0 0 / .35);
        }
        .software-card--premium:hover {
             transform: scale(1.03) translateY(-5px); /* Slightly more prominent hover */
        }

        .premium-tag {
            position: absolute;
            top: 25px;
            right: -40px;
            background: #ffc107; /* Gold background */
            color: #1a1a1a;
            padding: 6px 45px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            transform: rotate(45deg);
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border: 2px solid #fff;
            letter-spacing: 0.5px;
        }
        .premium-tag i {
            margin-right: 5px;
        }

        /* --- End PREMIUM CARD STYLING --- */

        .software-logo {
            grid-area: logo;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.2rem;
        }
        .software-logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
        }
        .software-title {
            grid-area: title;
            font-size: 1.5rem;
            align-self: end;
            text-transform: uppercase;
            font-weight: 500;
            word-break: break-all;
            font-family: 'Lora', serif;
            font-weight: 900;
        }
        .software-icon {
            grid-area: icon;
            font-size: 2rem;
            align-self: start;
        }
        .software-icon > i {
            color: transparent;
            background: linear-gradient(to right, var(--grad));
            background-clip: text;
            -webkit-background-clip: text; /* Safari compatibility */
            -webkit-text-fill-color: transparent;
        }
        .software-content {
            grid-area: content;
            display: flex;
            flex-direction: column;
        }
        .software-content > *:first-child { margin-top: 0rem; }
        .software-content > *:last-child { margin-bottom: 0rem; }
        .software-card-heading {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #23223a;
            margin-bottom: 0.7rem;
            margin-top: 0.2rem;
        }
        .software-card-desc {
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        .software-card-btn {
            align-self: flex-start;
            margin-top: auto;
            background: linear-gradient(to right, var(--grad));
            color: #fff;
            font-family: 'Lora';
            font-size: 1rem;
            padding: 0.6rem 1.6rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: opacity 0.2s, transform 0.2s;
            border: none;
            cursor: pointer;
        }
        .software-card-btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }
        .software-card::after {
            content: "";
            grid-area: bar;
            height: 2px;
            background-image: linear-gradient(90deg, var(--grad));
            margin-top: 1.5rem;
            border-radius: 1px;
        }
        
        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            .software-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .software-grid-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                width: 95vw;
                padding: 0;
            }
            .software-section-title {
                font-size: 2rem;
            }
            .software-card {
                padding: 1.5rem;
                width: auto;
                margin: 0;
            }

            .software-logo img{
              padding-top: 25px;
              height: 35px;
            }


            .premium-tag {
                right: -45px;
                padding: 4px 45px;
                font-size: 0.7rem;
            }
        }

/* SOFTWARE SECTION CSS END */


/* SERVICE SECTION CSS START */

 
  .support-section {
  background: #fff;
  padding: 36px 0 18px 0;
  text-align: center;
}

.support-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.support-line {
  display: inline-block;
  height: 3px;
  width: 90px;
  background: #f47c4c;
  border-radius: 2px;
}

.support-text {
  color: #f47c4c;
  font-family: 'Lora';
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.support-desc {
  color: #8a8a8a;
  font-size: 1.35rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Lora';
  line-height: 1.5;
}

@media (max-width: 600px) {
  .support-title {
    gap: 8px;
  }
  .supporrt-line {
    width: 40px;
  }
  .support-text {
    font-size: 1.3rem;
  }
  .support-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
}
     .core-section {
  background: #fff;
  padding: 60px 0 0 0;
}
.core-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.core-img {
  flex: 1 1 520px;
  margin-left: 50px;
  max-width: 600px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-img img {
  height: 450px;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  margin-bottom: 20px;
}
.core-content {
  flex: 2 1 700px;
  min-width: 340px;
  padding: 10px 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.core-title {
  font-size: 4.2rem;
  font-family: 'Lora';
  color: #23223a;
  margin-bottom: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.1;
}
.core-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.core-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.35rem;
  color: #f47c4c;
  margin-bottom: 32px;
  font-family: 'Lora';
  line-height: 1.6;
  background: none;
}
.core-icon {
  color: #f47c4c;
  font-size: 1.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.core-list li span:last-child {
   color: #f7a98a;
  font-weight: 400;
}
.core-list li b {
  color: #f47c4c;
  font-weight: 600;
}

@media (max-width: 600px) {
  .core-title {
    font-size: 10px;
    width: 100%;
  }
  .core-img {
    margin-left: 0;
    max-width: 100%;
    min-width: 0;
  }
  .core-img img {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    height: auto;
  }
  .core-list li {
    font-size: 1rem;
    color: #1bb6c1;
    margin-bottom: 18px;
  }
}
.join-us-section {
  background: #fff;
  padding: 36px 0 18px 0;
  text-align: center;
}
.join-us-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.join-us-line {
  display: inline-block;
  height: 3px;
  width: 90px;
  background: #f47c4c;
  border-radius: 2px;
}
.join-us-text {
  color: #f47c4c;
  font-family: 'Lora';
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.join-us-desc {
  color: #8a8a8a;
  font-size: 1.35rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Lora';
  line-height: 1.5;
}
.join-us-desc a {
  color: #1bb6c1;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 600px) {
  .join-us-title {
    gap: 8px;
  }
  .join-us-line {
    width: 40px;
  }
  .join-us-text {
    font-size: 1.3rem;
  }
  .join-us-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* SERVICE SECTION CSS END */



/* CAREER SECTION CSS START */

  .why-join-section {
  background: #fff;
  padding: 36px 0 18px 0;
  text-align: center;
}

.why-join-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.why-join-line {
  display: inline-block;
  height: 3px;
  width: 90px;
  background: #f47c4c;
  border-radius: 2px;
}

.why-join-text {
  color: #f47c4c;
  font-family: 'Lora';
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.why-join-desc {
  color: #8a8a8a;
  font-size: 1.35rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Lora';
  line-height: 1.5;
}

@media (max-width: 600px) {
  .why-join-title {
    gap: 8px;
  }
  .why-join-line {
    width: 40px;
  }
  .why-join-text {
    font-size: 1.3rem;
  }
  .why-join-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
}
      
      .culture-section {
  background: #fff;
  padding: 60px 0 0 0;
}
.culture-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.culture-img {
  flex: 1 1 520px;
  margin-left: 50px;
  max-width: 600px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.culture-img img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
}
.culture-content {
  flex: 2 1 700px;
  min-width: 340px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-title {
  font-size: 4.2rem;
  font-family: 'Lora';
  color: #23223a;
  margin-bottom: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.1;
}
.culture-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.culture-list li {
  display: flex;
  align-items: flex-start;
  text-align: justify;
  gap: 18px;
  font-size: 1.1rem;
  color: #f47c4c;
  margin-bottom: 32px;
  font-family: 'Lora';
  line-height: 1.6;
  background: none;
}
.culture-icon {
  color: #f47c4c;
  font-size: 1.4rem;
  margin-top: 0px;
  flex-shrink: 0;
}
.culture-list li span:last-child {
   color: color: #f47c4c;;
  font-weight: 400;
}
.culture-list li b {
  color: #f47c4c;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 600px) {

  .culture-content{
    margin-top: 20px;
    flex: none;
  }

  .culture-title {
    font-size: 10px;
    width: 100%;
  }
  .culture-img {
    margin-left: 0;
    max-width: 100%;
    min-width: 0;
  }
  .culture-img img {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    height: auto;
  }
  .culture-list li {
    font-size: 0.9rem;
    color: #f47c4c;
    gap: 9px;
    margin-bottom: 8px;
  }

  .culture-list {

    margin: 0px 20px;
  }

  .culture-list li b {
    font-size: 0.9rem;
  }

  .culture-icon {
    font-size: 1rem;
    margin-top: 0px;
  }
}


.benefits-section {
  background: #fff;
  padding: 40px 0 0 0;
}
.benefits-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.benefits-img {
  flex: 1 1 520px;
  margin-left: 50px;
  max-width: 600px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-img img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
}
.benefits-content {
  flex: 2 1 700px;
  min-width: 340px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits-title {
   font-size: 4.2rem;
  font-family: 'Lora';
  color: #23223a;
  margin-bottom: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.1;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  text-align: justify;
  gap: 18px;
  font-size: 1.1rem;
  color: #f47c4c;
  margin-bottom: 32px;
  font-family: 'Lora';
  line-height: 1.6;
  background: none;
}
.benefits-icon {
  color: #f47c4c;
  font-size: 1.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.benefits-list li span:last-child {
  color: #f47c4c;;
  font-weight: 400;
}
.benefits-list li b {
  color: #f47c4c;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .benefits-title {
    font-size: 1rem;
  }
  .benefits-img {
    margin-left: 0;
    max-width: 100%;
    min-width: 0;
  }
  .benefits-img img {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    height: auto;
  }
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}


.internship-section {
  background: #fff;
  padding: 60px 0 0 0;
}
.internship-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.internship-img {
  flex: 1 1 520px;
  margin-left: 50px;
  max-width: 600px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.internship-img img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
}
.internship-content {
  flex: 2 1 700px;
  min-width: 340px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
}
.internship-title {
  font-size: 4.2rem;
  font-family: 'Lora';
  color: #23223a;
  margin-bottom: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.1;
}
.internship-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.internship-list li {
display: flex;
  align-items: flex-start;
  text-align: justify;
  gap: 18px;
  font-size: 1.1rem;
  color: #f47c4c;
  margin-bottom: 32px;
  font-family: 'Lora';
  line-height: 1.6;
  background: none;
}
.internship-icon {
  color: #f47c4c;
  font-size: 1.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.internship-list li span:last-child {
   color: #f7a98a;
  font-weight: 400;
}
.internship-list li b {
    color: #f47c4c;
  font-weight: 600;
  font-size: 1.1rem;
}
.internship-list a {
  color: #f47c4c;
  text-decoration: underline;
  word-break: break-all;
}

@media (max-width: 600px) {

  .internship-content {
    padding-top: 20px;
    flex: 0px;
  }

  .internship-title {
    font-size: 2rem;
  }
  .internship-img {
    margin-left: 0;
    max-width: 100%;
    min-width: 0;
  }
  .internship-img img {
    width: 100%;
    max-width: 350px;
    min-width: 0;
    height: auto;
  }
  .internship-list li {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}
.join-us-section {
  background: #fff;
  padding: 36px 0 18px 0;
  text-align: center;
}
.join-us-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.join-us-line {
  display: inline-block;
  height: 3px;
  width: 90px;
  background: #f47c4c;
  border-radius: 2px;
}
.join-us-text {
  color: #f47c4c;
  font-family: 'Lora';
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.join-us-desc {
  color: #8a8a8a;
  font-size: 1.35rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Lora';
  line-height: 1.5;
}
.join-us-desc a {
  color: #1bb6c1;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 600px) {
  .join-us-title {
    gap: 8px;
  }
  .join-us-line {
    width: 40px;
  }
  .join-us-text {
    font-size: 1.3rem;
  }
  .join-us-desc {
   
    font-size: 0.9rem;
    padding: 0 20px;
    text-align: justify;
    word-spacing: -1.1px;
  }
}

/* CAREER SECTION CSS END */


/* CONTACT SECTION CSS START */

.contact-section {
  background: #dedede;
  padding: 60px 0 40px 0;
  font-family: 'Lora';
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.contact-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h4 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-block;
  border-bottom: 3px solid #f47c4c;
  padding-bottom: 6px;
  margin-bottom: 0;
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.contact-col {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
  flex: 1 1 320px;
  min-width: 280px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-form h2 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: flex;
  gap: 12px;
}
.form-group {
  border: 2px solid #000000;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 0;
  outline: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f47c4c;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
}
.contact-btn {
  background: #fff;
  color: #e72424;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.contact-btn:hover {
  background: #f47c4c;
  color: #fff;
}
.contact-info {
  gap: 18px;
  justify-content: flex-start;
}
.info-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.info-icon {
  background: #fff;
  color: #e72424;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 10px auto;
}
.info-card h4 {
  color: #f47c4c;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.info-card p,
.info-card a {
  color: #fff;
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  word-break: break-word;
}
.info-card a:hover {
  color: #f47c4c;
  text-decoration: underline;
}
.contact-map {
  align-items: flex-start;
  gap: 18px;
}
.contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-social a {
  background: #fff;
  color: #e72424;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.contact-social a:hover {
  background: #f47c4c;
  color: #fff;
}
.contact-iframe {
  width: 100%;
  min-height: 320px;
  height: 340px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
Reliable Solution\contact.html */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-row {
  display: block;
}
/* @media (max-width: 1100px) {
  .contact-row {
    flex-direction: column;
    gap: 24px;
  }
  .contact-col {
    min-width: 0;
    width: 100%;
  }
  .contact-iframe {
    min-height: 260px;
    height: 260px;
  }
} */
/* @media (max-width: 600px) {
  .contact-section {
    padding: 32px 0 20px 0;
  }
  .section-title h4 {
    font-size: 4rem;
    padding-bottom: 3px;
  }
  .contact-col {
    padding: 18px 8px;
  }
  .contact-form h2 {
    font-size: 1.2rem;
  }
  .contact-iframe {
    min-height: 180px;
    height: 180px;
  }
} */

.contact_us_6 * {
  font-family: 'Lora';
}

.contact_us_6 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.contact_us_6 .responsive-cell-block {
  min-height: 75px;
}

.contact_us_6 input:focus,
.contact_us_6 textarea:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.contact_us_6 .container-block {
  min-height: 75px;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}

.contact_us_6 .responsive-container-block {
  min-height: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}



.contact_us_6 .responsive-container-block.container {
  position: relative;
  min-height: 75px;
  flex-direction: row;
  z-index: 2;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 30px;
  max-width: 1320px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.contact_us_6 .container-block.form-wrapper {
  background-color: white;
  max-width: 450px;
  text-align: center;
  padding-top: 50px;
  padding-right: 40px;
  padding-bottom: 50px;
  padding-left: 40px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-top: 80px;
  margin-right: 0px;
  margin-bottom: 60px;
  margin-left: 0px;
}

.contact_us_6 .text-blk.contactus-head {
  font-size: 36px;
  line-height: 52px;
  font-weight: 900;
}

.contact_us_6 .text-blk.contactus-subhead {
  color: #9c9c9c;
  width: 300px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  display: none;
}

.contact_us_6 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 26px;
  margin-left: 0px;
  min-height: 50px;
  
}

.contact_us_6 .input {
  width: 90%;
  height: 50px;
  padding-top: 1px;
  padding-right: 15px;
  padding-bottom: 1px;
  padding-left: 15px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #eeeeee;
  border-right-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-left-color: #eeeeee;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  font-size: 16px;
  color: black;
}

.contact_us_6 .textinput {
  width: 90%;
  min-height: 150px;
  padding-top: 20px;
  padding-right: 15px;
  padding-bottom: 20px;
  padding-left: 15px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #eeeeee;
  border-right-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-left-color: #eeeeee;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  font-size: 16px;
}

.contact_us_6 .submit-btn {
  width: 98%;
  background-color: #ff6600;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: outset;
  border-right-style: outset;
  border-bottom-style: outset;
  border-left-style: outset;
  border-top-color: #767676;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.contact_us_6 .form-box {
  z-index: 2;
  margin-top: 0px;
  margin-right: 48px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.contact_us_6 .text-blk.input-title {
  text-align: left;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
  font-size: 14px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  color: #9c9c9c;
}

.contact_us_6 ::placeholder {
  color: #dadada;
}

.contact_us_6 .mob-text {
  display: block;
  text-align: left;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
}

.contact_us_6 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.contact_us_6 .text-blk.contactus-subhead.color {
  color: white;
}

.contact_us_6 .map-box {
  max-width: 800px;
  max-height: 520px;
  width: 100%;
  height: 520px;
  background-color: #d9d9d9;
  background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/sc23.png");
  background-size: cover;
  background-position-x: 50%;
  background-position-y: 50%;
}

.contact_us_6 .map-part {
  width: 100%;
  height: 100%;
}

.contact_us_6 .text-blk.map-contactus-head {
  
  font-weight: 900;
  font-size: 30px;
  line-height: 32px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  color: black;
}

.contact_us_6 .text-blk.map-contactus-subhead {
  max-width: 300px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.contact_us_6 .social-media-links.mob {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  width: 230px;
  display: flex;
  justify-content: flex-start;
}

.contact_us_6 .link-img {
  width: 30px;
  height: 30px;
  margin-top: 0px;
  margin-right: 25px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.contact_us_6 .link-img.image-block {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.contact_us_6 .social-icon-link {
  margin: 0 25px 0 0;
  padding: 0 0 0 0;
}



.cont-detail{
  margin-top: 40px;
  font-family: "Outfit", sans-serif;
}

.cont-add{ 
    display: flex;
}

.add-1 {
    display: flex;
}

.add-2 {
    display: flex;
}

.cont-phn-em {
    margin-top: 10px;
    display: flex;
    gap: 190px;
}
.cont-phn {
    display: flex;
}
.cont-em{
    display: flex;
}

.contact-icon {
  color: #ff6600;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
}

.cont-soc {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column; /* Stacks the form and details vertically */
    }
    

    /* Form and Map/Details Block take full width on mobile */
    .form-box,
    #i772w {
        width: 100%;
        padding: 10px;
    }

    .contact_us_6 .input{
      width: 80%;
    }

    .contact_us_6 .textinput {
      width: 80%;
    }

    .contact-icon {
      color: #ff6600;
      border-radius: 50%;
      display: flex;
      justify-content: start;
      font-size: 1.3rem;
    }

    .cont-add{
      font-size: 15px;
      text-align: start;
    }

    .cont-phn-em{
      font-size: 15px;
      text-align: start;
      gap: 0px;
      display: flex;
    }
    
    .cont-soc {
      margin-top: 20px;
      margin-bottom: 20px;
      gap: 30px;
      justify-content: space-evenly;
    }

    .mob-text {
        text-align: center; /* Center the 'Get in Touch' text */
    }

    .contactus-head {
        font-size: 1.5rem;
    }
    
    .cont-detail {
        padding: 0 10px; /* Add padding inside the details block */
    }

    /* Stacks Address/Phone/Email details for better vertical flow */
    .cont-detail, .cont-add, .cont-phn-em {
        display: block; 
    }
    
    .cont-phn-em > div {
        margin-bottom: 20px; /* Add space between Phone and Email on mobile */
    }
    
    .cont-soc {
        justify-content: center; /* Center social media icons */
    }
    
    /* Ensure the map is not too tall on mobile */
    .contact-map-embed iframe {
        height: 300px !important; 
    }
}



@media (max-width: 1024px) {
  .contact_us_6 .responsive-container-block.container {
    justify-content: center;
  }

  .contact_us_6 .map-box {
    position: absolute;
    top: 0px;
    max-height: 320px;
  }

  .contact_us_6 .map-box {
    max-width: 100%;
    width: 100%;
  }

  .contact_us_6 .responsive-container-block.container {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .contact_us_6 .map-part {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact_us_6 .container-block.form-wrapper {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .mob-text {
    display: block;
  }

  .contact_us_6 .form-box {
    margin-top: 200px;
    margin-right: 60px;
    margin-bottom: 40px;
    margin-left: 0px;
  }

  .contact_us_6 .link-img {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    justify-content: space-evenly;
  }

  .contact_us_6 .social-media-links.mob {
    justify-content: space-evenly;
  }

  .contact_us_6 .responsive-cell-block.wk-desk-7.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 10px;
  }

  .contact-map-embed iframe{
    width: 100%;
    height: 30vh;
  }

  

  .contact_us_6 .text-blk.contactus-subhead {
    display: block;
  }

  .contact_us_6 .mob-text {
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .responsive-container-block.container {
    flex-wrap: wrap;
  }

  .contact_us_6 .form-box {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .contact_us_6 .submit-btn {
    width: 100%;
  }

    .contact_us_6 .input{
      width: 80%;
    }

    .contact_us_6 .textinput {
      width: 80%;
    }

  .contact_us_6 .container-block.form-wrapper {
    margin-top: 80px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .text-blk.input-title {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .contact_us_6 .form-box {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .contact_us_6 .container-block.form-wrapper {
    padding-top: 50px;
    padding-right: 15px;
    padding-bottom: 50px;
    padding-left: 15px;
  }

  .contact_us_6 .mob-text {
    display: block;
  }

  .contact_us_6 .responsive-container-block.container {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .contact_us_6 .form-box {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .container-block.form-wrapper {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .form-box {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .form-box {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }

  .contact_us_6 .text-blk.contactus-head {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 500px) {
  .contact_us_6 .container-block.form-wrapper {
    padding-top: 50px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
  }

  .contact_us_6 .container-block.form-wrapper {
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_6 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .contact_us_6 .responsive-container-block {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 35px;
    margin-left: 0px;
  }

  .contact_us_6 .text-blk.input-title {
    font-size: 12px;
    padding-left: 10px;
  }

  .contact_us_6 .text-blk.contactus-head {
    font-size: 26px;
    line-height: 35px;
  }

  .contact_us_6 .input {
    height: 45px;
  }
    .contact_us_6 .input{
      width: 80%;
    }

    .contact_us_6 .textinput {
      width: 80%;
    }
  
}



@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');


body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/* CONTACT SECTION CSS END */