
@font-face {
            font-family: "TT Interphases";
            src: url("../fonts/TT\ Interphases.ttf") format("truetype");
            font-weight: normal;
            font-style: normal;
            font-display: swap;                
        }
    h1, h2, h3, h4, h5, h6 {
        
            font-weight: normal;
            font-style: normal;
            font-display: swap;
    }


.connect-section {
  background-color: #f5f6fa;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}.connect-section {
  background-color: #f5f6fa;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

.connect-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.connect-header {
  text-align: left;
  margin-bottom: 40px;
}

.connect-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 10px;
}

.connect-header p {
  font-size: 2rem;
  color: #fffbfb;
}

.form-box {
  background-color: #111;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-box h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-box p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
}

form fieldset {
  border: none;
  margin-bottom: 20px;
}

form legend {
  display: none;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  box-sizing: border-box;
}

.btn.btn-primary {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.btn.btn-primary:hover {
  background-color: #e0e0e0;
}

/* 🌐 Responsive Styles for Tablets & Mobile */
@media (max-width: 911px) {
  .connect-header {
    text-align: center;
  }

  .connect-header h2 {
    font-size: 2rem;
  }

  .connect-header p {
    font-size: 1rem;
  }

  .form-box {
    width: 100%;
    padding: 30px 20px;
  }

  .form-box h3 {
    font-size: 1.5rem;
  }

  .form-box p {
    font-size: 0.95rem;
  }

  .form-control {
    font-size: 1rem;
    padding: 12px;
  }

  .btn.btn-primary {
    width: 100%;
  }
}
.contact-section {
  background: url("../img/contact\ us-min.jpg") no-repeat center center/cover;
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('../img/The\ Red\ Arc\ banner-min.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1); /* dark overlay */
  z-index: 1;
}

.about-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.about-overlay h1 {
  font-size: 64px;
  font-weight: bold;
  color: #fff;
}

.about-overlay h1 span {
  color: #f62032; /* red */
}

.about-overlay p {
  font-size: 29px;
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
    background-position: center top;
  }

  .about-overlay h1 {
    font-size: 38px;
  }

  .about-overlay p {
    font-size: 18px;
    margin-top: 15px;
  }
}
.about-second-fold {
  background-color: #fff;
  padding: 100px 70px;
  display: flex;
  justify-content: center;
  /* align-items: left; */
}

.about-second-content {
  display: flex;
  flex-direction: row; /* Ensures image comes first */
  max-width: 1320px;
  width: 100%;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;          /* Changed from 150% */
  max-width: 600px;     /* Keeps it large on big screens */
  height: auto;         /* Maintain aspect ratio */
  border-radius: 2px;
}

.about-text {
  flex: 1;
  text-align: center;
}

.about-text h2 {
  font-size: 50px;
  
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 22px;
  line-height: 1.6;
  color: #282727;
}
@media (max-width: 1024px) {
  .about-second-fold {
    padding: 80px 50px;
  }

  .about-second-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
  }

  .about-text {
    margin-top: 30px;
  }

  .about-text h2 {
    font-size: 42px;
  }

  .about-text p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-second-fold {
    padding: 60px 30px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.5;
  }

  .about-second-content {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .about-second-fold {
    padding: 50px 20px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-second-content {
    gap: 30px;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }
}

.about-third-fold {
  background-color: #000;
  color: #fff;
  padding: 100px 70px;
}

.about-third-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
  max-width: 1200px;
  margin: auto;
  
}

.about-third-text {
  flex: 1;
  border-left: 4px solid #faf7f7;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  height: 100%; /* Default: auto height; doesn't help */
  padding-top: 60px;
  min-height: 650px;
}

.about-third-text h3 {
  font-size: 30px;
  margin-bottom: 10px;
  
}

.about-third-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #eaeaea;
}

