@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Lato:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");
@import url(bootstrap-grid.css);

/* Default css start */
*,
*::before,
*::after {
  box-sizing: border-box;
  position: relative;
}

*::before,
*::after {
  display: block;
}

:root {
  --font-family-poppins: "Poppins", sans-serif;
  --font-family-lato: "Lato", sans-serif;
}

html {
  font-family: var(--font-family-lato);
  line-height: 24px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #333;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.mt-2 {
  margin-top: 20px;
}

.mt-4 {
  margin-top: 40px;
}

@-ms-viewport {
  width: device-width;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

ul {
  list-style-type: none;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 16px;
}

ol li p,
ul li p {
  font-size: 18px;
  line-height: 27px;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

a:hover {
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  vertical-align: middle;
  border-style: none;
  width: auto;
  height: auto;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

label {
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

button {
  border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
  appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
  width: 100%;
  border: none;
}

textarea:focus-visible {
  border: none;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
  appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
  appearance: button;
}

[hidden] {
  display: none !important;
}

body ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  -webkit-appearance: none;
}

/* Track */
body ::-webkit-scrollbar-track {
  background: rgba(193, 193, 193, 1);
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

/* Handle */
body ::-webkit-scrollbar-thumb {
  background: #003366;
  -webkit-border-radius: 1px;
  border-radius: 0px;
}

*::-moz-selection {
  background: #003366;
  color: #fff;
  text-shadow: none;
}

*::selection {
  background: #003366;
  color: #fff;
  text-shadow: none;
}

::-webkit-input-placeholder {
  color: #333;
}

::-moz-placeholder {
  color: #333;
}

:-ms-input-placeholder {
  color: #333;
}

:-moz-placeholder {
  color: #333;
}

[type="search"]::-webkit-input-placeholder {
  font-family: var(--font-family-roboto);
}

[type="search"]::-moz-placeholder {
  font-family: var(--font-family-roboto);
}

[type="search"]:-ms-input-placeholder {
  font-family: var(--font-family-roboto);
}

[type="search"]:-moz-placeholder {
  font-family: var(--font-family-roboto);
}

/* Default css end */

/* Heading css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #0e3256;
}

h1 {
  font-size: 44px;
  line-height: 48px;
  font-weight: 700;
}

h2 {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

h6 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.section-padding {
  padding: 60px 0;
}

.gray-bg {
  background-color: #f8f8f8;
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  h5 {
    font-size: 17px;
    line-height: 26px;
  }

  h6 {
    font-size: 15px;
    line-height: 24px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .gray-bg {
    background-color: #f8f8f8;
  }
}

@media only screen and (min-width: 992px) {
  h1 {
    font-size: 48px;
    line-height: 60px;
  }

  h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  h3 {
    font-size: 32px;
    line-height: 40px;
  }

  h4 {
    font-size: 20px;
    line-height: 24px;
  }

  h5 {
    font-size: 18px;
    line-height: 28px;
  }

  h6 {
    font-size: 16px;
    line-height: 26px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .gray-bg {
    background-color: #f8f8f8;
  }
}

@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 50px;
    line-height: 72px;
    font-family: var(--font-family-lato);
  }

  h2 {
    font-size: 44px;
    line-height: 1.2;
    font-family: var(--font-family-lato);
    font-weight: 800;
  }

  h5 {
    font-size: 20px;
    line-height: 30px;
  }

  h6 {
    font-size: 18px;
    line-height: 28px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .gray-bg {
    background-color: #f8f8f8;
  }
}

/* Heading css end */

/* Paragraph css start */
p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 0;
  color: #333333;
  font-family: var(--font-family-lato);
}

p strong {
  font-weight: 700;
}

/* Paragraph css end */

/* Section heading css start */
.section-heading {
  padding: 10px 0 10px;
}

.section-heading h3 {
  font-weight: 300;
  color: #59697d;
  margin: 0;
  letter-spacing: -0.72px;
}

@media only screen and (min-width: 992px) {
  .section-heading {
    padding: 0px 0 40px;
  }
}

/* Section heading css end */

/* Container and Layout */
.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  margin: 0;
  position: relative;
}

.logo img {
  width: auto;
  height: 60px;
  max-width: 100%;
}

.menu-toggle {
  display: block;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #0e3256;
  cursor: pointer;
  padding: 5px;
  margin-right: 0;
  line-height: 1;
}

.main-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.main-nav.active {
  left: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 10px;
}

.offcanvas-header .logo img {
  height: 60px;
  width: auto;
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  padding: 0;
  color: #0e3256;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main-nav ul li {
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
}

.main-nav ul li a {
  text-decoration: none;
  color: #0e3256;
  font-weight: 500;
  padding: 16px 0;
  font-size: 18px;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.main-nav ul li a:hover {
  color: #1a4d8a;
}

.nav-arrow {
  font-size: 16px;
  color: #0e3256;
}

.home-icon {
  display: block;
}

.nav-text {
  display: inline;
}

/* Mobile Texts & Elements */
.desktop-text {
  display: none;
}

.mobile-text {
  display: inline;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 60px;
  min-height: calc(80vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Remove overflow-hidden to prevent clipping bottom rounded corners during reveal transition */
  overflow: visible;
  gap: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-image img {
  border-radius: 0px 0px 80px 80px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(14 50 86 / 28%);
  border-radius: 0px 0px 80px 80px;
}

.hero-content-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 0px;
  text-align: center;
  flex: 1;
}

.hero-content .section-heading {
  padding-top: 0;
  padding-bottom: 24px;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-content .sub-title {
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-description {
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 100%;
  font-family: var(--font-family-lato);
}

.cta-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}

.btn {
  width: auto;
  padding: 18px 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--font-family-lato);
}

.btn-primary {
  background-color: #0e3256;
  color: white;
}

.btn-primary:hover {
  background-color: #1a4d8a;
  border: 1px solid #1b4d8a;
}

.btn-secondary {
  background-color: #fff;
  color: #0e3256;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #0e3256;
  color: #fff;
  border: 1px solid #0e3256;
}

.btn-secondary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn-primary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0e3256;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tablet Styles */
@media only screen and (min-width: 768px) {
  .desktop-text {
    display: inline;
  }

  .mobile-text {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .container {
    padding: 0 40px;
  }

  .header-content {
    padding: 20px 20px;
    width: 100%;
  }

  .logo img {
    width: auto;
    height: 50px;
    max-width: 180px;
  }

  .main-nav {
    display: block;
    width: auto;
    position: static;
    height: auto;
    background-color: transparent;
    z-index: auto;
    transition: none;
    padding: 0;
    box-shadow: none;
    overflow-y: visible;
    max-width: none;
  }

  .offcanvas-header {
    display: none;
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
  }

  .main-nav ul li {
    width: auto;
    border-bottom: none;
  }

  .main-nav ul li:first-child {
    border-top: none;
  }

  .main-nav ul li a {
    padding: 8px 12px;
    font-size: 16px;
    color: #333;
    display: inline-block;
    width: auto;
  }

  .main-nav ul li a:hover {
    color: #0e3256;
  }

  .nav-arrow {
    display: none;
  }

  .home-icon {
    display: inline;
  }

  .main-nav ul li a[href="#home"] .nav-text {
    display: none;
  }

  .hero-section {
    padding: 40px 0;
    min-height: auto;
    flex-direction: row;
    overflow: visible;
    justify-content: center;
  }

  .hero-image {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    height: 100vh;
    z-index: 1;
  }

  .hero-image img {
    border-radius: 0px 0px 0px 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .hero-image::after {
    display: none;
  }

  .hero-content-wrapper {
    width: 60%;
  }

  .hero-content {
    padding-left: 0px;
    text-align: left;
  }

  .hero-content .section-heading {
    padding: 56px 0 40px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hero-content .section-heading::before {
    display: none;
  }

  .hero-content h1 {
    color: #0e3256;
  }

  .hero-content .sub-title {
    color: #1a1a1a;
    margin: 8px 0 24px 0;
  }

  .hero-description {
    color: #1a1a1a;
    margin-bottom: 40px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 40px;
  }

  .btn {
    width: auto;
    min-width: auto;
  }

  .btn-secondary {
    background-color: #fff;
    color: #0e3256;
    border: 1px solid #0e3256;
  }

  .btn-secondary:hover {
    background-color: #0e3256;
    color: white;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sub-title {
    line-height: 38px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* Desktop Styles */
@media only screen and (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }

  .main-nav ul {
    gap: 5px;
  }

  .header-content {
    padding: 20px 60px;
  }

  .hero-section {
    padding: 60px 0;
    flex-direction: column;
    height: 485px;
  }

  .hero-content-wrapper {
    width: 60%;
  }

  .hero-image {
    width: 40%;
  }

  .hero-content .sub-title {
    line-height: 44px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .stat-item {
    padding: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 15px;
  }

  .btn {
    width: auto;
    min-width: auto;
    padding: 20px 30px;
    text-decoration: none;
  }
}

/* Large Desktop Styles */
@media only screen and (min-width: 1200px) {
  .header-content {
    padding: 20px 60px;
    width: 60%;
  }

  .hero-content {
    padding-left: 60px;
  }

  .main-nav ul {
    gap: 5px;
  }

  .hero-content-wrapper {
    width: 60%;
  }

  .hero-content .section-heading {
    padding: 0px;
  }

  .hero-content h1 {
    color: #0e3256;
    font-family: var(--font-family-poppins);
  }

  .hero-image {
    width: 40%;
    top: -105px;
    right: 0;
    position: absolute;
    height: auto;
  }

  .hero-content .sub-title {
    line-height: 48px;
    font-weight: 300;
    font-family: var(--font-family-poppins);
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-label {
    font-size: 16px;
  }
}

/* What We Do Section - Mobile First */
.what-we-do-section {
  background-color: #ffffff;
  padding-top: 10px;
}

.what-we-do-content {
  text-align: center;
}

/* Mobile Base (Under 481px) */
.categories-grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
}

/* Hide scrollbar Chrome/Safari */
.categories-grid::-webkit-scrollbar {
  display: none;
}

.category-item {
  text-align: center;
  flex: 0 0 calc((100% - 50px) / 3);
  /* Exactly 3 items in view (2 x 25px gap = 50px) */
}

.category-item p,
.category-item h3 {
  font-weight: bolder;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.2;
  font-size: 11px;
}

.category-number {
  font-weight: 700;
  color: #333333;
  line-height: 1;
  display: block;
  font-size: 35px;
}

/* Tablet Styles */
@media only screen and (min-width: 481px) {
  .categories-grid {
    gap: 35px;
  }

  .category-item {
    flex: 0 0 auto;
    /* Restore auto sizing for larger screens */
  }

  .category-item p,
  .category-item h3 {
    font-size: 14px;
  }

  .category-number {
    font-size: 24px;
  }
}

/* Desktop Styles */
@media only screen and (min-width: 769px) {
  .categories-grid {
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-y: hidden;
    gap: 38px;
  }

  .category-item p,
  .category-item h3 {
    font-size: unset;
    /* Restores desktop default */
  }

  .category-number {
    font-size: 38px;
    font-weight: 800;
    /* Restores desktop default */
  }
}

/* Large Desktop Styles */
@media only screen and (min-width: 1200px) {
  .category-number {
    font-size: 36px;
  }

  .category-item p {
    font-weight: 700;
  }

  .categories-grid {
    padding-top: 0px;
  }

  .what-we-do-section {
    padding-top: 30px;
  }
}

/* Key Value Propositions Section - Mobile First */
.key-value-section {
  background-color: #ffffff;
  position: relative;
}

.key-value-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(./img/key-banner.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.key-value-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg,
      rgba(248, 248, 248, 0) -9.58%,
      rgba(248, 248, 248, 0.85) 0%);
  z-index: 1;
}

.key-value-content {
  position: relative;
  z-index: 2;
}

.key-value-heading {
  margin: 0 0 30px 0;
  text-align: center;
}

.key-value-propositions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  padding: 0px;
}

.proposition-item {
  margin-bottom: 0;
}

.proposition-item h3 {
  font-weight: 600;
  color: #0e3256;
  margin: 0 0 8px 0;
  line-height: 22px;
}

.proposition-item p {
  font-weight: 400;
  color: #333333;
  margin: 0;
}

.key-value-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.key-value-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Tablet Styles - 768px and up */
@media only screen and (min-width: 768px) {
  .key-value-section {
    padding: 60px 0;
  }

  .key-value-heading {
    margin-bottom: 35px;
  }

  .key-value-propositions {
    gap: 22px;
    max-width: 450px;
    padding: 0;
  }

  .proposition-item h3 {
    line-height: 24px;
  }

  .key-value-image {
    width: 250px;
    margin-top: 0;
  }
}

/* Desktop Styles - 1024px and up */
@media only screen and (min-width: 1024px) {
  .key-value-bg {
    background-size: contain;
    background-position: right;
  }

  .proposition-item h3 {
    font-size: 19px;
  }

  .key-value-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .key-value-propositions {
    gap: 24px;
    max-width: 500px;
  }

  .proposition-item h5 {
    font-family: var(--font-family-montserrat);
  }

  .key-value-image {
    width: 300px;
  }
}

/* Large Desktop Styles - 1200px and up */
@media only screen and (min-width: 1200px) {
  .key-value-propositions {
    max-width: 550px;
  }

  .key-value-image {
    width: 350px;
  }
}

/* About Preview Section - Mobile First */
.about-preview-section {
  padding-bottom: 140px;
  background-color: #f8f8f8;
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-text-content {
  text-align: left;
  max-width: 100%;
}

.about-text-content h2 {
  margin: 0 0 20px 0;
  text-align: left;
}

.about-text-content p {
  font-weight: 400;
  color: #333333;
  text-align: left;
}

.about-text-content p:last-of-type {
  margin-bottom: 30px;
}

.about-images {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 300px;
}

.image-back,
.image-front {
  position: absolute;
  width: 75%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.image-back {
  top: 0;
  left: 0;
  z-index: 1;
}

.image-front {
  top: 60px;
  right: 0;
  z-index: 2;
}

/* Tablet Styles - 768px and up */
@media only screen and (min-width: 768px) {
  .about-preview-section {
    padding: 80px 0;
  }

  .about-preview-content {
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
  }

  .about-text-content {
    width: 50%;
  }

  .about-text-content h2 {
    margin-bottom: 24px;
  }

  .about-text-content p:last-of-type {
    margin-bottom: 36px;
  }

  .about-images {
    width: 45%;
    max-width: none;
    margin: 0;
  }

  .image-stack {
    height: 350px;
  }

  .image-back {
    top: -60;
    left: 0;
    width: 80%;
  }

  .image-front {
    top: 50px;
    right: 0;
  }
}

/* Desktop Styles - 1024px and up */
@media only screen and (min-width: 1024px) {
  .about-preview-section {
    padding: 100px 0;
  }

  .about-text-content {
    text-align: left;
    flex: 1;
    max-width: 50%;
  }

  .about-preview-content {
    gap: 80px;
  }

  .about-text-content h2 {
    margin-bottom: 28px;
  }

  .about-text-content p:last-of-type {
    margin-bottom: 40px;
  }

  .image-stack {
    height: 400px;
  }

  .image-back {
    top: 0;
    left: 0;
  }

  .image-front {
    top: 40px;
    right: 0;
  }
}

/* Large Desktop Styles - 1200px and up */
@media only screen and (min-width: 1200px) {
  .about-preview-section {
    padding: 80px 0;
    padding-bottom: 60px;
    background-color: #fff;
  }

  .about-text-content h2 {
    margin-bottom: 20px;
  }

  .image-stack {
    height: 450px;
  }

  .image-back {
    top: 0px;
    left: 0;
    width: 400px;
    height: 350px;
  }

  .image-front {
    top: 80px;
    right: 0px;
    width: 350px;
    height: 350px;
  }
}

/* Service Overview Section - Mobile First */
.service-overview-section {
  padding-bottom: 80px;
  background-color: #ffffff;
}

.service-overview-content {
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 0px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 250px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.4),
      transparent);
}

.service-content h3 {
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 28px;
  flex: 1;
  text-align: left;
}

.service-arrow {
  color: #0e3256;
  transition: transform 0.3s ease;
  background-color: #a8e05f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-arrow {
  transform: translateX(4px);
}

.service-cta {
  margin-top: 20px;
  display: none;
}

/* Tablet Styles - 768px and up */
@media only screen and (min-width: 768px) {
  .service-overview-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  .service-card {
    height: 280px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    line-height: 24px;
  }

  .service-cta {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Desktop Styles - 1024px and up */
@media only screen and (min-width: 1024px) {
  .service-overview-content {
    text-align: start;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .service-overview-section {
    padding: 100px 0;
  }

  .services-grid {
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-card {
    height: 300px;
  }

  .service-content {
    padding: 28px;
  }

  .service-content h3 {
    line-height: 26px;
  }

  .service-cta {
    margin-top: 40px;
  }
}

/* Large Desktop Styles - 1200px and up */
@media only screen and (min-width: 1200px) {
  .service-overview-section {
    padding: 60px 0;
    background: linear-gradient(270deg,
        rgba(248, 248, 248, 0) -9.58%,
        rgba(248, 248, 248, 0.85) 0%);
  }

  .services-grid {
    gap: 20px;
    margin-bottom: 70px;
  }

  .service-card {
    height: 320px;
  }

  .service-content {
    padding: 32px;
  }

  .service-content h3 {
    line-height: 28px;
    font-size: 20px;
  }

  .service-cta {
    margin-top: 50px;
    display: block;
    text-align: center;
  }
}

/* Global Footprint Section - Mobile First */
.global-footprint-section {
  background-color: #ffffff;
  height: 720px;
}

#gbmap {
  height: auto;
  padding-bottom: 0;
}

.global-footprint-content {
  text-align: center;
}

.footprint-header {
  margin-bottom: 20px;
}

.footprint-header h2 {
  margin-bottom: 12px;
}

.footprint-header p {
  margin: 0 auto;
  max-width: 540px;
}

/* Map Container */
.world-map-container {
  isolation: isolate;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 20px;
  overflow: visible;
}

.world-map {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: #ffffff;
  overflow: visible;
  background-image: url("./img/flat_global_map.png");
  background-position: center 40%;
  background-size: contain;
  background-repeat: no-repeat;
}

.map-dots {
  display: none;
}

/* Location Pin – teardrop marker shape */
.location-pin {
  position: absolute;
  cursor: pointer;
  z-index: 100;
  /* No transform offset – top/left point to the centre-top of the pin
       where the round bubble sits. The pin tip naturally hangs below. */
}

.pin {
  width: 18px;
  height: 24px;
  background: linear-gradient(145deg, #38bdf8 0%, #0ea5e9 55%, #0284c7 100%);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow:
    0 3px 10px rgba(14, 165, 233, 0.45),
    0 1px 4px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: 2.5px solid #ffffff;
  position: relative;
}

/* white dot in the centre of the pin */
.pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50%;
  display: block;
}

.pin::before {
  display: none;
}

.location-pin:hover {
  z-index: 9999;
}

.location-pin:hover .pin {
  background: linear-gradient(145deg, #7dd3fc 0%, #38bdf8 55%, #0ea5e9 100%);
  transform: rotate(-45deg) scale(1.2);
  box-shadow: 0 5px 16px rgba(14, 165, 233, 0.65);
}

.location-pin.active {
  /* Same lift for the permanently-active pin (India by default) */
  z-index: 9999;
}

.location-pin.active .pin {
  background: linear-gradient(145deg, #93c5fd 0%, #3b82f6 55%, #1d4ed8 100%);
  box-shadow: 0 5px 16px rgba(59, 130, 246, 0.65);
  transform: rotate(-45deg) scale(1.18);
}

/* Animated pulse ring on active pin */
.location-pin.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.55);
  animation: pin-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pin-pulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Tooltip Card – opens to the right of the pin, matching Figma */
.pin-tooltip {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  transform: translateX(8px);
  transform-origin: left top;
  background-color: #253d5bad;
  text-align: start;
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 12px;
  min-width: 200px;
  max-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  z-index: 9999;
  pointer-events: none;
}

/* No arrow – matches Figma design (clean card, no triangle) */
.pin-tooltip::before,
.pin-tooltip::after {
  display: none;
}

.pin-tooltip h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 22px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.pin-tooltip p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
}

/* Show tooltip on hover OR .show class */
.location-pin:hover .pin-tooltip,
.pin-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ─── Tablet – 768 px and up ─── */
@media only screen and (min-width: 768px) {
  .footprint-header {
    margin-bottom: 28px;
  }

  .footprint-header h2 {
    /* font-size inherited from global h2 @media */
    margin-bottom: 14px;
  }

  .footprint-header p {
    max-width: 660px;
  }

  .world-map {
    height: 220px;
    background-size: cover;
  }

  .pin {
    width: 24px;
    height: 32px;
  }

  .pin::after {
    width: 6px;
    height: 6px;
  }

  .location-pin.active::before {
    width: 36px;
    height: 36px;
  }

  .pin-tooltip {
    min-width: 200px;
    max-width: 240px;
    padding: 18px 22px;
    left: calc(100% + 12px);
  }

  .pin-tooltip h4 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .pin-tooltip p {
    font-size: 13px;
    line-height: 20px;
  }
}

/* ─── Desktop – 1024 px and up ─── */
@media only screen and (min-width: 1024px) {
  .global-footprint-section {
    padding-bottom: 80px;
  }

  .footprint-header {
    margin-bottom: 36px;
  }

  .footprint-header h2 {
    /* font-size inherited global */
    margin-bottom: 16px;
  }

  .footprint-header p {
    max-width: 760px;
  }

  .world-map-container {
    max-width: 1100px;
    padding: 0 0 40px;
  }

  .world-map {
    height: 480px;
  }

  .pin {
    width: 26px;
    height: 34px;
  }

  .pin::after {
    width: 7px;
    height: 7px;
  }

  .location-pin.active::before {
    width: 42px;
    height: 42px;
  }

  .pin-tooltip {
    min-width: 220px;
    max-width: 260px;
    padding: 20px 26px;
    left: calc(100% + 14px);
  }

  .pin-tooltip h3 {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 10px;
    color: #fff;
  }

  .pin-tooltip p {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
  }
}

/* ─── Large Desktop – 1200 px and up ─── */
@media only screen and (min-width: 1200px) {
  .global-footprint-section {
    padding: 60px 0 260px;
    height: auto;
  }

  #gbmap .world-map-container {
    padding: 0px;
  }

  #gbmap {
    padding-bottom: 30px;
  }

  .footprint-header {
    margin-bottom: 44px;
  }

  .pin-tooltip h3 {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 10px;
    color: #fff;
  }

  .footprint-header h2 {
    /* font-size inherited global */
    margin-bottom: 18px;
  }

  .footprint-header p {
    max-width: 100%;
  }

  .world-map-container {
    max-width: 1200px;
    padding: 0 0 60px;
  }

  .world-map {
    height: 580px;
    background-size: contain;
  }

  .pin {
    width: 30px;
    height: 40px;
  }

  .pin::after {
    width: 8px;
    height: 8px;
  }

  .location-pin.active::before {
    width: 48px;
    height: 48px;
  }

  .pin-tooltip {
    min-width: 220px;
    max-width: 280px;
    padding: 15px;
    left: calc(100% + 16px);
    border-radius: 14px;
  }

  .pin-tooltip h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #fff;
  }

  .pin-tooltip p {
    font-size: 14px;
    line-height: 22px;
  }
}

.biography-section {
  padding-top: 0px;
}

/* Footer Section – Mobile First */
.footer-section {
  background-color: #dff0fb;
  padding: 40px 0 24px;
  border-radius: 50px 50px 0px 0px;
}

/* ── CTA Card ── */
.footer-cta-card {
  background-color: #0e2e5c;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 36px;
  margin-top: -300px;
}

.footer-cta-heading {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.footer-cta-heading strong {
  font-weight: 700;
  color: #ffffff;
}

.footer-cta-sub {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 28px;
  max-width: 480px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0e2e5c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.footer-cta-btn:hover {
  background-color: #e2edf8;
  color: #0e2e5c;
}

.footer-cta-arrow {
  font-size: 16px;
  line-height: 1;
}

/* ── Footer Nav Row ── */
.footer-nav-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #0e2e5c;
  letter-spacing: -0.5px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-nav ul li a:hover {
  color: #0e2e5c;
}

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background-color: rgba(14, 46, 92, 0.18);
  margin: 20px 0;
}

/* ── Bottom Bar ── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex-direction: column-reverse;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  margin: 0;
  line-height: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 6px;
}

.footer-legal a {
  text-decoration: none;
  color: #333333;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #0e2e5c;
}

.footer-legal-sep {
  color: #666666;
  font-size: 13px;
}

/* ── Social Icons ── */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #0e2e5c;
  color: #0e2e5c;
  font-size: 14px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.footer-social-icon:hover {
  background-color: #0e2e5c;
  color: #ffffff;
}

/* ── Tablet – 768px and up ── */
@media only screen and (min-width: 768px) {
  .footer-section {
    padding: 48px 0 28px;
  }

  .footer-cta-card {
    padding: 48px 40px;
  }

  .footer-cta-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .footer-cta-sub {
    font-size: 15px;
    line-height: 24px;
  }

  .footer-cta-btn {
    font-size: 15px;
    padding: 13px 32px;
  }

  .footer-nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .footer-nav ul {
    flex-wrap: nowrap;
    gap: 0 24px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 0;
  }
}

/* ── Desktop – 1024px and up ── */
@media only screen and (min-width: 1024px) {
  .footer-section {
    padding: 56px 0 32px;
  }

  .footer-cta-card {
    padding: 56px 64px;
    margin-bottom: 48px;
  }

  .footer-cta-heading {
    font-size: 32px;
    line-height: 44px;
  }

  .footer-cta-sub {
    font-size: 16px;
    line-height: 26px;
    max-width: 560px;
  }

  .footer-cta-btn {
    font-size: 15px;
    padding: 20px 30px;
  }

  .footer-nav ul {
    gap: 0 28px;
  }

  .footer-nav ul li a {
    font-size: 15px;
  }

  .footer-logo img {
    width: 70%;
  }

  .footer-logo-text {
    font-size: 22px;
  }

  .footer-social-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* ── Large Desktop – 1200px and up ── */
@media only screen and (min-width: 1200px) {
  .footer-section {
    padding: 60px 0 60px;
    border-radius: 100px 100px 0px 0px;
  }

  .footer-cta-card {
    padding: 64px 80px;
    border-radius: 24px;
    margin-top: -300px;
  }

  .footer-cta-heading {
    font-size: 36px;
    line-height: 48px;
  }

  .footer-cta-sub {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  .footer-nav ul {
    gap: 0 32px;
  }

  .footer-nav ul li a {
    font-size: 16px;
  }

  .footer-copyright {
    font-size: 14px;
  }

  .footer-legal a,
  .footer-legal-sep {
    font-size: 14px;
  }
}

/* Insights Preview Section */
.insights-preview-section {
  padding: 60px 0;
  padding-bottom: 80px;
  background-color: #f8f8f8;
}

.insights-header-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0px;
}

.insights-header-text {
  max-width: 800px;
}

.insights-header-text h2 {
  margin-bottom: 12px;
}

.insights-header-text p {
  margin: 0;
}

.insights-nav {
  display: flex;
  gap: 12px;
  justify-content: end;
  top: 6px;
  right: -16px;
  position: absolute;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0e3256;
  background-color: #fff;
}

.nav-btn:hover {
  background-color: #0e3256;
  color: #ffffff;
  border-color: #0e3256;
}

.insights-swiper {
  padding: 10px 0 40px;
}

.insight-card {
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 10px;
  text-align: left;
}

.explore-btn-wrapper {
  display: flex;
  justify-content: start;
  margin-top: 20px;
}

.explore-btn-wrapper a {
  text-decoration: none;
}

.explore-insight-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #0e3256;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.explore-insight-btn:hover {
  background-color: #1a4d8a;
  transform: translateY(-2px);
  color: #ffffff;
}

.explore-insight-btn i {
  font-size: 14px;
}

/* Tablet & Desktop Enhancements (Mobile-First) */
@media only screen and (min-width: 768px) {
  .insights-preview-section {
    padding: 80px 0;
  }

  .insights-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .explore-btn-wrapper {
    justify-content: center;
  }

  .insight-card h3 {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1024px) {
  .insights-preview-section {
    background-color: #fff;
  }

  .nav-btn {
    background-color: #f8f8f8;
  }

  .insights-header-row {
    margin-bottom: 40px;
  }

  .insights-nav {
    top: 20px;
  }

  .insights-header-row .section-heading {
    padding-bottom: 0;
  }

  .explore-btn-wrapper {
    justify-content: center;
  }
}

/* about us page style start */
/* what we do section */
.card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.service-card-about {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f8f8;
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.short-description {
  padding-top: 20px;
}

@media only screen and (min-width: 768px) {
  .card-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 1024px) {
  .about-what-we-do-section h2 {
    font-weight: 800;
  }

  .about-what-we-do-section p {
    margin: 0;
  }

  .about-what-we-do-section .section-heading {
    padding-bottom: 20px;
  }

  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card-about h3 {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 25px;
  }

  .service-card-about {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f8f8;
    padding: 15px 30px;
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .short-description {
    padding-top: 20px;
  }
}

/* our purpose */

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.purpose-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.purpose-card {
  height: 95px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}

.purpose-content {
  gap: 15px;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .purpose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .purpose-image img {
    height: 534px;
  }
}

@media only screen and (min-width: 1024px) {
  .our-purpose-section .section-heading {
    padding-bottom: 10px;
  }

  .purpose-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: 40px;
  }

  .purpose-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
  }

  .purpose-content {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .purpose-card {
    height: 95px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .purpose-card h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
  }
}

/* our principles */
.our-principles-section {
  background: #ffffff;
}

.principles-header {
  text-align: center;
  margin-bottom: 50px;
}

.principles-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.principles-subtitle {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.principles-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.principles-column {
  flex: 1;
}

.principles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.principle-item {
  margin-bottom: 30px;
  padding-left: 0;
}

.principle-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.principle-description {
  display: block;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  font-weight: 400;
}

.has-bold-dot {
  font-weight: 700;
  position: relative;
  padding-left: 30px;
}

.has-bold-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #2c3e50;
  border-radius: 50%;
}

.pl-25 {
  padding-left: 30px;
}

/* Tablet styles */
@media (min-width: 768px) {
  .principles-content {
    flex-direction: row;
    gap: 40px;
  }

  .principles-title {
    font-size: 36px;
  }

  .principles-subtitle {
    font-size: 20px;
  }

  .principle-title {
    font-size: 22px;
  }

  .principle-description {
    font-size: 17px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .principles-content {
    margin: 0;
  }

  .principles-title {
    font-size: 42px;
  }

  .principles-subtitle {
    font-size: 22px;
  }

  .principle-title {
    font-size: 24px;
  }

  .principle-description {
    font-size: 18px;
  }

  .principle-item {
    margin-bottom: 35px;
  }

  .has-bold-dot {
    font-weight: 700;
    position: relative;
    padding-left: 30px;
  }

  .has-bold-dot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #2c3e50;
    border-radius: 50%;
  }

  .pl-25 {
    padding-left: 30px;
  }
}

/* our vision */
.our-vision-section {
  padding: 0px 0;
}

.vision-card {
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.vision-content h2 {
  color: #0e3256;
  font-weight: 600;
  margin-bottom: 15px;
}

.vision-content p {
  margin: 0;
}

/* Tablet styles */
@media (min-width: 768px) {
  .vision-card {
    flex-direction: row;
    text-align: left;
    padding: 40px;
  }

  .vision-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .our-vision-section {
    padding: 0px 0;
  }

  .vision-card {
    padding: 50px;
    gap: 30px;
  }

  .vision-icon {
    width: 300px;
    height: 200px;
    font-size: 40px;
  }
}

/* =========================================
   CAREER JOURNEY SECTION
========================================= */

.career-journey-section {
  background-color: #fff;
  padding-top: 0px;
}

.career-journey-section .section-heading {
  text-align: left;
  margin-bottom: 34px;
}

/* =========================================
   TIMELINE
========================================= */

.career-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 34px;
  padding-bottom: 10px;
  gap: 16px;
}

/* Blue Horizontal Line */
.career-timeline::before {
  content: "";
  position: absolute;
  width: calc(100% - 45px);
  height: 2px;
  background-color: #0e4b8f;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Track */
.timeline-track {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* Each Item */
.timeline-item {
  position: relative;
  text-align: center;
}

/* Dot (default outlined) */
.timeline-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #0e4b8f;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #0e4b8e26;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Active dot */
.timeline-item.active::before {
  background-color: #ffffff;
  box-shadow: inset 0 0 0 5px #0e4b8e;
}

/* Vertical Line */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 34px;
  background-color: #0e4b8f;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Year Pill */
.timeline-year {
  margin-top: 56px;
  background-color: #ebebeb;
  color: #111827;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid transparent;
}

.biography-card {
  padding: 30px;
  border-radius: 12px;
}

.biography-content .section-heading {
  padding-bottom: 0;
}

/* =========================================
   TIMELINE ARROWS
========================================= */

.timeline-controls {
  display: flex;
  align-items: center;
  z-index: 3;
  position: inherit;
  top: -34px;
}

.timeline-arrow {
  width: 20px;
  height: 20px;
  background-color: #0e4b8f;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease;
  margin-top: 0;
}

.timeline-arrow:hover {
  opacity: 0.85;
}

.timeline-arrow.left-arrow::before,
.timeline-arrow.right-arrow::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.timeline-arrow.left-arrow::before {
  transform: rotate(-135deg);
  left: 8px;
  top: 6px;
}

.timeline-arrow.right-arrow::before {
  transform: rotate(45deg);
  left: 5px;
  top: 6px;
}

/* =========================================
   CAREER CARDS
========================================= */

.career-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.career-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 28px;
  text-align: left;
  border: 1px solid #d4d7dd;
  min-height: 210px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Mobile: show only currently selected card */
.career-cards .career-card {
  display: none;
}

.career-cards .career-card.is-active {
  display: block;
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(10, 24, 43, 0.08);
}

/* Icon */
.card-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Text */
.career-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: #0f3f79;
  line-height: 1.25;
  margin: 0;
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) {
  .career-journey-section {
    padding-top: 0px;
  }

  .career-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-cards .career-card {
    display: block;
  }
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 1024px) {
  .career-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }

  .career-card h3 {
    font-size: 17px;
  }
}

/* Credentials + Founder Section */

.credentials-intro {
  margin-bottom: 26px;
}

.credentials-intro h2 {
  margin-bottom: 12px;
}

.credentials-intro p {
  margin: 0;
  max-width: 1050px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  row-gap: 30px;
}

.credential-card {
  display: flex;
  flex-direction: column;
}

.credential-card a {
  text-decoration: none;
}

.credential-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #d9d9d9;
}

.credential-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.credential-card h3 {
  margin: 0;
  color: #111318;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}

.credentials-divider {
  margin: 44px 0 42px;
  border-top: 1px solid #e5e5e5;
}

.founder-message-section h2 {
  margin-bottom: 24px;
}

.founder-message-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.founder-photo {
  border-radius: 16px;
  overflow: hidden;
  background: #d7d7d7;
}

.founder-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-message-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 22px;
}

.founder-message-card h3 {
  margin: 0 0 6px;
  color: #0e3256;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}

.founder-message-card .founder-role {
  margin: 0 0 20px;
  color: #111318;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.founder-message-card p {
  margin: 0;
  color: #111318;
  font-weight: 400;
}

@media (min-width: 768px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .credential-image img {
    height: auto;
  }

  .credential-card h3 {
    font-size: 20px;
  }

  .founder-message-section h2 {
    margin-bottom: 28px;
  }

  .founder-message-card {
    padding: 34px 30px;
  }

  .founder-message-card .founder-role {
    margin-bottom: 28px;
  }

  .founder-message-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .credentials-intro {
    margin-bottom: 30px;
  }

  .credentials-intro h2 {
    margin-bottom: 14px;
  }

  .credentials-intro p {
    font-size: 16px;
    line-height: 1.35;
  }

  .credentials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    row-gap: 30px;
  }

  .credential-image img {
    height: auto;
  }

  .credentials-divider {
    margin: 60px 0 60px;
  }

  .founder-message-section h2 {
    margin-bottom: 36px;
  }

  .founder-message-grid {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
  }

  .founder-photo img {
    height: auto;
  }

  .founder-message-card {
    padding: 44px 48px;
    border-radius: 12px;
  }

  .founder-message-card .founder-role {
    margin-bottom: 36px;
  }
}

/* founder section */
.founder-message-section {
  padding-bottom: 0px;
}

/* Mission Vision Values Section */
.mission-vision-value-section {
  background-color: #fff;
  padding: 36px 0 56px;
}

.mvv-title {
  margin: 0 0 22px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.mvv-card {
  border-radius: 28px;
  padding: 24px 20px;
}

.mvv-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-family-lato);
  line-height: 1.1;
  font-weight: 800;
}

.mvv-card p {
  margin: 0 0 22px;
  font-weight: 400;
}

.mvv-card ul {
  margin: 0;
  padding-left: 0;
}

.mvv-card ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  color: #111318;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}

.mvv-card ul li:last-child {
  margin-bottom: 0;
}

.mvv-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #111318;
}

@media (min-width: 768px) {
  .mission-vision-value-section {
    padding: 48px 0 66px;
    padding-bottom: 0;
  }

  .mvv-title {
    margin-bottom: 26px;
  }

  .mvv-card {
    padding: 34px 30px;
  }

  .mvv-card h3 {
    margin-bottom: 20px;
  }

  .mvv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .mission-vision-value-section {
    padding: 60px 0 60px;
  }

  .mvv-title {
    margin-bottom: 34px;
  }

  .mvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .mvv-card {
    border-radius: 48px;
    padding: 52px 44px;
  }

  .mvv-card h3 {
    margin-bottom: 26px;
  }

  .mvv-card p {
    margin-bottom: 28px;
  }

  .mvv-card ul li {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 27px;
  }

  .mvv-card ul li::before {
    top: 7px;
    width: 8px;
    height: 8px;
  }
}

/* Brand Promise Section */
.brand-promise {
  background-color: #fff;
  padding: 0px 0 70px;
  margin-bottom: 260px;
}

.brand-promise-title {
  margin: 0 0 20px;
}

.brand-promise-text {
  margin: 0 0 28px;
}

.brand-promise-list {
  margin: 0;
  padding-left: 0;
}

.brand-promise-list li {
  margin-bottom: 14px;
  padding-left: 22px;
}

.brand-promise-list li:last-child {
  margin-bottom: 0;
}

.brand-promise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #111318;
}

@media (min-width: 768px) {
  .brand-promise {
    padding: 48px 0 58px;
  }

  .brand-promise-title {
    margin-bottom: 22px;
  }

  .brand-promise-text {
    margin-bottom: 34px;
  }

  .brand-promise-list li::before {
    top: 12px;
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 1024px) {
  .brand-promise {
    padding: 60px 0 60px;
    padding-top: 0px;
    margin-bottom: 260px;
  }

  .brand-promise-title {
    margin-bottom: 42px;
  }

  .brand-promise-text {
    max-width: 1520px;
    margin-bottom: 58px;
  }

  .brand-promise-list li {
    margin-bottom: 22px;
    padding-left: 26px;
  }

  .brand-promise-list li::before {
    top: 8px;
    width: 10px;
    height: 10px;
  }
}

/* service page css */

/* Program Management Section */
.program-management-section {
  margin-top: 70px;
}

.program-management-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.accordion-toggle {
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121417;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease;
}

.minus-icon,
.plus-icon {
  transition: opacity 0.3s ease;
  position: absolute;
}

.accordion-item.active .minus-icon {
  opacity: 1;
}

.accordion-item.active .plus-icon {
  opacity: 0;
}

.accordion-item:not(.active) .minus-icon {
  opacity: 0;
}

.accordion-item:not(.active) .plus-icon {
  opacity: 1;
}

.accordion-content {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 16px 16px 16px;
  max-height: 150px;
}

.accordion-header h3 {
  font-size: 19px;
  margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .program-management-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
    align-items: center;
  }

  .program-management-left {
    width: 43%;
    max-width: 500px;
  }

  .program-management-right {
    width: 57%;
  }
}

@media (min-width: 1200px) {
  .program-management-section {
    margin-top: 90px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .program-management-content {
    gap: 72px;
    align-items: start;
  }
}

@media only screen and (min-width: 768px) {
  .program-management-section {
    margin-top: 110px;
  }

  .program-management-content {
    gap: 34px;
  }

  .program-management-left .section-heading h2 {
    margin-bottom: 18px;
  }

  .program-management-description {
    margin-bottom: 26px;
  }

  .accordion-list {
    gap: 14px;
  }

  .accordion-header {
    padding: 16px;
  }

  .accordion-toggle {
    font-size: 26px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 20px 18px 20px;
    max-height: 140px;
  }
}

/* managment css  */
.managment-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.lastsec {
  margin-bottom: 250px;
}

.managment-content {
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.managment-btn {
  min-width: 248px;
  padding: 14px 28px;
  border: 1px solid #2b2e33;
  border-radius: 12px;
  color: #1a1c20;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
}

.managment-btn::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.managment-btn:hover {
  background: #0e3256;
  color: #ffffff;
  border-color: #0e3256;
}

.managment-right {
  width: 100%;
}

.managment-list {
  margin: 0;
  padding: 0;
}

.managment-list li {
  border-bottom: 1px solid #d2d2d2;
}

.managment-list li a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
  color: #0e3256;
  text-decoration: none;
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
}

.managment-list li:last-child {
  border-bottom: none;
}

.managment-list li a::before {
  content: "»";
  font-size: 42px;
  line-height: 1.1;
  color: #0e3256;
  top: -3px;
}

@media only screen and (min-width: 1200px) {
  .managment-section {
    margin-bottom: 60px;
  }

  .lastsec {
    margin-bottom: 320px;
  }

  .managment-content {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 72px;
  }

  .managment-left {
    width: 43%;
    max-width: 640px;
  }

  .managment-right {
    width: 57%;
  }
}

@media only screen and (min-width: 768px) {
  .managment-btn {
    min-width: 200px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .managment-list li a::before {
    font-size: 26px;
  }

  .managment-content {
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 44px;
  }
}

.experience-brought-into {
  margin-top: 90px;
  padding-bottom: 80px;
  margin-bottom: 320px;
}

@media only screen and (min-width: 768px) {
  .experience-brought-into {
    margin-top: 0px;
  }
}

@media only screen and (min-width: 1200px) {
  .experience-brought-into {
    margin-top: 90px;
  }
}

/* blog page css  */

/* Blog Listing Section */

.blog-listing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 16px;
  font-weight: 500;
  color: #838383;
  margin-bottom: 8px;
  font-family: var(--font-family-lato);
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--font-family-lato);
}

.blog-description {
  margin-bottom: 0;
  font-family: var(--font-family-lato);
  flex: 1;
}

.blog-card-content a {
  text-decoration: none;
}

.blog-listing-section {
  margin-bottom: 230px;
}

/* Tablet Styles */
@media only screen and (min-width: 768px) {
  .blog-listing-section {
    margin-bottom: 260px;
    margin-top: 120px;
  }

  .blog-listing-wrapper {
    gap: 32px;
  }

  .blog-card {
    flex-direction: row;
    height: 240px;
  }

  .blog-card-image {
    width: 320px;
    height: 100%;
    flex-shrink: 0;
  }

  .blog-card-content {
    padding: 32px;
  }

  .blog-title {
    font-size: 22px;
  }
}

/* Large Desktop Styles */
@media only screen and (min-width: 1200px) {
  .blog-listing-section {
    margin-top: 18px;
    margin-bottom: 260px;
  }

  .blog-card {
    height: 280px;
  }

  .blog-card-image {
    width: 420px;
  }

  .blog-card-content {
    padding: 0px 30px;
  }

  .blog-title {
    font-size: 26px;
  }
}

/* Blog Details Section - Mobile First */
.blog-details-section {
  padding: 40px 0;
  background-color: #fff;
  margin-bottom: 270px;
}

.blog-text {
  margin-bottom: 40px;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.blog-list li {
  font-size: 18px;
  font-weight: unset;
  line-height: 27px;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-family: var(--font-family-lato);
}

.author-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  flex-wrap: inherit;
  gap: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
  font-family: var(--font-family-lato);
}

.publish-date {
  color: #999999;
  font-size: 14px;
  margin: 0;
  font-family: var(--font-family-lato);
}

.follow-btn {
  background-color: #ffffff;
  color: #0e3256;
  border: 1px solid #ddd;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: var(--font-family-lato);
  display: flex;
  align-items: center;
  gap: 16px;
}

.follow-btn:hover {
  background-color: #0e3256;
  color: #fff;
}

.bold {
  font-weight: bold;
}

/* Tablet Styles */
@media only screen and (min-width: 768px) {
  .blog-details-section {
    padding: 60px 0;
    margin-top: 140px;
  }

  .blog-text p {
    margin-bottom: 24px;
  }

  .blog-text h2 {
    font-size: 28px;
    margin: 40px 0 24px 0;
  }

  .blog-list li {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .author-section {
    padding-top: 40px;
  }

  .author-avatar {
    width: 70px;
    height: 70px;
  }

  .author-name {
    font-size: 20px;
  }

  .publish-date {
    font-size: 16px;
  }

  .follow-btn {
    padding: 14px 28px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

/* Large Desktop Styles */
@media only screen and (min-width: 1200px) {
  .blog-details-section {
    padding: 80px 0;
    margin-bottom: 240px;
  }

  .blog-text p {
    margin-bottom: 28px;
  }

  .blog-text h2 {
    font-size: 32px;
    margin: 50px 0 30px 0;
  }

  .blog-list li {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .author-section {
    padding-top: 50px;
  }

  .author-avatar {
    width: 80px;
    height: 80px;
  }

  .author-name {
    font-size: 22px;
  }

  .publish-date {
    font-size: 16px;
  }
}

/* Experience Details */
.experience-details {
  padding: 60px 0;
  margin-bottom: 240px;
}

/* Aviation Hero Section */
.aviation-hero {
  margin-bottom: 60px;
}

.aviation-hero-slider {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  padding-top: 70px;
}

.aviation-hero-slider .swiper-wrapper {
  align-items: center;
}

.hero-slide-image {
  width: 100%;
  height: clamp(320px, 48vw, 560px);
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.aviation-hero-slider .swiper-slide {
  flex-shrink: 0;
}

/* Custom Swiper Navigation Buttons */
.aviation-hero-slider .swiper-button-next.aviation-next,
.aviation-hero-slider .swiper-button-prev.aviation-prev {
  position: absolute;
  color: #0e3256 !important;
  background: transparent;
  width: 44px;
  height: 44px;
  margin-top: 0 !important;
  z-index: 10;
  top: 16px !important;
  bottom: auto !important;
  transform: none !important;
  border-radius: 0;
}

.aviation-hero-slider .swiper-button-next.aviation-next::after,
.aviation-hero-slider .swiper-button-prev.aviation-prev::after {
  font-size: 26px;
  font-weight: 600;
}

.aviation-hero-slider .swiper-button-next.aviation-next {
  right: 0px !important;
  left: auto !important;
}

.aviation-hero-slider .swiper-button-prev.aviation-prev {
  right: 50px !important;
  left: auto !important;
}

/* Section Title */
.section-title {
  text-align: left;
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 700;
  color: #0e3256;
  margin: 0;
}

/* Aviation Cards */
.aviation-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.aviation-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.card-content {
  padding: 30px 0px;
}

.card-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0e3256;
  margin: 0 0 15px 0;
}

.card-content p {
  margin: 0 0 20px 0;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #757575;
  font-size: 15px;
  font-weight: 500;
}

.card-location i {
  font-size: 12px;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .aviation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .experience-details {
    margin-top: 130px;
    margin-bottom: 230px;
  }

  .aviation-hero {
    padding-top: 0;
  }

  .aviation-hero-slider .swiper-button-next.aviation-next,
  .aviation-hero-slider .swiper-button-prev.aviation-prev {
    top: 12px !important;
    transform: none !important;
    color: #0e3256 !important;
    border-radius: 50%;
    width: 42px;
    height: 42px;
  }

  .aviation-hero-slider .swiper-button-prev.aviation-prev {
    right: 45px !important;
    left: auto !important;
  }

  .aviation-hero-slider .swiper-button-next.aviation-next {
    right: 0px !important;
    left: auto !important;
  }

  .aviation-hero-slider .swiper-button-next.aviation-next::after,
  .aviation-hero-slider .swiper-button-prev.aviation-prev::after {
    font-size: 16px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .experience-details {
    padding: 80px 0;
    margin-top: 0;
  }

  .aviation-hero {
    margin-bottom: 80px;
  }

  .aviation-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .card-content {
    padding: 20px 0px;
  }

  .card-content h3 {
    font-size: 26px;
  }
}

/* Large Desktop Styles */
@media only screen and (min-width: 1200px) {
  .aviation-hero-slider {
    max-width: 1280px;
    padding-top: 90px;
    overflow: hidden;
  }

  .hero-slide-image {
    height: 500px;
  }
}

/* event section  */

/* Event Section - Mobile First */
.event-section {
  margin-top: 30px;
  margin-bottom: 260px;
}

.event-btn {
  border-radius: 50px;
  padding: 14px 28px;
}

.event-hero-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.event-details-btn {
  background: #0e3256;
  padding: 14px 30px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #fff;
  text-decoration: none;
  width: 100%;
}

.event-hero-btn span {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 500;
  width: 100%;
}

.event-hero-btn svg path {
  stroke: #fff;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.event-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 50, 86, 0.03), transparent);
  transition: left 0.6s ease;
}

.event-card:hover::before {
  left: 100%;
}

.event-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(14, 50, 86, 0.15);
  border-color: rgba(14, 50, 86, 0.2);
}

.contact-title {
  font-size: 32px;
}

.event-title {
  transition: color 0.3s ease;
  margin-bottom: 20px;
  font-size: 20px;
}

.event-card:hover .event-title {
  color: #0e3256;
}

.event-btn {
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
}

.event-card:hover .event-btn {
  transform: translateX(4px);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.event-type,
.event-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-type i,
.event-date i {
  color: #4a90e2;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.event-btn:active {
  transform: translateY(0);
}

/* Tablet Styles */
@media only screen and (min-width: 768px) {
  .event-section {
    margin-top: 140px;
  }

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .event-card {
    padding: 36px;
  }

  .event-meta {
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 28px;
  }

  .event-btn {
    padding: 14px 28px;
    border-radius: 50px;
  }
}

/* Desktop Styles */
@media only screen and (min-width: 1200px) {
  .event-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    row-gap: 40px;
  }

  .event-card {
    padding: 30px;
  }

  .event-meta {
    margin-bottom: 32px;
  }

  .event-type i,
  .event-date i {
    font-size: 18px;
    width: 22px;
  }

  .event-details-btn {
    width: 320px;
  }

  .event-hero-btn span {
    color: #000;
  }

  .event-hero-btn svg path {
    stroke: #000;
  }

  .event-hero-btn span {
    display: inline-flex;
    width: auto;
  }
}

/* event details css */
.event-details-content {
  margin-top: 0px;
  padding-bottom: 0px;
}

.event-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.event-speakers-section .founder-photo {
  background-color: transparent;
}

.event-speakers-section .founder-photo img {
  object-fit: contain;
}

.event-details-left {
  width: 100%;
}

.event-speakers-section {
  margin-bottom: 290px;
}

.webinar-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0e3256;
  margin-bottom: 20px;
  line-height: 1.3;
}

.learning-points h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0e3256;
  margin-bottom: 20px;
}

.learning-points ul {
  list-style: none;
  padding: 0;
}

.learning-points li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.learning-points li:before {
  content: "•";
  color: #0e3256;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.event-details-right {
  width: 100%;
}

.registration-form {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 40px 30px;
}

.registration-form h3 {
  font-weight: 600;
  color: #0e3256;
  margin-bottom: 30px;
  text-align: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.half-width {
  width: 50%;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0e3256;
  box-shadow: 0 0 0 3px rgba(14, 50, 86, 0.1);
}

.country-select {
  position: relative;
}

.country-select select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.country-select .selected-flag {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  z-index: 1;
  pointer-events: none;
}

.country-select select {
  padding-left: 45px;
}

.country-select::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  pointer-events: none;
}

.register-btn {
  width: auto;
  padding: 14px 20px;
  background-color: #0e3256;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.register-btn:hover {
  background-color: #0a2340;
}

/* Tablet styles */
@media only screen and (min-width: 768px) {
  .event-details-wrapper {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  .event-details-left {
    width: 45%;
  }

  .event-speakers-section {
    margin-bottom: 280px;
  }

  .event-details-right {
    width: 55%;
  }

  .event-hero-btn span {
    width: auto;
    color: #000;
  }

  .event-hero-btn svg path {
    stroke: #000;
  }

  .event-details-btn {
    width: auto;
  }

  .webinar-info h2 {
    font-size: 32px;
  }

  .learning-points h3 {
    font-size: 26px;
  }

  .registration-form {
    padding: 50px 40px;
  }
}

/* Desktop styles */
@media only screen and (min-width: 1200px) {
  .webinar-info h2 {
    font-size: 36px;
  }

  .event-details-content {
    margin-top: 40px;
    padding-bottom: 60px;
  }

  .webinar-info p {
    font-size: 18px;
  }

  .learning-points h3 {
    font-size: 28px;
  }

  .learning-points li {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .registration-form {
    padding: 60px 30px;
  }



  .form-group input {
    padding: 14px 18px;
    font-size: 16px;
  }

  .register-btn {
    padding: 14px 30px;
    font-size: 18px;
  }
}

/* speakers section */

.event-speakers-section p {
  margin: revert;
}

@media only screen and (min-width: 1200px) {
  .event-speakers-section {
    margin-bottom: 310px;
    padding-top: 0px;
  }

  .event-speakers-section .founder-message-grid {
    grid-template-columns: minmax(0, 0.22fr) minmax(0, 1fr);
  }

  .event-speakers-section .founder-photo {
    background-color: transparent;
  }
}

/* Contact Details Section */

.contact-details {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left-section {
  padding: 50px 0px;
  padding-top: 0px;
}

.contact-info h3 {
  font-weight: 600;
  color: #0e3256;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #0e3256;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  color: #fff;
  font-size: 18px;
}

.contact-text h4 {
  font-weight: 600;
  color: #0e3256;
  margin-bottom: 8px;
}

.contact-text p {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin: 0;
}

.contact-text p a {
  text-decoration: none;
  color: #666;
}

.contact-right-section {
  border: 1px solid #e9ecef;
  border-radius: 12px;
}

.contact-details-section {
  margin-bottom: 260px;
}

@media only screen and (min-width: 768px) {
  .contact-details-section {
    margin-top: 120px;
  }

  .contact-details {
    display: flex;
  }

  .contact-left-section {
    width: 100%;
  }

  .contact-right-section {
    width: 50%;
  }
}

/* Responsive Design */
@media only screen and (min-width: 1200px) {
  .contact-details-section {
    margin-top: 30px;
    margin-bottom: 260px;
  }

  .contact-details {
    display: grid;
  }

  .contact-left-section {
    padding: 50px 0px;
  }

  .contact-right-section {
    width: 100%;
  }
}

/* Reveal Animations (Arup Style) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger Effects for items inside a reveal container */
.stagger-container .stagger-item,
.reveal .stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-container.is-visible .stagger-item,
.reveal.is-visible .stagger-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Delay classes for staggered children */
.stagger-item:nth-child(1) {
  transition-delay: 0.2s;
}

.stagger-item:nth-child(2) {
  transition-delay: 0.4s;
}

.stagger-item:nth-child(3) {
  transition-delay: 0.6s;
}

.stagger-item:nth-child(4) {
  transition-delay: 0.8s;
}

.stagger-item:nth-child(5) {
  transition-delay: 1.0s;
}

.stagger-item:nth-child(6) {
  transition-delay: 1.2s;
}

.stagger-item:nth-child(7) {
  transition-delay: 1.4s;
}

.stagger-item:nth-child(8) {
  transition-delay: 1.6s;
}

/* Event card specific stagger delays */
.event-grid .event-card:nth-child(1) {
  transition-delay: 0.1s;
}

.event-grid .event-card:nth-child(2) {
  transition-delay: 0.2s;
}

.event-grid .event-card:nth-child(3) {
  transition-delay: 0.3s;
}

.event-grid .event-card:nth-child(4) {
  transition-delay: 0.4s;
}

.event-grid .event-card:nth-child(5) {
  transition-delay: 0.5s;
}

.event-grid .event-card:nth-child(6) {
  transition-delay: 0.6s;
}

/* Horizontal reveal variant */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.aviation-hero {
  position: relative;
}

/* Swiper Styling */
.aviation-hero-slider {
  width: 100%;
  overflow: hidden;
  /* Kept inside container as requested */
  position: relative;
  padding-top: 60px;
  /* Space for the top navigation */
}

.hero-slide-image {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  object-fit: cover;
}

/* Navigation Buttons - Kept at the top right */
.aviation-next,
.aviation-prev {
  position: absolute !important;
  top: 0px !important;
  /* Kept up as requested */
  bottom: auto !important;
  margin-top: 0 !important;
  width: 30px !important;
  height: 30px !important;
  color: #003366 !important;
  transition: all 0.3s ease;
}

.aviation-next {
  right: 0 !important;
  left: auto !important;
}

.aviation-prev {
  right: 45px !important;
  /* Space between buttons */
  left: auto !important;
}

.aviation-next:after,
.aviation-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

@media (max-width: 991px) {
  .hero-slide-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-slide-image {
    height: 250px;
    border-radius: 12px;
  }

  .aviation-hero-slider {
    padding-top: 40px;
  }
}


.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}