
.hero-section {
  background: url('<?= base_url();?>assets/images/bgforarotalk.png') no-repeat center top;
  background-size: cover;
  padding: 7rem 2rem 2rem;
  text-align: center;
  animation: fadeIn 1.2s ease-in;
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

.hero-section p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #444;
}

.highlight {
  color: #f79505;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.stat-item {
  flex: 1 1 160px;
  max-width: 200px;
}

.stat-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.stat-item .label {
  font-size: 0.9rem;
  vertical-align: super;
  color: #333;
}

.stat-item p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
}


.journey {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: slideUp 1.3s ease-out;
}

.journey-text {
  flex: 1 1 320px;
  max-width: 600px;
}

.journey-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.journey-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.journey-img {
  flex: 1 1 300px;
  text-align: center;
}

.journey-img img {
  width: 100%;
  max-width: 65%;
  height: auto;
}


@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 1.5rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .journey {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.values-section {
  background: #f8fafc;
  padding: 4rem 2rem;
  text-align: center;
}

.values-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1c1c1c;
  position: relative;
  display: inline-block;
}

.values-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff8c00;
  margin: 8px auto 0;
  border-radius: 2px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  transition: transform 0.6s ease;
  gap: 1.5rem;
}

.card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card img {
  width: 70px;
  margin-bottom: 1rem;
}

.card p {
  color: #333;
  font-size: 1rem;
}


.indicators {
  margin-top: 2rem;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #ff8c00;
}


@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .card {
    flex: 0 0 100%;
  }
}

 .quote-container {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
      gap: 1.5rem;
      max-width: 900px;
      margin: auto;
    }

    .quote-icon-box {
      width: 100px;
      height: 130px;
      background: #fceeee;
      border-radius: 20px;
      position: relative;
      flex-shrink: 0;
    }

    .quote-icon {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 2.5rem;
      color: #ff6600;
    }

    .quote-text {
      color: #333;
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .quote-container {
        flex-direction: column;
        text-align: center;
      }

      .quote-icon-box {
        margin: auto;
      }

      .quote-text {
        font-size: 0.95rem;
      }
    }


     .container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .left-section {
      flex: 1;
      min-width: 300px;
    }

    .left-section h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .left-section h2 span {
      color: #FF6600;
    }

    .left-section p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .left-section strong {
      font-weight: bold;
    }

    .right-section {
      flex: 1;
      min-width: 300px;
    }

    .business-box {
      background: linear-gradient(145deg, #1f1f1f, #4a4a4a);
      color: #fff;
      border-radius: 12px;
      padding: 30px 25px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      margin-bottom: 40px;
    }

    .business-box h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .business-box p {
      font-size: 15px;
      line-height: 1.6;
      opacity: 0.9;
    }

    .cards-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .card-wrapper {
      position: relative;
      flex: 1;
      min-width: 260px;
    }

    .arrow-icon {
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background-color: #FF6600;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      z-index: 2;
    }

    .card {
      background-color: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h4 {
      color: #FF6600;
      font-size: 18px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .card p {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .container {
        flex-direction: column;
        gap: 60px;
      }

      .cards-container {
        flex-direction: column;
        align-items: center;
      }

      .card {
        width: 100%;
        max-width: 500px;
      }
    }


.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch; /* This makes children equal in height */
}

.card-wrapper {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}

.card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}





#our-values .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}









.values-header h2 {
  font-size: 2rem;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 0.25rem
  
  


  
}
.values-header .highlight {
  color: #FF8C00;
}
.values-header p {
  color: #333;
  margin-bottom: 2rem;
}

/* ------ Layout ------ */
.values-content {
  display: flex;
  gap: 2rem;
}

/* ------ Left List ------ */
.values-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  font-weight: 600;
  transition: color .2s;
}
.value-item .arrow {
  font-size: 1.2rem;
  transition: transform .2s;
}
.value-item:hover {
  color: #FF8C00;
}
.value-item:hover .arrow {
  transform: translateX(4px);
}
.value-item.active {
  color: #FF8C00;
}

