* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
  font-family: "Roboto Flex", sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* ===== NAVBAR MAIN WRAPPER ===== */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 233px;
  padding: 20px 0;
}

/* ===== LOGO ===== */
.logo {
  width: 120px;
  cursor: pointer;
}
/* ===== NAVIGATION MENU ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 18px;
  font-weight: 500;
}

/* ===== BUTTON ===== */
.button {
  padding: 18px 40px 18px 40px;
  border-radius: 16px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  font-style: poppins;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.connect-btn:hover {
  opacity: 0.8;
}
.hamburger {
  height: 20px;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  border: 2px solid black;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
}
.active-nav {
  display: none;
}
.mobile-nav {
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ellipse {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(120px);
  z-index: -1;
}

.left {
  background: #bcd3ff;
  top: 20%;
  left: -10%;
  border-radius: 50%;
}

.right {
  background: #ffe3b0;
  top: 10%;
  right: -10%;
  border-radius: 50%;
}

/* ------- HERO SECTION -------- */
.hero {
  margin-top: 120px;
  text-align: center;
  padding-bottom: 180px;
}

.brand-title {
  font-size: 34px;
  font-weight: 500;
  font-family: "Roboto flex", sans-serif;
  font-style: normal;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.48px;
  color: #0057ff;
  margin-bottom: 5px;
}

.main-heading {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.48px;
  color: #000;
  margin-top: 5px;
}

.sub-text {
  margin-top: 5px;
  color: #4b4b4b;
  font-size: 15px;
}

.connect-cta {
  width: 176px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  background: #1d4ed8;
  border-radius: 20px;
  padding: 10px 25px;
  color: white;
  border: none;
  font-weight: 500;
  transition: 0.3s;
  align-self: center;
  display: flex;
}

.connect-cta:hover {
  background: #053cc3;
  transform: translateY(-2px);
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
  text-align: center;
  padding: 100px 112px;
  font-family: "Roboto Flex", sans-serif;
  padding-top: 80px;
}

/* Tag Button */
.tag {
  display: inline-block;
  background: #f3f4f6;
  padding: 6px 18px;
  border-radius: 15px;
  font-size: 14px;
  margin-bottom: 20px;
}
.tag span {
  color: #005cff;
  font-weight: 600;
}

/* Section Heading */
.products-heading {
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
  max-width: 820px;
  margin: 0 auto 50px;
}

/* Cards Layout */
.products-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/* Single Card */
.product-card {
  width: 390px;
  height: 449px;
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.product-card-style {
  height: 296px;
  width: 344px;
}
/* Logos Centered */
.product-logo {
  height: 109px;
  width: 193px;
  display: block;
  margin: 0 auto 20px;
}

/* Text */
.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-text {
  font-size: 16px;
  line-height: 28px;
  max-width: 320px;
  color: #5a5a5a;
  font-family: "Roboto flex", sans-serif;
  font-style: normal;
}

.main-wrapper {
  background: #0159ff;
  color: white;
  padding: 64px 122px 64px 122px;
  border-radius: 22px;
  width: 85%;
  margin: 40px auto;
  text-align: center;
}

/* TOP TAG */
.chip {
  display: inline-block;
  background: white;
  color: #606060;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* HEADINGS */
.title {
  font-size: 48px;
  margin: 14px 0 4px;
  font-weight: 400;
  font-style: regular;
}

.subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* MAIN BLUE SECTION */
.expertise-container {
  background-color: #0a44e6;
  border-radius: 22px;
  margin: 64px 38px;
  padding-bottom: 64px;
}

/* HEADER SECTION */
.expertise-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  text-align: center;
}

.expertise-pill {
  height: 34px;
  width: 82px;
  background: #fff;
  color: #606060;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 90px;
  margin: auto;
}

.expertise-title {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  margin: 10px 0;
}

.expertise-subtitle {
  color: #fff;
  margin-bottom: 20px;
}

/* ROWS */
.expertise-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.second-row {
  margin-top: 8px;
}

/* CARD BASE DESIGN */
.card {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* CARD SIZES */
.card-large-left {
  height: 304px;
  width: 584px;
  border-radius: 48px 12px 12px 12px;
}

.card-large-right {
  height: 304px;
  width: 584px;
  border-radius: 12px 48px 12px 12px;
}

.card-small-left {
  height: 352px;
  width: 387px;
  border-radius: 12px 12px 12px 48px;
}

.card-small-mid {
  height: 352px;
  width: 386px;
  border-radius: 12px;
}

.card-small-right {
  height: 352px;
  width: 387px;
  border-radius: 12px 12px 48px 12px;
}

/* IMAGE WRAPPER */
.card-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGES */
.card-img-1 {
  height: 274px;
  width: 307px;
  object-fit: cover;
}

.card-img-2 {
  height: 170px;
  width: 493px;
  object-fit: contain;
}

.card-img-3 {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card-img-4 {
  height: 336px;
  width: 336px;
  object-fit: cover;
}

.card-img-5 {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

/* CARD CONTENT */
.card-content {
  position: absolute;
  bottom: 10px;
  padding: 0 80px;
  z-index: 1;
  text-align: center;
}

.card-title {
  color: #000;
}

.card-desc {
  color: #6b7280;
}

/* GRADIENT OVERLAY */
.card-gradient {
  height: 180px;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff00, #f7f7f8);
  position: absolute;
  bottom: 0;
}

.mid-gradient {
  height: 196px !important;
}

/* ================= INDUSTRY SECTION ================= */
.title2 {
  font-size: 48px;
  margin: 28px 28px;
  font-weight: 500;
  font-family: "Roboto Flex", sans-serif;
  text-align: center;
  color: white;
}

.subtitle2 {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 35px;
  text-align: center;
  color: #e3e8ff;
}

.industry-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.industry-card {
  width: 280px;
  height: 284px;
  background: white;
  color: black;
  padding: 22px;
  border-radius: 14px;
  text-align: left;
}
.industry-card img {
  display: block;
  margin-bottom: 12px;
}

.industry-card h4 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}
.industry-card p {
  color: #a1a1a1;
}

/* Whole Section Background */
.connect-wrapper {
  background-color: #f6f6f6;
  border-radius: 22px;
  margin: 64px 38px;
  padding-bottom: 64px;
}

/* Inner Box */
.connect-container {
  width: 100%;
  max-width: 850px;
  border-radius: 25px;
  padding: 60px 50px;
  text-align: center;
  margin: auto;
}

.connect-badge {
  background: #eaeaea;
  color: #606060;

  display: inline-block;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* Main Heading */
.connect-title {
  font-size: 32px;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Input Styling */
.connect-form {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.input-field {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid rgb(210, 210, 210);
  font-size: 15px;
  outline: none;
  background: white;
}

/* 2 side-by-side inputs */
.row {
  display: flex;
  gap: 12px;
}

.half {
  width: 50%;
}

/* Message box */
.textarea {
  height: 110px;
  resize: none;
}

/* Submit Button */
.submit-btn {
  background: #0057ff;
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px 28px;
  border-radius: 50px;
  align-self: flex-end;
  cursor: pointer;
  float: right;
}

.submit-btn:hover {
  background: #0040c9;
}
.submit-area {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 16px;
  position: relative;
}
.alert {
  display: none;
  font-size: 14px;
  color: white;
  margin-top: 10px;
  background-color: green;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
}

.footer-row {
  background-color: #0a44e6;
  padding: 64px 132px;
  color: white;
  display: flex;
  justify-content: space-between;
}
.footer-contact-text {
  padding-bottom: 80px;
}
/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* Tablets and smaller desktops (1024px and below) */
@media (max-width: 1024px) {
  .navbar-container {
    gap: 100px;
    padding: 20px 30px;
  }

  .nav-links {
    gap: 30px;
    font-size: 16px;
  }

  .hero {
    margin-top: 80px;
    padding-bottom: 120px;
    padding: 0 30px 120px;
  }

  .brand-title,
  .main-heading {
    font-size: 42px;
    line-height: 50px;
  }

  .products-section {
    padding: 80px 50px;
  }

  .products-container {
    gap: 20px;
  }

  .product-card {
    width: 340px;
    height: auto;
  }

  .main-wrapper {
    padding: 50px 60px;
    width: 90%;
  }

  .expertise-row {
    padding: 0 30px;
  }

  .industry-card {
    width: 200px;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    display: none;
  }

  .connect-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .ellipse {
    width: 400px;
    height: 400px;
  }

  .hero {
    margin-top: 60px;
    padding: 0 20px 80px;
  }
  .expertise-container {
    background-color: #0a44e6;
    border-radius: 22px;
    margin: 10px;
    padding-bottom: 64px;
  }

  .brand-title,
  .main-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .sub-text {
    font-size: 14px;
    padding: 0 20px;
  }

  .products-section {
    padding: 60px 30px;
  }

  .products-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .products-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 100%;
    max-width: 400px;
  }

  .main-wrapper {
    padding: 40px 30px;
    width: 90%;
    margin: 30px auto;
  }

  .title {
    font-size: 28px;
  }

  .title2 {
    font-size: 24px;
  }

  .expertise-row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 20px;
  }

  .expertise-card {
    width: 100%;
    max-width: none;
    padding: 25px;
  }

  .expertise-card:nth-child(1),
  .expertise-card:nth-child(2) {
    grid-column: 1;
  }

  .expertise-card:nth-child(3),
  .expertise-card:nth-child(4),
  .expertise-card:nth-child(5) {
    grid-column: 1;
  }

  .expertise-card:nth-child(1),
  .expertise-card:nth-child(2),
  .expertise-card:nth-child(3),
  .expertise-card:nth-child(4),
  .expertise-card:nth-child(5) {
    border-radius: 18px !important;
  }

  .expertise-card h3 {
    font-size: 18px;
  }

  .industry-row {
    gap: 15px;
    margin: 0px 15px;
  }

  .industry-card {
    width: calc(50% - 10px);
    min-width: 150px;
  }

  .connect-wrapper {
    padding: 40px 20px;
  }

  .connect-container {
    padding: 40px 30px;
  }

  .connect-title {
    font-size: 26px;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  .half {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    float: none;
    font-size: 18px;
  }
  .hamburger {
    height: 45px;
    width: 45px;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    border: 2px solid black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .active-nav {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav.active-nav {
    display: flex;
  }
  .alert {
    display: none;
    font-size: 14px;
    color: white;
    margin-top: 60px;
    background-color: green;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
  }
  .content-area {
    padding: 20px;
    overflow-x: auto; /* enable horizontal scrolling if needed */
  }

  #dataTable {
    width: 100%;
    min-width: 650px; /* prevents breaking on small screens */
  }

  #dataTable th,
  #dataTable td {
    padding: 10px;
    font-size: 14px;
  }

  #dataTable th {
    white-space: nowrap; /* prevent header text from wrapping */
  }

  .table-cell {
    padding: 10px;
    font-size: 14px;
  }
  .login-box {
    width: 260px;
    padding: 35px;
    gap: 12px;
  }

  .login-box input {
    width: 180px;
    padding: 12px;
    height: 28px;
    font-size: 14px;
  }

  .login-box button {
    width: 90px;
    padding: 8px 10px;
    font-size: 14px;
  }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
  .logo {
    width: 100px;
  }

  .nav-links {
    font-size: 14px;
    gap: 12px;
  }

  .connect-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .ellipse {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }

  .hero {
    margin-top: 40px;
    padding: 0 15px 60px;
  }

  .brand-title,
  .main-heading {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -0.3px;
  }

  .sub-text {
    font-size: 13px;
  }

  .connect-cta {
    padding: 8px 20px;
    font-size: 14px;
  }

  .products-section {
    padding: 50px 20px;
  }

  .products-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .product-card {
    padding: 25px 20px;
  }

  .product-logo {
    height: 80px;
    width: auto;
  }

  .product-title {
    font-size: 16px;
  }

  .product-text {
    font-size: 14px;
    line-height: 24px;
  }

  .main-wrapper {
    padding: 30px 20px;
    width: 95%;
    border-radius: 16px;
  }

  .title {
    font-size: 24px;
  }

  .title2 {
    font-size: 20px;
  }

  .subtitle,
  .subtitle2 {
    font-size: 13px;
  }

  .expertise-card {
    width: 100%;
    padding: 20px;
    min-height: 180px;
  }

  .expertise-card h3 {
    font-size: 16px;
  }

  .expertise-card p {
    font-size: 13px;
  }

  .expertise-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .industry-card {
    width: 100%;
  }

  .industry-card h4 {
    font-size: 15px;
  }

  .connect-wrapper {
    padding: 30px 15px;
  }

  .connect-container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .connect-title {
    font-size: 22px;
  }

  .input-field {
    padding: 12px;
    font-size: 14px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
  .login-section {
    padding: 20px;
  }

  .login-box {
    width: 90%;
    padding: 30px 20px;
    border-radius: 15px;
  }

  .login-box input {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .login-box button {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .expertise-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .card {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .expertise-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 90%;
    height: auto;
    border-radius: 20px !important;
  }

  .card-img-wrapper img {
    width: 100%;
    height: auto;
  }

  .card-content {
    position: relative;
    padding: 20px 20px;
  }

  .card-gradient {
    display: none;
  }
}
@media (max-width: 480px) {
  .card {
    width: 100%;
    height: auto;
    border-radius: 16px !important;
  }

  .card-img-wrapper img {
    width: 100%;
    height: auto;
  }

  .card-content {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact-text {
    padding-bottom: 20px;
    padding-top: 10px;
  }
}

/* =============== LOGIN SECTION =================== */
.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #bcd3ff 0%, #ffe3b0 100%);
  min-height: 100vh;
}

.login-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 15px;
  background-color: white;
  border-radius: 20px;
  width: 300px;
}

.login-box input {
  padding: 15px 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  height: 30px;
  width: 200px;
}

.login-box button {
  padding: 10px 12px;
  background: #0a44e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100px;
}

.error {
  color: red;
  display: none;
}

/* =============== CONTACT TABLE SECTION =================== */
.content-area {
  padding: 40px;
  display: none;
}

#dataTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
}

#dataTable th {
  background: #0a44e6;
  color: white;
  padding: 12px 15px;
}

#dataTable tbody {
  background: #ffffff;
  font-size: 15px;
}

#dataTable td,
#dataTable th {
  border: 1px solid black;
  padding: 12px 15px;
}
/* Table row hover effect */
.table-row:hover {
  background-color: #f4f7ff;
}

/* Table cell styling */
.table-cell {
  padding: 12px 15px;
  border: 1px solid black;
}
