@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
body {
  background-color: #f1f1f1;
}
html {
  font-size: 62.5%; /* 10px baseline for rem */
}

/* ===== Header Base ===== */
.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
}

/* ===== Top Bar ===== */
.top-bar {
  background: #0e1a24;
  color: #fff;
  font-size: 14px;
}
.navigtion-container {
  display: flex;
  gap: 10vw;
  max-width: 1440px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}

.top-bar a {
  color: #fff;
  margin-right: 16px;
  text-decoration: none;
  opacity: 0.85;
}

.top-bar a:hover {
  opacity: 1;
}

/* ===== Main Nav Shell ===== */
.nav-shell {
  background: transparent;
  position: fixed;
  width: 100%;
  top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  max-width: 1200px;
  /* margin: auto; */
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== Logo ===== */
.site-logo img {
  max-height: 40px;
}

/* ===== Menu ===== */
.menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.main-menu li a {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 17px;
}

.main-menu li.current-menu-item a {
  background: #00336633;
  /* padding: 8px 16px; */
  border-radius: 999px;
  color: #003366;
  font-weight: 500;
}

/* ===== CTA Button ===== */
.btn-primary {
  background: #c5a059;
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  font-size: 17px;
  margin-left: 28px;
  display: flex;
  gap: 2px;
  margin-left: 28px;
}

.btn-primary:hover {
  background: #c2943f;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  color: #000;
  padding: 3rem 0rem 1rem;
  border-radius: 30px 30px 0px 0px;
  animation: slideUp 0.6s ease-out;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #00336661;
  align-items: flex-start;
}

/* Logo Section */
.logo-section .footer-logo {
  display: flex;
  align-items: center;
}
.footer-section.logo-section {
  max-width: 302px;
}

.logo-section .footer-logo img {
  height: 75px;
  width: 100%;
  max-width: 302px;
  margin-right: 0px;
  margin-bottom: 4.2rem;
}

.logo-section .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.tagline p {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  color: #003366;
  max-width: 100%;
}

.license-info p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 1.5rem;
}

.legal-links {
  font-size: 1.5rem;
}

.legal-links a {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Navigation Section */
.footer-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #003366;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 2.2rem;
}

.footer-nav a {
  color: #1e1e1ede;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.2rem 0;
}

.footer-nav a:hover {
  color: #003366;
  transform: translateX(5px);
}

/* Contact Section */
.footer-section.contact-section {
  max-width: 223px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  margin-right: 12px;
  font-size: 1.1rem;
  min-width: 20px;
  color: #4299e1;
}

.contact-item a {
  color: #63b3ed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #90cdf4;
  text-decoration: underline;
}

.contact-item .contact-text {
  color: #000;
  line-height: 1.5;
  font-size: 1.8rem;
}

/* .address .contact-text {
  font-size: 0.9rem;
} */

/* Navigation Section */
.footer-section.nav-section {
  max-width: 140px;
}

/* Copyright Section */
.copyright-section {
  padding: 1.5rem 0rem;
  width: 90%;
  margin: 0 auto;
}

.copyright-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.copyright-text {
  font-size: 1.5rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #cbd5e0;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
}

/* Animation for slide-up effect */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-inner {
    background: transparent;
  }
  .menu-wrapper {
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.3s ease;
  }

  body.menu-open .menu-wrapper {
    transform: translateX(0);
  }

  .main-menu {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-shell {
    position: fixed;
    top: 0;
  }

  .nav-inner {
    border-radius: 0;
  }
  .hamburger {
    margin-left: 20px;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  /* .footer {
    padding: 4rem 2rem 1.5rem;
  } */

  .footer-container {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 3rem;
  }

  .logo-section {
    grid-column: span 2;
  }

  .copyright-container {
    flex-direction: row;
    text-align: left;
  }

  .copyright-text {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
  }

  .logo-section {
    grid-column: span 1;
  }

  .footer-nav ul {
    columns: 1;
  }
}

/* ===== Hamburger / Close Button ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c5a059; /* Changed from white to match your theme */
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* When menu is open - transform into X */
body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Optional: Change button color when menu is open */
body.menu-open .hamburger span {
  background: #c5a059; /* You can change this color */
}

.ray-banner.e-con-full {
  position: relative;
  height: 100vh !important;
  overflow: hidden;
}

.ray-banner.e-con-full .elementor-widget#banner-img {
  height: 100vh !important;
  width: 100%;
  overflow: hidden;
  display: block;
}

