/* Global Styles */
/* Import Graphik font */
@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-RegularItalic-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Medium-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-MediumItalic-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Bold-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-BoldItalic-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Light-Trial.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Semibold-Trial.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("Inter/static/Inter_18pt-SemiBold.ttf");
}
/* Reset default font for the entire website */
* {
  font-family: "Graphik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* ::-webkit-scrollbar {
  display: none;
}

:root {
  --primary-color: #003366;
  --secondary-color: #ff6600;
  --text-color: #333;
  --light-text: #666;
  --white: #fff;
  --light-bg: #f5f9ff;
  --border-color: #e0e0e0;
  --card-bg: #f8fbff;
}

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

body {
  font-family: "Graphik";
  font-style: normal;

  line-height: 1.6;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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


/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  color: #eeeeee;
  padding: 134px 0px;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 15px;
  margin: 30px 0px;
  font-size: 24px;
  line-height: 140%;
  font-weight: 500;
}

.breadcrumb-link {
  color: #f56300;
  text-decoration-line: underline;
  text-underline-offset: 25%;

  text-decoration-thickness: 10%;
  text-decoration-skip-ink: auto;
}

.breadcrumb #span-1 {
  color: #f56300;
}

.breadcrumb #span-2 {
  color: #c6edff;
  font-weight: 400;
}

.hero-content h1 {
  margin: 0 0 20px 0;
  width: auto;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  /* or 45px */

  color: #eeeeee;
}

.hero-content h1 span::after {
  content: "";
  display: block;
}

/* intro section*/
.intro {
 padding-top: 80px;
    padding-bottom: 80px;
}


.intro h3 {
  height: 35px;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.intro-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4px;

  height: 136px;
}

.intro-contents p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
}

.intro-contents h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
}

/* offices */
.offices {
  padding-top: 80px;
    padding-bottom: 80px;

  background: linear-gradient(180deg, #c6edff 0%, #ffffff 100%);
}

.offices .container {
  gap: 32px;
}

.offices-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4px;
  gap: 56px;

  height: 43px;
  color: #00293b;
}

.offices-heading h3 {
  height: 35px;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.offices-cards {
  gap: 24px;
  
}

.offices-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px;
  gap: 4px;
  height: 398px;
  z-index: 0; /* Keeps the background layer behind */
	margin-top: 22px;
}

/* Create a pseudo-element for the background image */
.offices-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url(contact_images/contact_office-1.jpg);
  background-size: cover;
  background-position: center;

  filter: grayscale(100%); /* Apply filter only to background */

  z-index: -1; /* Send it behind the content */
  border-radius: inherit; /* Inherits border-radius if needed */
}

.offices-card-content {
  z-index: 10; /* Ensure it's above the background */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 12px;
  gap: 8px;

  width: 400px;
  height: 184px;

  background-image: linear-gradient(180deg, #c6edff 0%, #ffffff 100%);
  border-radius: 0px 24px 0px 0px;
  color: #00293b;
}

.offices-card-content h3 {
  /* height: 96px; */

  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  /* or 133% */
}

.offices-card-content p {
  height: auto;

  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* or 150% */
}

.offices-card-content p span {
  font-weight: 500;
}

.offices-card-content p span::after {
  content: "";
  display: block;
}

#offices-card-2::before {
  background: url(contact_images/contact_office-2.jpg);
  background-size: cover;
  background-position: center;
}

#offices-card-3::before {
  background: url(contact_images/contact_office-3.jpg);
  background-size: cover;
  background-position: center;
}
#offices-card-4::before {
  background: url(contact_images/contact_office-4.jpg);
  background-size: cover;
  background-position: center;
}

.registered-address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4px;
  gap: 56px;
  margin-top:22px;

  height: 34px;
}

.registered-address p {
  height: 26px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #00293b;
}

.registered-address p span {
  font-weight: 500;
}

/* connect-with-us */
.connect-with-us {
 padding-top: 80px;
    padding-bottom: 80px;
  background: #ffffff;
}

.connect-with-us .container {
  gap: 100px;
}

.connect-colomn-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 23px;
  color: #00293b;
}

.connect-colomn-1 .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;

  width: 100%;
  height: 43px;
}

.connect-colomn-1 .heading h3 {
  height: 35px;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
}


.connect-colomn-1 .content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
}

.connect-colomn-1 .content p span {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 0%;
  text-decoration-thickness: 0%;
  color: #0066cc;
}
.connect-colomn-1 .content p span::after {
  content: "";
  display: block;
}

.connect-colomn-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 23px;
  margin-top:-6px;
  height: auto;
  color: #00293b;
}

.connect-colomn-2 .heading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.connect-colomn-2 .heading h3 {
  height: 40px;
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0%;
}

#connect-heading-tab{
display: none;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  gap: 16px;
}
.contact-form-field label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form-field input,
select {
  height: auto;
  min-height: auto;
  padding: 9px 16px;
  background: #e6f5fc;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
}

.send-button{
  display: block;
    width: 100%;
    border: none;
    background-color: #00293b;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border-radius: 0px;
}

@media only screen and (min-width: 1750px) {
    .hero {
    padding: 230px 0px;
}
}
