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

@font-face {
            font-family: "TT Interphases";
            src: url("./TT\ Interphases\ Pro\ Trial\ Regular.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;
    }


.dropdown:hover .dropdown-toggle .fa-chevron-down,
.dropdown-menu.show ~ .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

.data-strategy {
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.data-strategy .content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px; 
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.data-strategy .text {
    flex: 1;
    min-width: 400px;
}

.data-strategy .text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    
    color: #222;
}

.data-strategy .text p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.data-strategy .btn {
    display: inline-block;
    padding: 5px 5px;
    border: 2px solid #222;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.data-strategy .btn:hover {
    background-color: #f4f4f4;
}

.data-strategy .image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.data-strategy .image img {
    width: 80%;
    max-width: 450px;
    border-radius: 15px;
    padding: 70 5px;
}
.financial-data-section {
  padding: 30px 70px;
  background-color: white;
  font-family: Arial, sans-serif;
}

.financial-heading h2 {
  font-size: 38px;
  margin-bottom: 12px;
  color: #111;
}

.financial-heading p {
  font-size: 26px;
  color: #333;
  max-width: 1900px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.financial-content-box {
  background-color: #f4f5f7;
  padding: 50px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  flex-wrap: wrap;
}

.financial-text {
  flex: 1;
  min-width: 300px;
}

.financial-text h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.financial-text p {
  font-size: 19px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

.financial-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.financial-text ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: bold;
  color: black;
  border: 2px solid black;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: black;
  color: white;
}

.financial-image {
  flex: 1;
  min-width: 300px;
}

.financial-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .financial-data-section {
    padding: 50px 20px;
  }

  .financial-heading h2 {
    font-size: 28px;
    text-align: left;
  }

  .financial-heading p {
    font-size: 18px;
    text-align: left;
  }

  .financial-content-box {
    flex-direction: column;
    padding: 30px 20px;
  }

  .financial-text,
  .financial-image {
    width: 80%;
    text-align: left;

  }
  .financial-text h3 {
    font-size: 20px;
  }
  .financial-text p,
  .financial-text ul li {
    font-size: 15px;
  }

  .financial-text ul {
    padding-left: 15px;
    text-align: left;
  }
}

.contact-section {
  background: url("../img/cu.jpg") no-repeat center center/cover;
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-track {
  display: flex;
  gap: 40px; 
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.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%;
  }
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 90%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); 
}

.hero {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 80px;
    max-width: 900px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.responsive-video {
    width: 80%; 
    height: auto; 
    max-width: 600px; 
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 27px;
    margin-bottom: 50px;
}

.cta-button {
    background-color: #e63946;
    color: #ffffff;
    padding: 17px 37px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
}

.cta-button:hover {
    background-color: #f1273b;
}

/* Data Strategy */
.data-strategy {
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.data-strategy .content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px; 
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.data-strategy .text {
    flex: 1;
    min-width: 600px;
}

.data-strategy .text h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-style: normal;
    color: #111111;
}

.data-strategy .text p {
    font-size: 20px;
    line-height: 1.6;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.data-strategy .btn {
    display: inline-block;
    padding: 5px 5px;
    border: 2px solid #222;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.data-strategy .btn:hover {
    background-color: #f4f4f4;
}

.data-strategy .image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 700px;
    min-height: 650px;
}

.data-strategy .image img {
    width: 80%;
    max-width: 450px;
    border-radius: 22px;
    padding: 70 5px;
}

  @media (max-width: 768px) {
  .video-container {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 90%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); 
}

.hero {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 80px;
    max-width: 350px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.responsive-video {
    width: 80%; 
    height: 50%; 
    max-width: 600px; 
}

.hero h2 {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 20px;    
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-button {
    background-color: #e63946;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
}

.cta-button:hover {
    background-color: #f22136;
}

  .data-strategy {
    height: auto;
    padding: 60px 20px;
  }

  .data-strategy .content {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .data-strategy .text,
  .data-strategy .image {
    min-width: unset;
    width: 100%;
    text-align: left;
  }

  .data-strategy .image {
    justify-content:center;
    width: 300px;
    min-height: 300px;

  }

  .data-strategy .text h2 {
    font-size: 28px;
  }

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

  .services {
    padding: 30px 5px;
    
  }

  .card-container {
    flex-direction: column;
    gap: 20px;
    
  }

  .card {
    width: 90%;
    max-width: 90%;
  }

  .contact-section {
    height: auto;
    padding: 60px 20px;
  }

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