.ray-banner.e-con-full .elementor-widget#banner-img video {
  height: 1232px;
  width: 1232px;
  border-radius: 50%;
  object-fit: cover;
  transform: translateY(65vh);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  /* .ray-banner.e-con-full .elementor-widget#banner-img video{
    height: auto;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateY(30vh);
  } */
  .hamburger {
    display: flex;
    margin-left: 20px;
  }
  .navigtion-container {
    display: flex;
    gap: 7vw;
    max-width: 1200px;
    width: 95%;
  }

  /* Rest of your existing responsive styles remain the same */
  .nav-inner {
    background: transparent;
  }
  .menu-wrapper {
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.3s ease;
    z-index: 999;
  }

  body.menu-open .menu-wrapper {
    transform: translateX(0);
  }

  .main-menu {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-shell {
    position: fixed;
    top: 20px;
  }

  .nav-inner {
    border-radius: 0;
  }
  /* .site-logo {
    margin-left: 20px;
  } */
  .ray-banner.e-con-full .elementor-widget#banner-img {
    height: 100% !important;
    min-height: 100% !important;
  }
  .ray-banner.e-con-full {
    height: 100% !important;
  }
}
@media (max-width: 820px) {
  .footer-container {
    flex-wrap: wrap;
  }
  .footer-section.map-section,
  .footer-section.map-section iframe {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .logo-section .footer-logo {
    justify-content: center;
    flex-direction: column;
    /* text-align: center; */
  }

  .logo-section .footer-logo img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact-item {
    justify-content: center;
    /* text-align: center; */
    flex-direction: column;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .footer-section.logo-section {
    max-width: 240px;
  }
  .footer-section.contact-section {
    max-width: 220px;
  }
}
@media (max-width: 576px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .footer {
    text-align: center;
  }
  .footer-section.logo-section,
  .footer-section.nav-section,
  .footer-section.contact-section {
    max-width: unset;
  }
  .contact-item .contact-text {
    text-align: center;
    width: 100%;
  }
}
/* cutomize css */

body {
  line-height: 1.2;
  background: #fff !important;
}
body.menu-open {
  overflow: hidden !important;
}
body.page-id-22 footer#footer {
  position: relative;
}
.nav-inner {
  background: #f4f4f4;
}
.imp-img {
  position: relative;
  display: inline-block;
}
.imp-img img {
  display: block;
  width: 100%;
}

.main-menu #menu-item-4419.current-menu-item a {
  background: none !important;
  color: #000;
}
.main-menu #menu-item-4419.current-menu-item a:hover {
  color: #003366;
}
.scrolled .main-menu #menu-item-4419.current-menu-item a {
  color: #fff;
}