/* ------ Right Detail ------ */
.value-detail {
  flex: 2;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-radius: 8px;
  position: relative;
}
.value-detail .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.value-detail h3 {
  margin: 0;
  font-size: 1.5rem;
}
.value-detail .underline {
  width: 50px;
  height: 4px;
  background: #FF8C00;
  margin: 0.5rem 0 1.5rem;
}
.value-detail p {
  color: #555;
  line-height: 1.6;
}

/* ------ Responsive ------ */
@media (max-width: 768px) {
  .values-content {
    flex-direction: column;
  }
  .value-detail {
    margin-top: 2rem;
  }
}

.BG{

background-color: #f8fafc;

}




    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1000px;
    }

    .box {
      background-color: #ccc;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 10px;
    }

    .box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(243, 112, 33, 0.7); /* #FF6600 glow */
    }

    .box:hover img {
      transform: scale(1.08);
    }

    .text-box {
      background: #f7f9fa;
      flex-direction: column;
      text-align: center;
      font-weight: bold;
      box-shadow: none !important;
      transform: none !important;
    }

    .text-box .line1 {
      color: #000;
      font-size: 1.2em;
    }

    .text-box .line2 {
      color: #f37021;
      font-size: 1.1em;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .grid {
        grid-template-columns: 1fr;
      }
    }



    .customers-section {
      max-width: 100%;
      margin: 60px auto;
      padding: 90px 30px;
      background-color: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
    }

    .customers-section h2 {
      font-size: 28px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 10px;
    }

    .customers-section h2 span {
      color: #f37021; /* #FF6600 text */
    }

    .customers-section .underline {
      width: 10%;
      height: 4px;
      background-color: #f37021;
      margin: 0 auto 30px;
      border-radius: 2px;
    }

    .customers-text {
      display: flex;
      gap: 20px;
      justify-content: center;
      text-align: justify;
      position: relative;
    }

    .customers-text p {
      flex: 1;
      font-size: 15px;
      color: #333;
      line-height: 1.7;
    }

    .customers-text::after {
      content: "";
      position: absolute;
      top: 0;
      right: -15px;
      width: 4px;
      height: 100%;
      background-color: #f37021;
    }

    @media (max-width: 768px) {
      .customers-text {
        flex-direction: column;
        align-items: center;
      }

      .customers-text::after {
        display: none;
      }
    }



    .contact-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      gap: 40px;
    }

    .contact-left {
      flex: 1;
      min-width: 300px;
    }

    .contact-left h2 {
      font-size: 2rem;
      font-weight: bold;
    }

    .contact-left .underline {
      width: 40px;
      height: 4px;
      background-color: #ff6600;
      margin: 10px 0 20px;
    }

    .contact-left p {
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .contact-left img {
      width: 100%;
      border-radius: 5px;
    }

    .contact-right {
      flex: 2;
      min-width: 300px;
    }

    form {
      display: flex;
      flex-wrap: wrap;
      column-gap: 30px;
    }

    .form-group {
      flex: 1 1 48%;
      display: flex;
      flex-direction: column;
    }

    .form-group.full {
      flex: 1 1 100%;
    }

    label {
      font-weight: bold;
      margin-bottom: 6px;
    }

    input, textarea {
      padding: 10px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 3px;
    }

    textarea {
      min-height: 100px;
      resize: vertical;
    }

    .radio-group {
      flex: 1 1 100%;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .radio-group label {
      font-weight: bold;
      margin-right: 5px;
    }

    .privacy-note {
      font-size: 0.8rem;
      color: #555;
      margin-top: -10px;
    }

    .privacy-note a {
      color: #f90;
      text-decoration: none;
    }

    .submit-btn {
      background: #f90;
      color: white;
      padding: 10px 20px;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
      .form-group {
        flex: 1 1 100%;
      }

      .contact-section {
        flex-direction: column;
      }
    }
    

    
  
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    background-color: #fff;
    flex-wrap: wrap;
    gap: 40px;
  }

  .hero-text {
    flex: 1 1 100px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: justify;
  }

  .hero-text h1 .orange {  
    color: #FF6600;
  }

  .hero-text h1 .bold {
    font-weight: bold;
    color: #000;
  }

  .hero-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
  }

  .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FF6600;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background 0.3s;
  }

  .btn:hover {
    background-color: #FF6600;
  }

  .hero-image {
    flex: 1 1 400px;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 5%;
    }

    .hero-text h1 {
      font-size: 2rem;
    }

    .hero-text p {
      font-size: 0.95rem;
    }
  }

  .services-section h2 {
  text-align: center;
  padding: 15px;
  margin-bottom: 30px;
  font-size: 2em;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1345px;
  margin: auto;
}

