@import url("https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");

@font-face {
  font-family: "Trebuchet MS";
  src: url("../fonts/Trebuchet MS.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("../fonts/Trebuchet MS Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("../fonts/Trebuchet MS Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("../fonts/Trebuchet MS Bold Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tinos", serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.9px; /* 177.857% */
  letter-spacing: 0.5px;
}
a.white {
  color: #fff;
}
a.grey {
    color: #424242;
}
a.bold {
  font-weight: 500;
}
a.small {
  font-size: 14px;
}
a.xs {
  font-size: 12px;
}

h1 {
  font-family: "Tinos", serif;
  font-size: clamp(34px, 4vw, 42px);
  color: #0D133A;
  font-style: normal;
  font-weight: 400;
  line-height: 53px; /* 126.19% */
  letter-spacing: -0.64px;
  margin: 0;
}

h1.black {
    color: #000;
}

h1.white {
  color: #fff;
}
h1.bold {
  font-weight: 600;
}
.text-title {
  font-family: "Tinos", serif;
  font-size: clamp(34px, 4vw, 42px);
  color: #0D133A;
  font-style: normal;
  font-weight: 400;
  line-height: 53px; /* 126.19% */
  letter-spacing: -0.64px;
  margin: 0;
}
h2 {
  font-family: "Tinos", serif;
  font-size: clamp(20px, 4vw, 22px);
  color: #0D133A;
  font-style: normal;
  font-weight: 400;
  font-style: normal;
  line-height: 33px; /* 150% */
  margin: 0;
}

h2.black {
  color: #000;
}
h2.lightgrey {
  color: #424242;
}
h2.bold {
  font-weight: 700;
}
h2.white {
  color: #fff;
}

p {
  color: #0D133A;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.9px;
  margin: 0;
}
p.semibold {
  font-weight: 500;
}
p.bold {
  font-weight: 600;
}
p.extrabold {
  font-weight: 700;
}
p.black {
  color: #000;
}
p.grey {
  color: #6B6B6B;
}
p.lightgrey {
  color: #424242;
}
p.white {
  color: #fff !important;
}
p.large {
  font-size: clamp(16px, 4vw, 18px);
  line-height: 28.9px; /* 160.556% */
}
p.small {
  font-size: 14px;
  line-height: 28.9px; /* 160.556% */
}
p.xs {
  font-size: 12px;
}
.darkgrey {
  color: #2A2A2A;
}
.color-yellow {
  color: #A17930;
}

.color-dark-yellow {
  color: #A17930;
}
.color-blue {
  color:#0D133A;
}
.color-red {
    color: #520E1B;
}

.mt-66 {
  margin-top: 66px;
}

.mt-70 {
  margin-top: 70px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.mt-60 {
    margin-top: 60px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-112 {
  padding-top: 112px;
  padding-bottom: 112px;
}

.container {
  max-width: 1332px;
  --bs-gutter-x: 2.75rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.form-submit {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0;
  position: relative;
  z-index: 10;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder {
  color: #333;
  font-family: "Tinos", serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 15px */
  letter-spacing: -0.15px;
}

@media (width < 991px) {
  .container {
    --bs-gutter-x: 3.75rem;
  }
  .padding-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-112 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mt-75 {
    margin-top: 70px;
  }
}
@media (width < 767px) {
  .container {
    --bs-gutter-x: 2.5rem;
  }
  .padding-112 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

label {
  color: var(--Color-2, #0D133A);
  font-family: "Trebuchet MS";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

textarea {
  margin-top: 8px;
  border: 1px solid #F7F5F0;
  background: #FFF;
  padding: 12px 14px;
  width: 100%;
  height: 100%;
  color: rgba(42, 42, 42, 0.50);
  font-family: "Trebuchet MS";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.9px; /* 177.857% */
  letter-spacing: 0.5px;
}

input[type=text],
input[type=email],
input[type=tel],
select {
  margin-top: 8px;
  border: 1px solid #F7F5F0;
  background: #FFF;
  padding: 12px 14px;
  width: 100%;
  height: 48px;
  color: rgba(42, 42, 42, 0.50);
  font-family: "Trebuchet MS";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.9px; /* 177.857% */
  letter-spacing: 0.5px;
}

input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible,
select:focus-visible,
textarea:focus-visible,
input[type=text]:active,
input[type=email]:active,
input[type=tel]:active,
select:active,
textarea:active {
  border: 1px solid #520E1B;
  outline:none;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(42, 42, 42, 0.50);
  font-family: "Trebuchet MS";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.9px; /* 177.857% */
  letter-spacing: 0.5px;
}

.about-developer .container .form-col input[type=text],
.about-developer .container .form-col input[type=email],
.about-developer .container .form-col input[type=tel],
.about-developer .container .form-col select,
.about-developer .container .form-col textarea {
  border: 1px solid rgba(42, 42, 42, 0.30);
}

.primary-btn,
.outline-btn {
  background: #A17930;
  display: flex;
  padding: 14px 17px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #ffffff;
  font-family: "Trebuchet MS";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.yellow-btn {
  padding: 8px 16px 8px 20px;
  background: #A17930;
}

.outline-btn {
  color: #0D133A;
  background: var(--White, #FFF) !important;
}

.secondary-btn {
  background: #0D133A;
  padding: 4px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-align: center;
  font-family: "Trebuchet MS";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px; /* 150% */
  letter-spacing: 1.56px;
  text-transform: uppercase;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: top 0.5s ease;
    border-bottom: 1px solid rgba(161, 121, 48, 0.15);
    background: var(--Color-2, #0D133A);
}

.header .container {
  max-width: 1492px;
}

#check,
.hamburger-menu {
    width: 30px;
    height: 30px;
}

#check:checked ~ div .hamburger-menu div {
    background-color: transparent;
}

.header .container ul {
    padding-left: 0;
    margin-bottom: 0;
}

.header .logo-container {
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.mobile,
.nav-links ul.mobile {
    display: none;
}

.nav-btn {
    flex: 2;
    display: flex;
}

.nav-links {
    flex: 2;
    align-items: center;
    justify-content: center;
    display: flex;
}

.nav-links>ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
}

.desk-link,
.nav-links ul.mobile .nav-link a {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 2.16px;
    text-transform: uppercase;
    padding-bottom: 3px;
}

.nav-links ul.desktop .nav-link {
  padding: 22px 0;
}

.desk-link:hover,
.desk-link:active,
.desk-link.active,
.nav-links ul.mobile .nav-link a:hover,
.nav-links ul.mobile .nav-link a:active,
.nav-links ul.mobile .nav-link a.active {
  color: #A17930;
  border-bottom: 1px solid #A17930;
}

.desktop {
    display: block;
}

/* Vayu Journal nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dropdown-caret {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-caret,
.nav-dropdown:hover .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 338px;
    width: 100%;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px;
    color: #424242;
    text-transform: none;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: #F7F5F0;
    color: #000;
}

.nav-dropdown-item.active {
    background: #F7F5F0;
    color: #000;
    font-weight: 700;
}

.nav-dropdown-item svg {
    flex-shrink: 0;
    color: inherit;
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hamburger-menu div {
    width: 24px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: 0.4s;
}

.hamburger-menu div:after,
.hamburger-menu div:before {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: 0.4s;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    right: 37px;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
    transform: translateY(-50%);
}

#check:checked ~ div .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ div .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@media (max-width: 1050px) {
  .header {
    padding: 12px 0;
  }
    .nav-links>ul {
        gap: 0;
    }
    .nav-btn,
    .nav-link,
    .nav-links {
        width: 100%;
    }

    .hamburger-menu-container {
        display: flex;
    }

    #check,
    .nav-links {
        display: block;
    }

    .nav-btn {
        position: absolute;
        top: 71px;
        padding-top: 0px;
        left: 0;
        border-radius: 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-x: hidden;
        transition: 0.4s linear;
        background: #fff;
        overflow-y: hidden;
        max-height: 0;
        height: 0;
        gap: 40px;
    }

    .header .container #check:checked~.nav-btn {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        overflow-y: auto;
        box-shadow: 0 182px 51px 0 rgba(0, 0, 0, 0), 0 117px 47px 0 rgba(0, 0, 0, 0.01), 0 66px 39px 0 rgba(0, 0, 0, 0.05), 0 29px 29px 0 rgba(0, 0, 0, 0.09), 0 7px 16px 0 rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex: none;
    }

    .nav-links ul.desktop {
        display: none;
    }

    .nav-links>ul {
        flex-direction: column;
    }

    .nav-links ul.mobile {
        padding: 40px;
        display: flex;
        gap: 16px;
    }

    .nav-links ul.mobile li.nav-link {
        margin-right: 0;
    }

    .nav-links ul.mobile .nav-link a {
        color: #0D133A;
    }

    .header .hamburger-menu {
        height: auto;
        width: auto;
    }

    .nav-dropdown-menu {
        margin-top: 16px;
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(13, 19, 58, 0.1);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
    }

    .nav-dropdown-toggle {
        color: #0d133a;
    }

    .nav-dropdown-item {
      padding: 12px !important;
      color: #424242 !important;
      text-transform: none !important;
  }

  .nav-dropdown-item:hover {
      background: #F7F5F0 !important;
      color: #000 !important;
      border-bottom: none !important;
  }

  .nav-dropdown-item.active {
      background: #F7F5F0 !important;
      color: #000 !important;
      font-weight: 700 !important;
      border-bottom: none !important;
  }

  .nav-dropdown-item svg {
      flex-shrink: 0;
      color: inherit !important;
  }
}

@media (max-width:991px) {
    #check {
        right: 26px;
    }

    .nav-links ul.mobile {
        padding: 30px;
    }
}

@media (max-width: 767px) {

    .nav-links ul.mobile {
        padding: 20px;
    }

    #check {
        right: 17px;
    }

    .header .hamburger-menu {
        height: auto;
        width: auto;
    }
}

.journal-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 444px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journal-banner .container {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: clamp(42px, 4vw, 62px);
  font-style: normal;
  font-weight: 400;
  line-height: 76.8px;
  letter-spacing: -0.64px;
}

@media(max-width: 1050px) {
  .banner-title {
    line-height: 53px;
  }
}

@media(max-width: 767px) {
  .journal-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 556px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

.journal-tab {
  padding: 14px 48px;
  color: #0D133A;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.9px; /* 155.625% */
  letter-spacing: 0.5px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}
.journal-tab.active {
  background: #A17930;
  color: #ffffff;
}
.journal-panel {
  display: none;
}
.journal-panel.active {
  display: block;
}

/* ── Vayu Journal: news & award cards ─────────────────────────────── */
.award-card .content p {
    color: var(--Content-secondary, #424242);
    font-size: 14px;
    letter-spacing: 0.5px;
}
.news-card {
  background: #FFF;
  box-shadow: 0 2px 8px 0 rgba(13, 19, 58, 0.04);
}

.news-card .press-logo {
   min-height: 195px;
}

.blog-cards-section .container .blog-card {
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(13, 19, 58, 0.04);
}

.more-blogs-section .container .blog-card {
  background: var(--Light-Biege, #F7F5F0);
  box-shadow: 0 2px 8px 0 rgba(13, 19, 58, 0.04);
}

.blog-empty {
		padding: 80px 0;
		text-align: center;
	}

	/* ── Pagination (matches Figma node 791:2334) ── */
	.symphony-pagination {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 64px;
		flex-wrap: wrap;
	}
	.symphony-pagination .page-num,
	.symphony-pagination .page-dots {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		font-family: "Trebuchet MS", sans-serif;
		font-size: 16px;
		letter-spacing: 0.5px;
		text-decoration: none;
		color: #0d133a;
		background: #fff;
		transition: background 0.15s, color 0.15s;
	}
	.symphony-pagination .page-dots {
		background: transparent;
	}
	.symphony-pagination a.page-num:hover {
		background: #efefee;
	}
	.symphony-pagination .page-num--current {
		background: #0d133a;
		color: #fff;
	}
	.symphony-pagination .page-arrow {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: #fff;
		flex: none;
	}
	.symphony-pagination .page-arrow--prev {
		margin-right: 40px;
	}
	.symphony-pagination .page-arrow--next {
		margin-left: 40px;
		background: #A17930;
	}
	.symphony-pagination .page-arrow[aria-disabled="true"] {
		opacity: 0.6;
		pointer-events: none;
	}

.blog-reading-page .container .reading-content .article-body h1,
.blog-reading-page .container .reading-content .article-body h2 {
        font-size: clamp(34px, 4vw, 42px);
        color: #0D133A;
        font-style: normal;
        font-weight: 400;
        line-height: 53px;
        /* 126.19% */
        letter-spacing: -0.64px;
        margin-top: 40px;
    }
    
    .blog-reading-page .container .reading-content .article-body h3,
    .blog-reading-page .container .reading-content .article-body h4 {
        font-family: "Tinos", serif;
        font-size: clamp(20px, 4vw, 22px);
        color: #0D133A;
        font-style: normal;
        font-weight: 400;
        font-style: normal;
        line-height: 33px; /* 150% */
        margin-top: 16px;
    }
    
    .blog-reading-page .container .reading-content .article-body table {
        border-collapse: collapse;
        width: 100%;
        table-layout: auto;
        word-break: normal;
        margin-top: 24px !important;
        margin-bottom: 24px !important;
        text-align: left !important;
    }
    

    .blog-reading-page .container .reading-content .article-body img {
        margin-top: 40px;
        width: 100%;
    }

    .blog-reading-page .container .reading-content .article-body p {
        color: #424242;
        margin-top: 16px;
    }
    .blog-reading-page .container .reading-content .article-body a {
        color: #A17930 !important;
        text-decoration: underline !important;
        text-underline-offset: 3px !important;
    }

    .blog-reading-page .container .reading-content ul {
        margin-top: 16px;
        list-style-type: disc;
        padding-left: 20px;
    }

    .blog-reading-page .container .reading-content ol {
        margin-top: 16px;
        list-style-type: decimal;
        padding-left: 20px;
    }

    .blog-reading-page .container .reading-content ul li,
    .blog-reading-page .container .reading-content ol li {
        color: #424242;
        margin-top: 16px;
        font-family: "Trebuchet MS", sans-serif;
    }
    
    .blog-reading-page .container .reading-content .ref-box .ref-list a.ref-tab {
        color: #424242 !important;
    }
    
    .blog-reading-page .container .reading-content .ref-box .ref-list a.ref-tab:hover {
        color: #000 !important;
    }

    /* TOC */
    .toc-item,
    .mobile-toc .toc-item {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        cursor: pointer;
        line-height: 24.9px;
        letter-spacing: 0.5px;
        color: #424242;
        text-decoration: none;
    }

    .toc-item.active,
    .mobile-toc .toc-item.active {
        background: #E5DECB;
    }
    

.faqs-section.services-faq .container .accordion-item h4,
.blog-faq-section .accordion-item h4 {
	font-size:18px !important;
  text-align: left !important;
}
.faqs-section.services-faq .container .accordion-item .faq-content p,
.blog-faq-section .accordion-item .faq-content p {
	margin-top: 16px;
	color: var(--Grey-20, #4D4D4D) !important;
	font-weight: 400 !important;
}
.faqs-section.services-faq .container .accordion-item .faq-content p a{
	font-weight:500;
	text-decoration:underline !important;
	color: var(--Grey-20, #4D4D4D) !important;
}
.faqs-section.services-faq .container .accordion-item .faq-content ul,
.blog-faq-section .accordion-item .faq-content ul,
.faqs-section .container .accordion-item .accordion-content ul {
  padding-left: 1.5rem !important;
  list-style: disc;
  color: var(--Grey-20, #4D4D4D);
}
.faqs-section.services-faq .container .accordion-item .faq-content ol{
	margin-top: 16px;
	  padding-left: 1.5rem !important;
  list-style: decimal;
  color: var(--Grey-20, #4D4D4D);
}

.notfound-section {
    background: url('../images/error-banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 844px;
    height: 100%;
    display: flex;
}


.footer .container .quicklinks p.headline {
  line-height: 18px; /* 150% */
  letter-spacing: 2.16px;
}

.footer .container p {
  line-height: 24.9px; /* 155.625% */
  letter-spacing: 0.5px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(161, 121, 48, 0.25);
    border-bottom: 1px solid rgba(161, 121, 48, 0.25);
}