.imp-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, #000000);
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}
.max-1440 {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.cv-upload-box {
  position: relative;
  overflow: visible !important;
}
.cv-upload-box .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  white-space: nowrap;
  width: 100%;
}
.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px !important;
}
.wpcf7-select option {
  background: #001932;
  color: #fff;
}
.wpcf7-submit:disabled {
  background-color: #171717 !important ; /* off color */
  color: #8f8f8f;
  cursor: not-allowed;
  opacity: 0.7;
}
.contact-dropdownBox {
  position: relative;
  width: 100%;
  background: transparent;
  outline: none;
}
.selector-container {
  background: #003366;
  border-radius: 100px;
  position: relative;
  padding-inline: 10px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7-not-valid-tip {
  color: red;
  background: transparent;
  /* 	border-radius:4px; */
  border: none;
  font-size: 16px;
}
.wpcf7-not-valid-tip {
  color: #f54d4d;
  font-size: 15px;
  /* 	padding:4px 8px; */
}
.selector-container::after,
.contact-dropdownBox::after {
  position: absolute;
  content: "";
  background: url(https://rayalliance.com/wp-content/uploads/2026/02/Arrow-1.svg);
  background-size: 12px 12px;
  right: 16px;

  height: 12px;
  width: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-dropdownBox::after {
  top: 17px;
  transform: unset;
}
#footer {
  position: relative;
}
body.page-id-22 footer#footer::after,
body.page-id-925 footer#footer::after,
body.page-id-1170 footer#footer::after,
body.page-id-135 footer#footer::after,
body.page-id-139 footer#footer::after,
body.post-type-archive-events footer#footer::after,
body.postid-1456 footer#footer::after {
  position: absolute;
  content: "";
  background: #053664;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
body.page-id-135 footer#footer::after {
  background: #f1f1f1;
}
body.page-id-139 footer#footer::after,
body.postid-1456 footer#footer::after {
  background: #fff9ee;
}
body.post-type-archive-events footer#footer::after {
  background: #fff;
}
/* .premium-testimonial-container{
	background:#FCFCFC;
	border-radius:15px;
	
}
.premium-testimonial-box.multiple-testimonials{
	gap:20px;
} */
/* div.elementor-145 .elementor-element.elementor-element-292040b .premium-testimonial-container {
    width: 32.2%;
    padding: 0 5px 0 5px;
    margin: 5px 0 5px 0;
} */
.career-meta span:hover {
  scale: 1.05;
}
.director-socials svg:hover {
  scale: 1.05;
}
.advisor-card .elementor-button-link {
  border: 1px solid #6685a3;
  transition: all ease 0.2s;
}
.advisor-card .elementor-button-link:hover {
  background-color: transparent !important;
}
.advisor-card .elementor-button-link:hover svg path {
  fill: #00336699;
}
.advisor-card:hover img {
  scale: 0.95;
}
.team-image {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}
.team-image img {
  transition: all ease 0.2s;
  scale: 1.05;
  object-fit: cover;
  width: 100%;
}
.team-image:hover img {
  scale: 1;
}
.company-card img,
.advisor-card img,
.career-meta span,
.career-apply {
  transition: all ease 0.3s;
}
.company-card:hover img {
  scale: 1.05;
}
.cf7-checkbox {
  display: flex;
  flex-direction: column;

  gap: 20px;
}
.cf7-checkbox input {
  height: 16px;
  width: 16px;
}
.cf7-custom-form .last-input {
  margin-bottom: 24px;
}
.main-menu {
  gap: 10px;
}
/* Remove spinner buttons */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.main-menu li a {
  padding: 8px 10px;
}