.cards-container {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
}

.service-card {
  flex: 0 0 22.1%;
  padding: 20px;
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 12px;
  margin: 10px;
  transition: transform 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 4px;
  background: #ff6600;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.service-card:hover::after {
  width: 60%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.icon {
  margin-bottom: 15px;
}

.card-title {
  margin: 10px 0;
  font-size: 15px;
  font-weight: bold;
}

.card-description {
  font-size: 0.95em;
  color: #555;
}


.pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.pagination span.active {
  background-color: #ff6600;
  transform: scale(1.4);
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 100%;
  }
}

.service-card {
  /* Existing styles... */
  position: relative;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #ff6600;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 4px;
  background: #ff6600;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.service-card:hover::after {
  width: 60%;
}

  .financial-services {
    padding: 70px 8%;
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .left, .right {
    flex: 1 1 400px;
  }
  
  .left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .left p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  .see-more {
    color: #FF6600;
    font-weight: bold;
    text-decoration: none;
  }
  
  .see-more:hover {
    text-decoration: underline;
  }
  
  .highlight-bar {
    width: 40px;
    height: 4px;
    background-color: #FF6600;
    margin-bottom: 20px;
  }
  
  .highlight-bar.small {
    margin-top: 30px;
  }
  
  .right .service-item {
    margin-bottom: 30px;
  }
  
  .right h4 {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .right p {
    color: #666;
    font-size: 0.95rem;
  }
  
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
    }
  
    .left h2, .right h4 {
      text-align: justify;
    }
  }

 
.clients-section {
    padding: 60px 20px;
    background-color: #f8f9fc;
    text-align: center;
  }
 
  .section-header .highlight-bar {
    width: 50px;
    height: 3px;
    background-color: #f9a825;
    margin: 0 auto 10px;
  }
 
  .section-header p {
    margin: 0;
    color: #555;
    font-size: 16px;
  }
 
  .section-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 5px 0 40px;
  }
 
  .logos-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
 
  .slider-track {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
  }
 
  .slider-track img {
    max-height: 80px;
    margin: 0 30px;
    object-fit: contain;
  }
 
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
 
    100% {
      transform: translateX(-50%);
    }
  }
 
  @media (max-width: 768px) {
    .slider-track img {
      margin: 0 15px;
      max-height: 60px;
    }
  }
 
/* 
  .clients-section {
    padding: 60px 0%;
    background: #f9faff;
    text-align: center;
    position: relative;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header p {
    font-size: 1rem;
    color: #555;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
    color: #222;
  }
  
  .highlight-bar {
    width: 40px;
    height: 3px;
    background-color: #FF6600;
    margin: 0 auto 10px;
  }
  
  .logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
  }
  
  .logos-container img {
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .logos-container img:hover {
    transform: scale(1.05);
  } */
  
  .nav-arrows {
    margin-top: 20px;
  }
  
  .arrow-btn {
    background-color: transparent;
    border: 2px solid #FF6600;
    color: #FF6600;
    border-radius: 50%;
    padding: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 5px;
  }
  
  .arrow-btn:hover {
    background-color: #FF6600;
    color: white;
  }


  .testimonials {
    text-align: center;
    padding: 50px 10%;
    background-color: #fff;
    position: relative;
  }
  
  .testimonial-header .highlight-bar {
    width: 40px;
    height: 3px;
    background: #FF6600;
    margin: 0 auto 10px;
  }
  
  .testimonial-header p {
    margin: 0;
    font-size: 1rem;
    color: #444;
  }
  
  .testimonial-header h2 {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 30px;
  }
  
  .testimonial-content {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1rem;
    color: #666;
    position: relative;
  }
  
  .quote-icon {
    font-size: 2rem;
    color: #FF6600;
    position: absolute;
    left: -30px;
    top: 0;
  }
  
  .quote-icon.right {
    right: -30px;
    left: auto;
    top: 0;
  }
  
  .testimonial-nav {
    margin: 20px 0;
  }
  
  .arrow-btn {
    background: none;
    border: 2px solid #FF6600;
    color: #FF6600;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 10px;
  }
  
  .arrow-btn:hover {
    background-color: #FF6600;
    color: white;
  }
  
 