.about-third-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-third-image img {
  width: 150%;
  max-width: 600px;
  border-radius: 2px;
  object-fit: cover;
  padding-right: 5px;
}
@media (max-width: 768px) {
  .about-third-content {
    flex-direction: column;
    padding: 40px 10px;
  }

  .about-third-text {
    border-left: none;
    padding-left: 0px;
    border-top: 2px solid #fff;
    padding-top: 30px;
    text-align: left;
  }

  .about-third-text h3 {
    font-size: 24px;
  }

  .about-third-text p {
    font-size: 16px;
  }
  .about-third-image img {
    max-width: 100%;
  }
}
/* Common Section Styling */
.split-section {
  display: flex;
  width: 100%;
  min-height: 300px;
  height: auto;
  background-color: black;
}

.split-left,
.split-right {
  flex: 1;
  height: 90%;
  display: flex;
  align-items: left;
  justify-content: left;
}


.beyond-text {
  flex: 1;
  background-color: #f9182a;
  color: white;
  padding: 105px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.beyond-text h2 {
  font-size: 48px;

  margin-bottom: 5px;
}

.beyond-text p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 500px;
}

.btn-black {
  background-color: black;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  font-weight: bold;
  font-size: 16px;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.btn-black:hover {
  background-color: #222;
}

.beyond-image {
  flex: 1;
  height: 100%;
}

.beyond-image img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

/* Fifth Fold */
.fifth-fold {
  color-scheme: split-section;
}

.fifth-image {
  flex: 1;
  height: 190%;
}

.fifth-image img {
  width: 100%;
  height: 190%;
  object-fit: cover;
}

.fifth-text {
  flex: 1;
  color: white;
  background-color: black;
  padding: 70px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  font-size: 29px;
  line-height: 1.7;
}
.fifth-text p {
  font-size: 22px;
  
  line-height: 1.7;

}

/* Responsive Styling */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }

  .beyond-text,
  .beyond-image,
  .fifth-image,
  .fifth-text {
    width: 100%;
    height: auto;
  }

  .beyond-text,
  .fifth-text {
    padding: 50px 30px;
    text-align: left;
    align-items: left;
  }

  .beyond-text h2 {
    font-size: 36px;
  }

  .beyond-text p,
  .fifth-text {
    font-size: 18px;
  }
  .fifth-text p {
    font-size: 16px;
  }
}

/* Mobile Styles - Max Width 480px */
@media (max-width: 480px) {
  /* Hero Section */
  .hero {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
  }
  
  /* Video Container */
  .video-container {
    height: 60vh;
  }
  
  .video-container video {
    min-height: 100%;
  }
  
  /* Data Strategy Section */
  .data-strategy {
    padding: 40px 20px;
  }
  
  .data-strategy .content {
    flex-direction: column;
    gap: 30px;
  }
  
  .data-strategy .text {
    text-align: center;
  }
  
  .data-strategy .text h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .data-strategy .text p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .data-strategy .btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
  }
  
  .data-strategy .image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Services Section */
  .services {
    padding: 40px 20px;
  }
  
  .services h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Carousel */
  .carousel-wrapper {
    padding: 0 10px;
  }
  
  .card-container {
    gap: 15px;
  }
  
  .card {
    min-width: 280px;
    padding: 20px;
  }
  
  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .card ul {
    font-size: 14px;
  }
  
  .card ul li {
    margin-bottom: 8px;
  }
  
  .btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 40px 20px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .form-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .form-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .form-control {
    padding: 12px;
    font-size: 16px;
  }
  
  .btn.btn-primary {
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
  }
  
  /* Arrow Navigation */
  .arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  /* Button Container */
  .btn-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* Mobile responsive styles for data-content */
@media (max-width: 760px) {
  .data-content {
    flex-direction: column !important;    /* stack vertically */
    align-items: center !important;       /* center align */
  }
  .data-content > div {
    width: 100% !important;               /* full width for both text & image */
  }
  .data-content > div:last-child {
    display: flex !important;
    justify-content: center !important;   /* center the image */
  }
  .data-content img {
    margin-top: 1rem;
  }
}