.footer-container {
  max-width: 1440px;
  width: 90%;
  margin-top: 20px;
}
.wpcf7-not-valid-tip {
  margin-top: 7px;
}
.event-card:hover .event-image {
  scale: 0.95;
}
.article-card .article-card-image img,
.article-card .article-content,
.event-card .event-image {
  transition: all ease 0.2s;
}
.article-card {
  overflow: hidden;
  border-radius: 30px;
}
.article-card-image {
  overflow: hidden;
}
.article-card .article-card-image img {
  scale: 1.1;
}
.article-card:hover .article-card-image img {
  scale: 1;
}
.article-card:hover .article-content {
  transform: translatey(-10px);
  background: #f3fcff;
}
.btn-primary:hover {
  background: #bb8c36 !important;
}
.site-logo img {
  max-height: 60px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  color: #fff;
  font-size: 16px;
}
.events-section-wrapper .no-event {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: red;
  margin-top: 20px;
}
.main-menu li a:hover {
  color: #013366;
}
.contact-item .contact-text {
  color: #1e1e1ede;
  transition: all ease 0.3s;
}
.contact-item a:hover,
.legal-links a:hover {
  color: #003366;
  transform: translateX(5px);
  text-decoration: none;
}
.article-card .read-more-btn:hover,
.event-card .event-link:hover,
.team-container .team-card .team-link:hover {
  color: #016699;
}
.article-card .read-more-btn:hover svg path,
.event-card .event-link:hover svg path,
.team-container .team-card .team-link:hover svg path {
  stroke: #016699;
}
.brown-btn a {
  transition: all ease 0.2s;
}
.blue-btn a:hover {
  scale: 1.05 !important;
}
.brown-btn a:hover,
.featured-content .read-more-btn:hover {
  scale: 1.05 !important;
  background: #c2943f !important;
}
.brown-btn a:hover svg,
.featured-content .read-more-btn:hover svg,
.blue-btn a:hover svg {
  animation: moveRightLoop 0.6s ease-in-out;
}
@keyframes moveRightLoop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateX(10px);
    opacity: 0;
  }

  41% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.nav-shell {
  top: 40px;
}
div.nav-shell.scrolled {
  top: 23px;
}
.navigtion-container {
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto;
  gap: 0;
}
.nav-shell.scrolled {
  background: #001932;
  top: 0px;
  padding: 20px 0px;
  transition: all ease-in-out 0.5s;
}
.nav-shell.scrolled .navigtion-container {
  align-items: flex-start;
  justify-content: space-between;
}
.nav-shell.scrolled .nav-inner {
  margin: unset;
  padding: 8px 14px;
  background: transparent;
  border-radius: 0;
}
.nav-shell.scrolled .main-menu li a {
  color: #fff;
  transition: all ease 0.3s;
}
.nav-shell.scrolled .main-menu li a:hover {
  color: #bfbff1;
}
.nav-shell.scrolled .main-menu li.current-menu-item a {
  background: #003366;
}
.ray-banner {
  position: relative;
}
.banner-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-after-content {
  position: absolute;
  bottom: 0;
}
#banner-img {
  min-height: 100vh !important;
}
#banner-img .e-hosted-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner-img video {
  animation: moveUp 0.5s linear 2s 1 forwards;
}
@keyframes moveUp {
  from {
    height: 1232px;
    width: 1232px;
    border-radius: 50%;
    transform: translateY(65vh);
  }
  to {
    height: 100%;
    width: 100%;
    border-radius: 0;
    transform: translateY(0);
    object-fit: cover;
  }
}
.main-event-container {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.about-us-slider .e-con-boxed {
  min-height: 270px;
}
swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card {
  width: 320px;
  background: #e9e4dd;
  border-radius: 20px;
  padding: 24px;
  box-sizing: border-box;
}

.profile-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.name {
  font-size: 20px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0;
}

.title {
  font-size: 14px;
  color: #6f6f6f;
  margin: 6px 0 16px 0;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.icons {
  display: flex;
  gap: 12px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #cfc8be;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2ed;
  cursor: pointer;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  fill: #4a4a4a;
}
.career-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid #234a5699;
}
.career-title {
  font-size: 28px;
  font-weight: 600;
  color: #234a56;
  margin-bottom: 16px;
}
.career-description {
  font-size: 18px;
  font-weight: 400;
  color: #1e1e1e99;
  line-height: 1.4;
  margin-bottom: 24px;
}
.career-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.drag-section,
.drag-section * {
  cursor: none !important;
}

.drag-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 999999;
}
.cursor-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.career-meta span {
  padding: 10px 24px;
  border: 1px solid #00336699;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #1e1e1e99;
}
.career-apply {
  font-size: 18px;
  font-weight: 700;
  background-color: #003366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.career-apply:hover {
  scale: 1.05;
}
.career-apply svg path {
  stroke: #fff;
}
.career-apply:hover svg path {
  animation: moveRightLoop 0.6s ease-in-out;
}
/* .main-event-wrapper{
	max-width:1440px;
	width:100%;
} */
h2.main-heading {
  font-size: 48px;
  font-weight: 500;
  color: #013366;
  margin: 100px 0px 36px;
}
.events-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 100px;
}

.event-image img {
  width: 100%;
  height: auto;
}
.single-event h3 a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #003366;
}
.events-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.events-filter a {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #00000026;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  color: #000000de;
  font-weight: 400;
}
.events-filter a.active {
  background: #013366;
  color: #fff;
}
.featured-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.featured-image {
  max-width: 490px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.02;
  transition: all ease 0.2s;
}
.featured-image:hover img {
  scale: 1;
}
.featured-content p {
  font-size: 15px;
  font-weight: 400;
  color: #00000099;
  line-height: 1.3;
}
.featured-content .event-date {
  font-size: 15px;
  font-weight: 500;
  color: #003366;
  margin: 24px 0px 0px;
  text-transform: uppercase;
}
.featured-content .read-more-btn {
  float: unset;
  padding: 8px 16px;
  background: #c5a059;
  border-radius: 100px;
  width: fit-content;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}