.vertical-line{
    margin-top: 5%;
    width: 4px;
    height: 150px;
    background: linear-gradient(to top, #ff8c00, #ffb300);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.vertical-line-reverse{
    margin-top: 5%;
    width: 4px;
    height: 150px;
    background: linear-gradient(to top, #ff8c00, #ffb300);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

  .half-circle {
      width: 80px;
      height: 40px; /* Half of the width */
    
      background: linear-gradient(to top, #ff8c00, #ffb300); /* #FF6600 gradient */
      border-top-left-radius: 80px;
      border-top-right-radius: 80px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

  .half-circle-2 {
  width: 80px;
  height: 40px;
  background: linear-gradient(to top, #ff8c00, #ffb300);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: rotate(180deg);
  float: right;
}
    

.testimonial-container {
  max-width: 800px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.testimonial-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-title span {
  font-weight: bold;
}

.title-underline {
  width: 40px;
  height: 3px;
  background-color: #FF6600;
  margin: 0 auto 20px;
}

.testimonial-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 600px;
}

.quote-icon {
  font-size: 24px;
  color: rgb(255, 255, 255);
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 2px solid #FF6600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #FF6600;
  cursor: pointer;
}

.nav-left {
  left: 20px;
}

.nav-right {
  right: 20px;
}

@media (max-width: 600px) {
  .testimonial-container {
    padding: 40px 10px;
  }

  .testimonial-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .nav-button {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
  

.avatars-section {
  padding: 40px 20px;
  text-align: center;
}

.avatars-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: all 0.4s ease-in-out;
}

.avatar-card {
  text-align: center;
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.4s ease-in-out;
}

.avatar-card.active {
  opacity: 1;
  transform: scale(1.1);
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 6px;
}

.name {
  font-weight: 500;
  color: #555;
  font-size: 14px;
}

.active-name {
  font-weight: 700;
  color: #3f3f3f;
}

.designation {
  font-size: 12px;
  color: #aaa;
}

.nav-buttons {
  margin-top: 20px;
}

.nav-buttons button {
  background: none;
  border: 2px solid #FF6600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #FF6600;
  cursor: pointer;
  margin: 0 10px;
}

@media (max-width: 600px) {
  .avatars-container {
    gap: 15px;
  }

  .avatar-img {
    width: 60px;
    height: 60px;
  }

  .stars {
    font-size: 14px;
  }

  .name,
  .designation {
    font-size: 12px;
  }

  .nav-buttons button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  text-align: justify;
}

h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* .carousel-container {
  max-width: 1100px;
  margin: auto;
  overflow-x: hidden;
} */

.carousel-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1.5s ease-in-out;
}

.testimonial-card {
  width: 170px;
  padding: 20px 15px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0.7;
}

.testimonial-card:hover {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
  z-index: 2;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.testimonial-card:hover img {
  border-color: #ff6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.stars {
  color: #fbc02d;
  font-size: 1.2em;
  margin: 8px 0;
  animation: bounceStars 1.8s infinite;
}

.testimonial-card:hover .stars {
  animation-play-state: running;
}

.name {
  font-weight: bold;
  margin-top: 5px;
}

.designation {
  font-size: 0.9em;
  color: #888;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounceStars {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}


@media (max-width: 600px) {
  .testimonial-card {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .carousel-track {
    flex-direction: column;
    align-items: center;
  }
}


/* .carousel-container {
  max-width: 1100px;
  margin: auto;
  overflow-x: hidden;
} */

.carousel-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1.5s ease-in-out;
}

.testimonial-card {
  width: 170px;
  padding: 20px 15px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0.7;
}

.testimonial-card:hover {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
  z-index: 2;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.testimonial-card:hover img {
  border-color: #ff6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.stars {
  color: #fbc02d;
  font-size: 1.2em;
  margin: 8px 0;
  animation: bounceStars 1.8s infinite;
}

.testimonial-card:hover .stars {
  animation-play-state: running;
}

.name {
  font-weight: bold;
  margin-top: 5px;
}

.designation {
  font-size: 0.9em;
  color: #888;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounceStars {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}


@media (max-width: 600px) {
  .testimonial-card {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .carousel-track {
    flex-direction: column;
    align-items: center;
  }
}

.bg{

background:#f9faff ;
padding: 1%;


}


.header-section {
  text-align: center;
  padding: 40px 20px 20px;
}

.header-section span {
  font-weight: bold;
  font-size: 1.5em;
  color: #333;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.card.reverse {
  flex-direction: row-reverse;
}

.card-text {
  flex: 1;
  min-width: 280px;
}

.card-text h3 {
  color: #FF6600;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.card-image {
  flex: 1;
  text-align: center;
}

.card-image img {
  max-width: 75%;
  height: auto;
  border-radius: 8px;
}


@media (max-width: 768px) {
  .card {
    flex-direction: column !important;
    text-align: center;
  }

  .card-text {
    text-align: center;
  }
}

.card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.card.reverse {
  transform: translateX(30px);
}

.card.reverse.in-view {
  transform: translateX(0);
}


.card {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease,
    border-color 0.8s ease;
}


.card.in-view {
  border-color: #FF6600;
}

.card.in-view {
  border-color: #FF6600;
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.bg2{

background:#f9faff ;
padding: 6;

}

.approach-section {
  text-align: center;
  padding-top: 60px;
  max-width: 1200px;
  margin: auto;
}

.approach-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.approach-section span {
  font-weight: bold;
  color: #333;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 50px 20px;
}

.approach-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease;
  text-align: justify;
}

/* Animation when in view */
.approach-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover animation */
.approach-card:hover {
  transform: translateY(-8px) scale(1.02);
  /* box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);  */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon style with hover glow */
.icon-border {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.approach-card:hover .icon-border {
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.7); /* #FF6600 glow on hover */
}

.icon-border img {
  width: 45px;
  height: 45px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .approach-card {
    text-align: center;
  }
}

.bg3{
background:#ffffff ;

}




.section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 130px;
  
}

.left-column {
  flex: 1 1 350px;
}

.left-column h2 {
  font-weight: normal;
  margin-bottom: 10px;
}

.left-column h2 strong {
  font-weight: bold;
}

.orange-line {
  width: 40px;
  height: 4px;
  background-color: #FF6600;
  margin-bottom: 20px;
}

.left-column p {
  color: #666;
  line-height: 1.7;
}

.left-column a {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: #FF6600;
  font-weight: 500;
  text-decoration: none;
}

.left-column a::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s;
}

.left-column a:hover::after {
  transform: translateX(4px);
}

.right-column {
  flex: 1 1 350px;
}

.right-column ol {
  padding-left: 20px;
}

.right-column li {
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

.right-column li span {
  display: block;
  margin-top: 5px;
  font-weight: normal;
  color: #666;
}

.partners-section {
  margin-top: 80px;
}

.partners-section h3 {
  font-weight: normal;
}

.partners-section h3 strong {
  font-weight: bold;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.logos img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    text-align: center;
  }

  .right-column ol {
    text-align: justify;
    margin: 0 auto;
    max-width: 400px;
  }

  .left-column a {
    justify-content: center;
  }
}


.section {
  /* max-width: 1150px; */
  max-width: 1308px;
  margin: 0 auto;
  padding: 50px 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::before {
  content: "";
  width: 40px;
  height: 4px;
  background: #f77f00;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title h4 {
  margin: 0;
  font-weight: normal;
  font-size: 22px;
  color: #000000;
}

.section-title h2 {
  margin: 5px 0 0;
  font-size: 28px;
  font-weight: normal;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom:-40px;
  align-items: center;
}

.row.reverse {
  flex-direction: row-reverse;
}

.text-column, .image-column {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.text-column h3 {
  color: #f77f00;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
  text-align: justify;
  
}

.text-column p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.image-column img {
  max-width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  .row,
  .row.reverse {
    flex-direction: column;
  }
}


.text-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

.gradient-line {
  width: 4px;
  height: 100%;
  min-height: 100px;
  background: linear-gradient(to bottom, #f57c00, #8e24aa); /* adjust colors */
  border-radius: 2px;
  flex-shrink: 0;
}

.text-content {
  color: #333;
  font-family: Arial, sans-serif;
}

.text-content h3 {
  color: #f57c00;
  margin: 0 0 8px;
}

.text-content p {
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.normal{

font-weight: normal;
font-size: 22px;

}





.tech-stack-container {
  padding: 40px 20px;
}

.tech-stack-container h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 50px 0;
  font-weight: normal;
  position: relative;
}

.categories span {
  cursor: pointer;
  color: #000000;
  border-bottom: 2px solid transparent;
  padding: 5px 10px;
  transition: all 0.3s ease;
  position: relative;
}


.categories span.active {
  color: #FF6600;
  border-bottom: none;
}


.categories span:hover {
  color: #FF6600;
  border-bottom: 2px solid #FF6600;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}

.logo {
  width: 20%;
  height: auto;
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
}

.logo.show {
  display: inline-block;
  opacity: 1;
  transform: scale(1);
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 600px) {
  .logo {
    width: 60px;
  }
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(255, 165, 0, 0.6); /* #FF6600 shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.orange-line {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
  border: none;
  border-top: 3px solid #FF6600;
  opacity: 0.9;

  /* Shadow effect */
  box-shadow: 0 4px 6px -4px rgba(255, 165, 0, 0.5);
}



.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain; 
  padding-top: 1px;
}

.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 1;
}

.buttons button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.dots span {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.dots .active {
  background-color: #FF6600;
}

@media (max-width: 768px) {
  .slider {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 50vh;
  }
}


.head3{
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}


.section {
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.section-title h4, .section-title h2 {
  text-align: center;
  margin: 0;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.text-column, .image-column {
  flex: 1 1 45%;
  padding: 1rem;
  box-sizing: border-box;
}

.image-column img {
  /* max-width: 100%; */
  height: auto;
  display: block;
  margin: 0 auto;
}


/* Mobile responsive styles */
@media (max-width: 768px) {
  .row,
  /* .row.reverse {
    flex-direction: column;
  } */
  .vertical-line, .vertical-line-reverse {
  display: none;
}

  .text-column, .image-column {
    flex: 1 1 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title h4 {
    font-size: 1.2rem;
  }
}
  @media (max-width: 768px) {
  .approach-card {
    text-align: left !important;
  }

  .approach-card img {
    display: block;
    margin: 0 0 1rem 0;
  }

  .approach-card h3,
  .approach-card p {
    margin-left: 0;
  }
  }

   
.slider {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
}
 
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}
 
.slide {
  flex: 0 0 100%;
  height: 100%;
}
 
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-top: 1px;
}
 
/* .buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 1;
} */
 
.buttons button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}
 
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
 
.dots span {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}
 
.dots .active {
  background-color: orange;
}
 
@media (max-width: 768px) {
  .slider {
    height: 60vh;
  }
}
 
@media (max-width: 480px) {
  .slider {
    height: 50vh;
  }
}
 
 
 
 
 
/* Slide - 1 */
       
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    background-color: #fff;
    flex-wrap: wrap;
    gap: 40px;
  }
 
  .hero-text {
    flex: 1 1 400px;
  }
 
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
 
  .hero-text h1 .orange {  
    color: #ff6600;
  }
 
  .hero-text h1 .bold {
    font-weight: bold;
    color: #000;
  }
 
  .hero-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
 
  .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background 0.3s;
  }
 
  .btn:hover {
    background-color: #FF6600;
  }
 
  .hero-image {
    flex: 1 1 400px;
    text-align: center;
  }
 
  .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
 
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 5%;
    }
 
    .hero-text h1 {
      font-size: 2rem;
    }
 
    .hero-text p {
      font-size: 0.95rem;
    }
  }
 
 
 
/* Slide - 2 */
 
.expert-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 7rem;
  background-color: #fff;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
 
.expert-content {
  flex: 1 1 400px;
  max-width: 600px;
}
 
.expert-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
 
.expert-title .bold {
  font-weight: 700;
}
 
.expert-subtitle {
  font-size: 2.75rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ff6600;
}
 
.expert-text {
  font-size: 1.1rem;
  color: #5f6b7a;
  font-weight: 300;
  max-width: 500px;
}
 
.expert-image {
  flex: 1 1 300px;
  text-align: center;
}
 
.expert-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
 
/* Responsive Styling */
@media (max-width: 768px) {
  .expert-section {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }
 
  .expert-content {
    max-width: 100%;
  }
 
  .expert-title {
    font-size: 1.8rem;
  }
 
  .expert-subtitle {
    font-size: 1.6rem;
  }
 
  .expert-text {
    font-size: 1rem;
    max-width: 100%;
  }
 
  .expert-image img {
    max-width: 100%;
    height: auto;
  }
}
 
/* Slide - 3 */
 
      .section {          
      /* display: flex; */
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 3rem 2rem 2rem 2rem;
      /* gap: 9rem; */
    }
 
    .content {
      flex: 1 1 400px;
      max-width: 600px;
    }
 
    .content h2 {
      font-size: 2.5rem;
      font-weight: 400;
      margin-bottom: 0rem;
    }
 
    .content .bold {
      font-weight: 700;
    }
 
    .content .highlight {
      color: #ff6600;
      font-weight: 700;
      font-size: 2.25rem;
    }
 
    .content p {
      color: #5f6b7a;
      font-size: 1.1rem;
      margin: 1rem 0 2rem 0;
    }
 
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 0rem;
      max-width: 500px;
    }
 
    .feature-item {
      text-align: center;
    }
 
    .feature-item img {
      height: 40px;
      margin-bottom: 0.5rem;
    }
 
    .feature-item h4 {
      font-size: 1rem;
      font-weight: 600;
    }
 
    .image {
      flex: 1 1 300px;
      text-align: center;
    }
 
    .image img {
      max-width: 100%;
      height: auto;
    }
 
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
      }
 
      .content h2 {
        font-size: 2rem;
      }
 
      .content .highlight {
        font-size: 2rem;
      }
    }



    .contact-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      gap: 40px;
    }
 
    .contact-left {
      flex: 1;
      min-width: 300px;
    }
 
    .contact-left h2 {
      font-size: 2rem;
      font-weight: bold;
    }
 
    .contact-left .underline {
      width: 40px;
      height: 4px;
      background-color: #ff6600;
      margin: 10px 0 20px;
    }
 
    .contact-left p {
      margin-bottom: 20px;
      line-height: 1.6;
    }
 
    .contact-left img {
      width: 100%;
      border-radius: 5px;
    }
 
    .contact-right {
      flex: 2;
      min-width: 300px;
    }
 
 
    .submit-btn {
      background: #f90;
      color: white;
      padding: 10px 20px;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
 
    @media (max-width: 768px) {
      .form-group {
        flex: 1 1 100%;
      }
 
      .contact-section {
        flex-direction: column;
      }
    }
   
  @media (max-width: 768px) {
     .elementor .o-pill, .o-pill, .s-text-image__image-pill {
       border-radius: 1px;
}
 
      .o-contact-map__pill {
    position: relative;
    width: 92px;
    height: 65px;
}
.elementor-element .elementor-widget-image .elementor-widget-container {
  display: none;
}
    }
 
 
 
 
 

 