* {
    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-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: 1rem;
  color: #333;
}

.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%;
  }
}

/* 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;
}