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

@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;
    }
.about-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('../img/Contact\ us\ banner\ \(1\).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: 25px;
  font-style: normal;
  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;
  }
}/* General Section Styling */
.contact-section {
  background-color: #f5f6fa;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Connect Section Styling */
.connect-section {
  background-color: #f5f6fa;
  padding: 80px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

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

.connect-header {
  text-align: left;
  margin-bottom: 60px;
  padding: 20px 0;
}

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

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

.form-box {
  background-color: #111;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  padding: 60px 50px;
  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-section {
    padding: 60px 15px;
  }
  
  .connect-container {
    padding: 0 20px;
  }
  
  .connect-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 15px 0;
  }

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

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

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

  .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%;
  }
}

/* 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;
  }
}

/* Fold 3 linkedin */
.linkedin-section {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 170px  40px;
  transition: background 0.3s ease;
}

.linkedin-section:hover {
  background-color: #111;
}

.linkedin-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-start;
  text-align: left;
  flex-wrap: wrap;
}

.linkedin-container i {
  font-size: 75px;
  border: 4px solid #fff;
  border-radius: 10px;
  padding: 12px 16px;
}

.linkedin-text h2 {
  font-size: 75px;
  margin: 0;
  font-weight: 500;
}

.linkedin-text p {
  font-size: 25px;
  text-align: left;
  font-weight: 100;
  margin-top: 5px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .linkedin-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .linkedin-text h2 {
    font-size: 32px;
  }

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

  .linkedin-container i {
    font-size: 48px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .linkedin-text h2 {
    font-size: 28px;
  }

  .linkedin-text p {
    font-size: 15px;
  }

  .linkedin-container {
    gap: 20px;
  }

  .linkedin-section {
    padding: 40px 20px;
  }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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