/* contact page css */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif !important;
  background: #0f6b57 !important;
  color: #ffffff !important;
  margin: 0;
}

/* banner section start  */
.hero {
  position: relative;
  height: 100vh;
  /* min-height: 768px; */
  background: url('https://auriic.co/wp-content/uploads/2026/03/compressed_image-12.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Green Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 107, 87, 0.95) 0%,
    rgba(15, 107, 87, 0.85) 40%,
    rgba(15, 107, 87, 0.3) 70%,
    rgba(15, 107, 87, 0) 100%
  );
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 120px;
}

.hero-content {
  max-width: 900px;
}

/* Title */
.title-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}


.vertical-line {
  width: 5px;
  height: 140px;
  background: #d4a537;
  margin-top: 15px;
}

.hero h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 90px;
  margin: 0;
  color: rgba(255, 255, 255, 1);
}

.highlight {
  color: #d4a537;
}

/* Description */
.hero-description {
  margin-top: 40px;
  font-size: 24px;
  line-height: 38px;
  max-width: 750px;
}

/* Buttons */
.hero-buttons {
  margin-top: 50px;
  display: flex;
  gap: 25px;
}

.hero-buttons .callwithexpert, .hero-buttons .discoverservice{
  background: linear-gradient(180deg, #C9982C 0%, #937228 100%) !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
  border: none !important;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
}


.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d4a537;
  color: #ffffff;
}