.insights-dropdown {
  -webkit-appearance: none; /* removes default arrow in Chrome/Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none;
}
.featured-content .read-more-btn:hover {
  background: #c5a059ee;
}
.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.team-container .team-card {
  max-width: 380px;
  padding: 32px;
  background: #c5a0591f;
  border-radius: 32px;
}
.team-container .team-card .team-name {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #1e1e1e;
  margin: 30px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-container .team-card .team-position {
  font-size: 18px;
  font-weight: 400;
  color: #1e1e1e99;
  line-height: 1.4;
}
.team-container .team-card .team-description {
  color: #1e1e1ede;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 24px 0 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-container .team-card .team-icons {
  display: inline-flex;
  gap: 20px;
}
.team-container .team-card .team-link {
  color: #003366;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  float: right;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-event-container {
  background: #fff9f7;
}
.single-event-main {
  max-width: 1440px;
  padding: 100px;
  margin: 0 auto;
}
.single-event-main .event-category + h1,
.featured-content h2,
.single-event-main h1 {
  font-size: 48px;
  font-weight: 400;
  color: #000;
  margin-bottom: 36px;
}
.featured-content h2 {
  margin-bottom: 12px;
}
.single-event-main .event-category,
.featured-wrapper .event-label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #003366;
  padding-left: 15px;
  margin-bottom: 8px;
  text-transform: capitalize;
  position: relative;
}
.single-event-main .event-category::before,
.featured-wrapper .event-label::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #003366;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.card-outer-wrapper {
  width: 100%;
  display: flex;
  gap: min(4vw, 40px);
}
.event-card-single {
  border-radius: 32px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 0 10px #00000014;
}
.card-outer-wrapper .event-image {
  max-width: 345px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}
.card-outer-wrapper .event-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-outer-wrapper .event-details h3 {
  font-size: 22px;
  font-weight: 500;
  color: #003366;
}
.card-outer-wrapper .event-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-outer-wrapper .event-details ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000bf;
  font-size: 15px;
  font-weight: 400;
}
.card-outer-wrapper .event-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.event-content-single h3 {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  margin-top: 4px;
}
.event-content-single .event-excerpt p {
  color: #00000099;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}
.event-banner {
  background-image: url(https://rayalliance.com/wp-content/uploads/2026/02/Frame-2-1-scaled.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 100px 100px;
}
.event-inner-wrapper {
  max-width: 1296px;
  width: 100%;
  margin: 0 auto;
}
.event-banner .back-button {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.event-banner .event-dynamic-title,
.event-breadcrumb {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  width: fit-content;
  margin: 28px auto 20px;
  padding-left: 10px;
}
.event-banner .event-dynamic-title::before {
  position: absolute;
  content: "//";
  top: 50%;
  transform: translatey(-50%);
  left: -5px;
  position: relative;
}
.event-banner .banner-title,
.event-title {
  background: linear-gradient(to right, #ffffff 0%, #ffbf43 50%);
  -webkit-background-clip: text; /* For Chrome/Safari */
  background-clip: text;

  -webkit-text-fill-color: transparent; /* Required for WebKit */
  color: transparent;
  font-size: 48px;
  font-weight: 600;
  margin: 0 auto;
  width: fit-content;
}
.event-banner .banner-tagline,
.event-subtitle {
  color: #f8f9fa99;
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 28px;
}
.event-subtitle {
  max-width: 550px;
}
/*event cards css starts*/
.events-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: 100%;
  padding: 10px;
  border-radius: 32px;
  border: 1px solid #00336633;
  background-color: #9f9f9f14;
}
.event-card:nth-child(even) {
  border: 1px solid #c5a05961;
  background-color: #c5a05933;
  flex-direction: column-reverse;
}
.premium-carousel-hidden {
  opacity: 1;
  visibility: visible;
  display: contents;
}
.event-content {
  padding: 14px;
  border: 0.5px solid #00336661;
  border-radius: 18px;
}
.event-card:nth-child(even) .event-content {
  border: 0.5px solid #c5a05961;
}
.event-content h3 {
  font-weight: 600;
  font-size: 20px;
  color: #003366;
  border-bottom: 0.5px solid #1e1e1e61;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.event-content .event-excerpt {
  color: #1e1e1e99;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 16px;
}
.event-content .event-date {
  color: #1e1e1ede;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 18px;
}
.event-content .event-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1.4;
  color: #003366;
  font-weight: 600;
  text-decoration: none;
}
/*event cards css ends*/

.list-container ul {
  list-style: none;
  padding-left: 0px;
}

.list-container ul li {
  position: relative;
  padding-left: 20px;
}