.btn-primary:hover {
  background: #b88d2c;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0f6b57;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

/* 1440px */
@media (max-width: 1440px) {
  .hero h1 {
    font-size: 64px;
    line-height: 80px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .hero-container {
    padding: 0 80px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 72px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
    line-height: 64px;
  }

  .hero-description {
    font-size: 20px;
    line-height: 32px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0;
  }

  .hero-container {
    padding: 0 40px;
  }

  .title-wrapper {
    gap: 20px;
  }

  .vertical-line {
    height: 100px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 50px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 576px */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 30px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 25px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .vertical-line {
    display: none;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 26px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
  .service-container
  {
    flex-direction: column;
    max-width: 100%;
  }
}
/* banner section end  */

/* contact form section css start */

/* ================== SECTION ================== */

.contact-section {
  padding: 120px 120px;
}

.contact-container {
  display: flex;
  gap: 80px;
  max-width: 1600px;
  margin: auto;
}

/* ================== FORM ================== */

.contact-form {
  flex: 2;
}

.form-row {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cbd5d1;
}

.contact-form input,
.contact-form textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.4) !important;
  padding: 10px 0;
  color: #ffffff !important;
  font-size: 16px !important;
  outline: none;
}

.contact-form textarea {
  resize: none !important;
  height: 80px !important;
}

.form-group.full {
  margin-bottom: 60px;
}

.submit-btn {
  background: #d4a537;
  border: none;
  padding: 14px 40px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #b88d2c;
}

/* ================== INFO CARD ================== */

.contact-info {
  flex: 1;
  background: #0b5c4b;
  padding: 50px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.contact-info h3 {
  color: #d4a537;
  margin: 0 0 10px 0;
  font-size: 24px;
}

.sub-text {
  margin-bottom: 40px;
  font-size: 14px;
  color: #d1e5df;
}

.info-item {
  margin-bottom: 25px;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  font-size: 18px;
}

/* Decorative circles */
.decor-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
}

.decor-circle.small {
  width: 100px;
  height: 100px;
  bottom: 40px;
  right: 40px;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

/* 1440px */
@media (max-width: 1440px) {
  .contact-section {
    padding: 100px 80px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .contact-container {
    gap: 60px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    margin-top: 60px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 40px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .contact-section {
    padding: 60px 30px;
  }

  .contact-info {
    padding: 40px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .contact-section {
    padding: 50px 20px;
  }

  .submit-btn {
    width: 100%;
  }

  .service-container {
      flex-direction: column;
      max-width: 100%;
  }
}

/* 425px */
@media (max-width: 425px) {
  .contact-info h3 {
    font-size: 20px;
  }

  .info-item {
    font-size: 14px;
  }
}

/* contact form section css end */


/* cta section css start */

/* ================= SECTION ================= */

.cta-section {
  position: relative;
  background: url('https://auriic.co/wp-content/uploads/2026/03/compressed_image-14.webp') 
              center/cover no-repeat;
  padding: 140px 0;
  display: flex;
  align-items: center;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 107, 87, 0.92);
}

/* Container */
.cta-container {
  position: relative;
  max-width: 1600px;
  margin: auto;
  padding: 0 120px;
  width: 100%;
}

.cta-content h2 {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  flex-wrap: wrap;
}

/* 250+ */
.highlight-number {
  font-size: 140px;
  font-weight: 700;
  color: #d4a537;
  line-height: 1;
}

/* Text */
.cta-text {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 64px;
  max-width: 900px;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

/* 1440px */
@media (max-width: 1440px) {
  .highlight-number {
    font-size: 120px;
  }

  .cta-text {
    font-size: 42px;
    line-height: 56px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .cta-container {
    padding: 0 80px;
  }

  .highlight-number {
    font-size: 100px;
  }

  .cta-text {
    font-size: 36px;
    line-height: 50px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .highlight-number {
    font-size: 80px;
  }

  .cta-text {
    font-size: 30px;
    line-height: 44px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .cta-section {
    padding: 100px 0;
  }

  .cta-container {
    padding: 0 40px;
  }

  .cta-content h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .highlight-number {
    font-size: 70px;
  }

  .cta-text {
    font-size: 26px;
    line-height: 38px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .highlight-number {
    font-size: 60px;
  }

  .cta-text {
    font-size: 22px;
    line-height: 34px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .cta-container {
    padding: 0 25px;
  }

  .highlight-number {
    font-size: 50px;
  }

  .cta-text {
    font-size: 20px;
    line-height: 30px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .highlight-number {
    font-size: 44px;
  }

  .cta-text {
    font-size: 18px;
    line-height: 28px;
  }
}

/* cta section css end */


/* logo section css start */


.trusted-section {
  background: #0f6b57;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}

/* TEXT */

.trusted-text {
  max-width: 1600px;
  margin: auto;
  padding: 0 120px 100px;
}

.trusted-text h2 {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 0;
}

.trusted-number {
  font-weight: 600;
  font-size: 136px;
  line-height: 64px;
  color: #d4a537;
}

.trusted-desc {
  font-weight: 400;
  font-size: 56px;
  line-height: 72px;
  max-width: 900px;
}

/* MARQUEE */

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 120px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.logo-marquee.reverse .logo-track {
  animation: scrollRight 25s linear infinite;
}

.logo-track img {
  height: 45px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Smooth infinite effect */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

@media (max-width: 1440px) {
  .trusted-number { font-size: 120px; }
  .trusted-desc { font-size: 48px; }
}

@media (max-width: 1200px) {
  .trusted-text { padding: 0 80px 80px; }
  .trusted-number { font-size: 100px; }
  .trusted-desc { font-size: 40px; }
}

@media (max-width: 1024px) {
  .trusted-number { font-size: 80px; }
  .trusted-desc { font-size: 32px; line-height: 48px; }
}

@media (max-width: 768px) {
  .trusted-text h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .trusted-number { font-size: 70px; }
  .trusted-desc { font-size: 26px; line-height: 40px; }

  .logo-track { gap: 80px; }
}

@media (max-width: 576px) {
  .trusted-number { font-size: 60px; }
  .trusted-desc { font-size: 22px; }
}

@media (max-width: 480px) {
  .trusted-text { padding: 0 25px 60px; }
  .trusted-number { font-size: 50px; }
  .trusted-desc { font-size: 20px; }
}

@media (max-width: 425px) {
  .trusted-number { font-size: 44px; }
  .trusted-desc { font-size: 18px; }
  .logo-track img { height: 30px; }
}

/* logo section css end */


/* faq start */
  
.service-faq-section {
    padding: 80px 20px;
    background: rgba(0, 86, 72, 1);
}

.service-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Lottie */
.lottie-box {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Right FAQ Card */
.faq-card {
    flex: 1;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 100%;
}

/* FAQ Items */
.service-faq-section {
    padding: 80px 20px;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Lottie */
.lottie-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Right FAQ Card */
.faq-card {
    flex: 1;
    background: #f4f4f4 !important;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    background: #f4f4f4 !important;
    transition: 0.3s;
}

.faq-question span{
  font-weight: 600;
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: rgba(22, 28, 45, 1);
}


.faq-question:hover {
    background: #ececec !important;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: 0.3s;
    color: rgba(22, 28, 45, 1);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer span{
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: -0.2px;
}

/* First item highlighted top border */
.faq-item:first-child .faq-question {
    border-top: 4px solid #f4b400;
}

.faq-card span{
    color: rgba(22, 28, 45, 1) !important;

} 


@media(max-width:425px){
  .service-faq-section{
      padding: 20px 20px;
  }
}

/* faq end */