.list-container ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}
.list-container ul li:not(:last-child) {
  margin-bottom: 16px;
}
.approach-list ul {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}
.approach-list ul li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  padding-top: 5px;
  margin-bottom: 15px;
  font-size: 16px;
}
.approach-list ul li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: #234a56;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 600;
}
.approach-list ul .eael-feature-list-icon-box {
  display: none;
}
.about-hero-head h2,
.event-banner .banner-title,
.event-title {
  background: linear-gradient(to right, #ffffff 0%, #ffbf43 100%);
  background-position: 200%;
  background-size: 200%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: slideRight 2s ease 1s forwards; /* added forwards */
}

@keyframes slideRight {
  to {
    background-position: 50%;
    background-size: 100%;
  }
}
.cv-upload-wrapper {
  width: 100%;
  max-width: 600px;
  font-family: Arial, sans-serif;
  margin-bottom: 35px;
}

.cv-label {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
}

.cv-upload-box {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 6px;
  /*   overflow: hidden; */
  border: 0.5px solid #ffffff;
  margin-bottom: 10px;
}

.cv-file-type {
  padding: 10px 15px;
  color: #ffffff99;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  background: transparent;
  max-width: calc(100% - 170px);
  white-space: nowrap;
  overflow: hidden;
}

/* Hide default input */
.cv-input {
  display: none;
}

.cv-upload-btn {
  margin-left: auto;
  background: #c5a059;
  color: #ffffffde;
  padding: 10px 18px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  gap: 6px;
  align-items: center;
  border-radius: 0px 4px 4px 0px;
}

.cv-upload-btn:hover {
  background: #e0a63e;
}
/* CF7 Custom Form Wrapper */
.cf7-custom-form {
  max-width: 600px;
  margin: auto;
  color: #fff;
  margin-top: 10px;
}

/* Rows */
.cf7-row {
  display: flex;
  gap: 35px;
  margin-bottom: 30px;
}

.cf7-field {
  width: 50%;
}

/* Full width fields */
.cf7-full {
  width: 100%;
  margin-bottom: 30px;
}

/* Labels */
.cf7-custom-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

/* Inputs */
.cf7-input,
.cf7-textarea,
.cv-simple-input {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 0.5px solid #ffffff;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

/* Placeholder */
.cf7-input::placeholder,
.cf7-textarea::placeholder {
  font-size: 16px;
  line-height: 1.4;
  font-style: Italic;
  color: rgba(255, 255, 255, 0.6);
}

/* Focus */
.cf7-input:focus,
.cf7-textarea:focus {
  border-color: #f5b64c;
}

/* Textarea */
.cf7-textarea {
  min-height: 120px;
  resize: none;
}

/* Checkbox */
.cf7-checkbox {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffffde;
  margin-bottom: 30px;
}
.cf7-checkbox .wpcf7-list-item {
  margin: 0 !important;
}
.cf7-checkbox input {
  margin-right: 4px;
  accent-color: #c5a059;
}

/* Submit Button */
.cf7-submit {
  text-align: left;
}

.cf7-submit input[type="submit"] {
  background: #c5a059;
  color: #f8f9fa;
  border: none;
  padding: 10px 55px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover */
.cf7-submit input[type="submit"]:hover {
  background: #e0a63e;
}
.articles-drop-container {
  display: flex;
  gap: 26px;
  margin-bottom: 40px;
}
.articles-drop-container .category-text {
  color: #1e1e1e;
  font-size: 28px;
  font-weight: 600;
  color: #1e1e1e;
}

.articles-drop-container .insights-dropdown {
  padding: 5px 10px;
  border-radius: 100px;
  background: #003366;
  color: #fff;
  width: fit-content;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  outline: none;
  text-align: center;
  border: none;
  padding-right: 40px;
}
.articles-insights-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.articles-insights-wrapper img {
  width: 100%;
}
.article-card {
  max-width: 30%;
}
.article-card img {
  display: block;
}
.article-content {
  background: #fff;
  padding: 20px 20px 50px 20px;
  border-radius: 0px 0px 30px 30px;
}

h3.article-title {
  font-size: 18px;
  font-weight: 600;

  line-height: 1.4;
}
.article-categories a {
  color: #1e1e1e99;
  font-size: 16px;
  line-height: 1.4;
  pointer-events: none;
  display: inline-block;
  margin-top: 8px;
}
.article-description {
  color: #1e1e1ede;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-date,
.read-more-btn {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 20px;
  display: inline-block;
}
.article-date {
  color: #1e1e1ede;
}
.read-more-btn {
  float: right;
  color: #003366;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-menu {
  align-items: center;
}
@media (max-width: 1366px) {
  .ray-slider .e-con-boxed {
    min-height: 560px;
  }
}
@media (max-width: 1280px) {
  .about-us-slider .e-con-boxed {
    min-height: 300px;
  }
  .event-card {
    max-width: 337px;
  }
}
/* Mobile Responsive */
@media (max-width: 1024px) {
  .nav-inner {
    background: transparent;
  }
  .main-menu li.current-menu-item a {
    background: #003366;
    color: #fff;
  }
  .menu-wrapper {
    background: #ffffffef;
  }
  #banner-img video {
    height: 100vh !important;
    width: 100% !important;
    border-radius: 0 !important;
    animation: none !important;
    transform: translatey(0) !important;
  }

  #banner-img {
    height: 100% !important;
    min-height: 100% !important;
  }
  .approach-list ul .eael-feature-list-content-box {
    margin-left: 0px !important;
  }

  .article-card {
    max-width: 46%;
  }
  .event-card {
    max-width: 48%;
  }
  .event-image img {
    width: 100%;
  }
  .cf7-row,
  .cf7-full,
  .cf7-checkbox {
    margin-bottom: 24px;
  }
  .event-banner,
  .single-event-main {
    padding: 80px 60px 60px;
  }
  .event-banner .banner-title,
  .single-event-main .event-category + h1,
  .featured-content h2 {
    font-size: 40px;
  }
  .team-container {
    grid-template-columns: 1fr 1fr;
  }
  .team-container .team-card {
    max-width: 100%;
  }
  .events-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .events-section .event-card {
    max-width: 100%;
  }
  h2.main-heading {
    font-size: 40px;
    margin-top: 60px;
  }
  .career-card {
    gap: 30px;
  }
  .ray-slider .e-con-boxed {
    min-height: 540px;
  }
  .about-us-slider .e-con-boxed {
    min-height: 230px;
  }
  .scrolled .menu-wrapper {
    background: #001932e3 !important;
  }
  .btn-primary {
    max-width: fit-content;
    margin: 0 auto;
  }

  .nav-cta {
    display: block;
    margin: 25px 0px;
  }
  .main-menu {
    gap: 25px;
  }
  .main-menu {
    gap: 25px;
    overflow: overlay;
    padding-top: 30px;
  }
  .footer-container {
    flex-wrap: wrap;
  }
  .map-section {
    width: 100%;
  }
  .footer-container iframe {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .imp-img {
    width: 50%;
  }
  .cf7-row {
    flex-direction: column;
  }

  .cf7-field {
    width: 100%;
  }
  .ray-slider .e-con-boxed {
    min-height: 560px;
  }
  .about-us-slider .e-con-boxed {
    min-height: 260px;
  }
  .article-card {
    max-width: 100%;
  }
  .logo-section .footer-logo {
    justify-content: flex-start;
    flex-direction: row;
  }
  .copyright-container {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .imp-img {
    width: 100%;
  }
  .drag-section,
  .drag-section * {
    cursor: normal !important;
  }
  .articles-insights-wrapper,
  .events-container {
    gap: 30px;
  }
  .articles-drop-container {
    gap: 20px;
    margin-bottom: 0px;
    flex-direction: column;
  }
  #banner-img video {
    height: 100vh !important;
  }
  .cf7-custom-form label,
  .cf7-checkbox,
  .cf7-submit input[type="submit"] {
    margin-top: 10px;
    font-size: 16px;
  }
  .cf7-row {
    gap: 24px;
    margin-bottom: 24px;
  }
  .cf7-input,
  .cf7-textarea {
    font-size: 14px;
  }
  .article-card,
  .event-card {
    max-width: 100%;
  }
  .article-content {
    padding: 20px 20px 30px;
  }
  h3.article-title,
  .event-content-single h3,
  .card-outer-wrapper .event-details h3,
  .career-description {
    font-size: 18px;
  }
  .article-description,
  .article-date,
  .read-more-btn,
  .event-content .event-link,
  .event-banner .back-button,
  .articles-drop-container .insights-dropdown,
  .team-container .team-card .team-link {
    font-size: 16px;
  }
  .event-content h3,
  .event-banner .event-dynamic-title,
  .event-banner .banner-tagline,
  .team-container .team-card .team-position,
  .team-container .team-card .team-description {
    font-size: 16px;
  }
  .event-content .event-excerpt,
  .event-content .event-date {
    font-size: 13px;
  }
  .event-card:nth-child(even) {
    flex-direction: column;
  }
  .cf7-custom-form {
    max-width: 100%;
  }
  .event-banner {
    padding: 90px 20px 40px;
  }
  .event-banner .banner-title,
  .event-title {
    font-size: 32px;
    text-align: center;
  }
  .event-banner .banner-tagline,
  .event-subtitle {
    font-size: 16px;
  }
  .single-event-main {
    padding: 20px;
  }
  .event-banner .banner-title,
  .featured-content h2 {
    font-size: 32px;
  }
  .single-event-main .event-category + h1 {
    margin-bottom: 16px;
  }
  .card-outer-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .event-banner .banner-title {
    text-align: center;
  }

  .articles-drop-container .category-text,
  .team-container .team-card .team-name,
  .career-title,
  .career-apply {
    font-size: 20px;
  }
  /* 	.articles-drop-container .category-text{
		margin-bottom:40px;
	} */
  .articles-drop-container .insights-dropdown {
    text-align: left;
  }
  .selector-container {
    margin-bottom: 30px;
    width: fit-content;
  }
  .selector-container::after {
    right: 8px !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
  }
  .team-container {
    grid-template-columns: 1fr;
  }
  .events-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  h2.main-heading {
    font-size: 32px;
    margin: 40px 0px 20px;
  }
  .events-filter a,
  .career-meta span {
    font-size: 14px;
  }
  .featured-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .career-card-content {
    width: 100%;
  }
  .career-card {
    flex-direction: column;
    padding: 20px 0px;
  }
  .ray-slider .e-con-boxed {
    min-height: 450px;
  }
  .banner-after-content {
    top: 60%;
    transform: translateY(-60%);
  }
  .event-banner .event-dynamic-title,
  .event-breadcrumb {
    margin: 10px auto;
    font-size: 16px;
  }
  .footer-container {
    width: 90%;
    margin: 0 auto;
  }
  .tagline p {
    margin-top: 2rem;
  }
  .copyright-text {
    margin-top: 2rem;
  }
  .cf7-custom-form .last-input {
    margin-bottom: 16px;
  }
  .footer-container {
    align-items: flex-start;
  }
  .footer {
    text-align: left;
  }
  .contact-item .contact-text {
    text-align: left;
  }
  .event-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .featured-content h2 {
    margin-top: 16px;
  }
  .events-section {
    margin-bottom: 40px;
  }
  .event-banner .banner-tagline {
    margin-top: 16px;
  }
  .single-event-main {
    padding: 20px 20px 40px;
  }
}
.cf7-custom-form label {
  display: flex !important;
}
.cv-upload-btn {
  max-width: 150px;
  width: 100%;
}
.cursor-normal,
.cursor-normal * {
  cursor: pointer !important;
}
.footer-section.contact-section {
  max-width: 268px;
}
.contact-checkbox {
  flex-direction: row;
  gap: 4px;
}
.cf7-checkbox p {
  font-size: 16px;
  line-height: 1.5;
}
.list-margin ul {
  padding-left: 25px;
}
.list-margin ul li {
  padding-bottom: 10px;
}
.pillar-box img {
  position: sticky !important;
  top: 100px;
}
.our-pillar-box ul li strong {
  padding-bottom: 10px !important;
  display: inline-block;
  padding-top: 10px;
}

.our-pillar-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.our-pillar-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.our-pillar-box::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.list-margin-bio ul li {
  margin-bottom: 10px;
}

div.navigtion-container {
  align-items: center;
}

.list-margin-bio h3 {
  margin-bottom: 8px;
}
.expert-para p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.expert-card h2,
.article-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.company-card {
  overflow: hidden;
}
.company-card {
  max-width: 286px;
  margin: 0 auto;
  padding: 0px !important;
}
.company-card img {
  width: 100% !important;
}
