@font-face {
  font-family: 'times';
  src: url('../fonts/times');
}

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&family=Times+New+Roman&family=Helvetica+Neue&display=swap');

@font-face {
  font-family: 'Cal Bodoni Palazzo';
  src: url('../fonts/CalBodoniPalazzo-Regular.woff2') format('woff2'),
    url('../fonts/CalBodoniPalazzo-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

img {
    max-width: 100%;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.main-menu1 li a.active {
  color: #FF8F2A;
}


.nav-menu li.open > .sub-menu,
.nav-menu li .sub-menu li.open > ul,
.nav-menu li .sub-menu li ul li.open > ul {
  max-height: 1000px;
}

.main-menu1 .sub-menu {
 display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 260px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  flex-direction: column;
  margin: 5px 0 0 0;      
  padding: 5px 0;         
  opacity: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.main-menu1 li:hover > .sub-menu {
 opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.main-menu1 li {
  position: relative;
}

.main-menu1 li a {
  display: block;
  padding: 8px 15px;      
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li a:hover {
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
  padding-left: 25px;
  border-radius: 8px;
}

.main-menu1 .sub-menu li ul {
  position: absolute;
  margin-left: 0px;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 5px 0;      
  list-style: none;
  opacity: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.main-menu1 .sub-menu li:hover > ul {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  /* background: #00000080; */
  border-radius: 12px;
}

.main-menu1 .sub-menu li ul li ul li a {
    background: #00000070;
}


.main-menu1 .sub-menu li ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li ul li a:hover {
  padding: 8px 15px;       
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
  
}

.container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 5rem;
  box-sizing: border-box;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-section {
  position: relative;
  z-index: 1000;
  padding: 10px 0;
}

.head-img img {
  width: 190px;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 1100;
  color: #fff;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  padding: 8px 15px;         
  line-height: 1.3;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:active {
  color: #FF8F2A;
}

/* .dropdown > a::after,
.dropdown-sub > a::after {
  content: "▸";
  float: right;
  transition: transform 0.3s;
}

.dropdown.open > a::after,
.dropdown-sub.open > a::after {
  transform: rotate(90deg);
} */

.nav-menu ul li .sub-menu li ul {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 0px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  color: #000;
}


@media (max-width: 1024px) {

.nav-menu ul li a.active,
.nav-menu ul li .sub-menu li a.active,
.nav-menu ul li .sub-menu li ul li a.active {
  color: #FF8F2A;
}

.nav-menu ul li .sub-menu li ul {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-width: 80%;
  padding-left: 10px;
  color: #ffffff;
}

.nav-menu ul li .sub-menu li.open > ul {
  max-height: 1000px;
  background: #000;
  width: 100%;
  margin: 0;
  border-radius: 0px;
}

.nav-menu ul li .sub-menu li ul li a {
  font-size: 14px;
  background: #000;
}

.main-menu1 .sub-menu li a:hover {
  border-radius: 0;
}

.nav-menu ul li .sub-menu li.open > ul {
  margin-left: 15px;
}

.nav-menu ul li.open > .sub-menu {
  max-height: 1000px;
  overflow: visible;
  margin-left: 15px;
  box-shadow: none;
}

.nav-menu ul li .sub-menu {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
}

.hamburger {
  display: block;
  font-size: 28px;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  color: white;
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease;
  padding-top: 60px;
}

.nav-menu.active {
  display: flex;
}

.nav-menu ul{
  gap: 15px;
}

.nav-menu ul {
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 25px;
  margin: 0;
}

.nav-menu ul li {
  position: relative;
  width: 100%;
  border-width: 40%;
}

.nav-menu ul li.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

/* .nav-menu ul li.has-submenu > a::after {
  content: "+";
  font-size: 22px;
  color: #FF8F2A;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease, content 0.3s ease;
}

  .nav-menu ul li.open > a::after {
    content: "|";
    transform: rotate(0deg);
    font-size: 12px;
  } */

  .nav-menu ul li .sub-menu {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #ffffff;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1000px;
    width: 90%;
    padding: 10px 25px;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px;
    font-size: 15px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li ul {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1200px;
    width: 85%;
    padding: 2px;
  }

  .nav-menu ul li .sub-menu li ul li a {
    font-size: 14px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li a,
  .nav-menu ul li .sub-menu li ul li a {
    line-height: 1.3;
  }

  #closeBtn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    z-index: 2000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu {
    width: 100vw !important;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 60px;
    z-index: 1500;
  }

  .nav-menu ul li {
    border-width: 40%;
  }

  .nav-menu ul li .sub-menu li {
    border-width: 40%;
  }

  .nav-menu {
    background: radial-gradient(circle at top, #000, #000);
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    animation: slideInMenu 0.4s ease forwards;
  }

  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu ul li {
    transition: all 0.3s ease;
  }

  .nav-menu ul li a {
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .nav-menu ul li a:hover {
    color: #FF8F2A;
  }

  .nav-menu ul li.has-submenu > a::after {
    color: #FF8F2A;
  }

  .nav-menu ul li.open > a::after {
    transform: rotate(90deg);
  }

  .nav-menu ul li .sub-menu {
    background: #000;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    margin-left: 10px;
    border-radius: 0 0 12px 12px;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1500px;
    opacity: 1;
    padding: 1px 0;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px 25px;
    background: transparent;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li a:hover {
    color: #FF8F2A;
    border-radius: 6px;
    padding-left: 35px;
  }

  .nav-menu ul li .sub-menu li ul {
    margin-left: 20px;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1100px;
    border-bottom: 1px solid #333232;
  }

  .nav-menu ul li .sub-menu li ul li a {
    padding: 10px 35px;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li ul li a:hover {
    color: #FF8F2A;
  }

  #closeBtn {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  #closeBtn:hover {
    color: #FF8F2A;
    transform: rotate(90deg);
  }

  
  .nav-menu ul li .sub-menu li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 25px;
    font-size: 17px;
    color: #ffffff;
    background: transparent;
    position: relative;
  }

  /* .nav-menu ul li .sub-menu li.has-submenu > a::after {
    content: "+";
    font-size: 18px;
    color: #FF8F2A;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, content 0.3s ease;
  }

  .nav-menu ul li .sub-menu li.open > a::after {
    content: "|";
    font-size: 12px;
  } */

  .nav-menu ul li {
  margin: 0;
  padding: 0;
}


.nav-menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  /* background: rgba(252, 248, 248, 0.15); */
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); */
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 0;  
  margin: 0;  
}


.nav-menu ul li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); 
}
}

span#closeBtn {
  display: none;
}

/* media hero section */

.media-hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url("../images/media-hero-image.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* overflow: hidden; */
}

.media-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.media-hero > * {
    position: relative;
    z-index: 2;
}


.media-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.media-logo {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.media-logo img {
    width: 180px;
}

.media-nav-links {
    display: flex;
    gap: 30px;

}

.media-nav-links a {
    transition: 0.3s;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.media-nav-links a:hover {
    color: #f57c00;
}


/* Hamburger Button */

.media-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.media-hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}


/* Centered Heading */

.media-hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.2rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.media-highlight {
   color: #FF8F2A;
    font-weight: 510;
    font-style: italic;
    font-family: times;
}

/* Responsive Navbar */

@media (max-width: 768px) {

    .media-hamburger {
        display: flex;
    }

    .media-nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 60px;
        flex-direction: column;
        gap: 20px;
        background-color: #fff;
        padding: 15px 25px;
        border-radius: 20px;
        z-index: 999;
    }

    .media-nav-links.active {
        display: flex;
    }
}


/* Newspaper section */

:root {
    --overlay-bg: rgba(0, 0, 0, 0.4);
    --text-color: #fff;
    --card-radius: 20px;
}

.Newspaper-section-title {
    text-align: left;
}

.Newspaper-section-title h2 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f2d2f;
    margin-bottom: 30px;
    margin-top: 150px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.Newspaper-section-title p {
    font-size: 1.3em;
    line-height: 1.6;
    color: #A6A6A6;
    max-width: 950px;
    margin-bottom: 50px;
   font-family: 'Helvetica Neue', Arial, sans-serif;;
}

.Newspaper-media-wrapper {
    /* max-width: 1600px; */
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Newspaper-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.Newspaper-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    background: #000;
    width: 100%;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--card-radius);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.Newspaper-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 20px 22px;
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.Newspaper-overlay h4 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.Newspaper-overlay p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Set fixed heights for layout consistency */
.Newspaper-top-row .news-card:first-child,
.Newspaper-top-row .news-card:last-child {
    height: 650px;
}

.Newspaper-bottom-row .news-card {
    height: 500px;
}

/* video-section */

.media-video-heading {
    font-size: 4.4em;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.4;
    color: #00262C;
    margin-bottom: 30px;
    margin-top: 150px;
    max-width: 1030px;
}

.media-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 625px;
}

video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.media-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.media-play-overlay::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.media-video-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #A6A6A6;
    max-width: 900px;
    margin-bottom: 70px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


/* award section  */


.award {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 150px 1px 150px 150px;
    background-color: #F2F4F0;
}

.award-text-section {
    flex: 1 1 500px;
}

.award-text-section h2 {
    font-size: 4.5em;
    max-width: 1020px;
    line-height: 1.3;
    color: #00262C;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.award-text-section p {
    color: #A6A6A6;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 50%;
    margin-top: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.slider-section {
    flex: 1 1 100%;
    overflow: hidden;
}

.owl-carousel {
    padding-right: 40px;
}

.owl-carousel .item {
    height: 450px;
    border-radius: 20px;
    /* overflow: hidden; */
}

.award-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* object-fit: cover; */
}

/* Dots styling */
.owl-theme .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: orange;
}


/* testimonial-section */

.testimonial-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 20px;
}

.testimonial-header h2 {
    font-size: 3.6rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #00262C;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.testimonial-header p {
    color: #A6A6A6;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
    max-width: 620px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.testimonial-arrows {
    display: flex;
    gap: 15px;
}

.testimonial-arrow {
    background: none;
    border: 1px solid #E0E0E0;
    color: #E0E0E0;
    font-size: 24px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    border: 2px solid #FF8F2B;
    color: #FF8F2B;
}

.testimonial-carousel {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    width: 100%;
    margin-bottom: 200px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 19.333%;
    background-color: #f5f8f6;
    padding: 50px;
    border-radius: 16px;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.4s ease;
    filter: blur(2px);
    cursor: pointer;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    background-color: #F2F4F0;
    filter: none;
}

.stars {
    color: #fcb900;
    font-size: 3.2rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    margin-bottom: 45px;
    line-height: 1.5;
    font-size: 22px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.testimonial-card strong {
    font-weight: bold;
    display: block;
    font-size: 25px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    will-change: transform;
}

.testimonial-carousel {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
}


.journey-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-left: 200px;
    padding-top: 100px;
}

.journey-text-section h2 {
    font-size: 4.5em;
    font-weight: 700;
    line-height: 1.4;
    color: #00262C;
    max-width: 1300px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.journey-text-section p {
    color: #A6A6A6;
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.4;
    max-width: 800px;
    margin-top: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.journey .owl-carousel .journey-item {
    text-align: left;
    padding: 10px;
}

.journey-image-wrap {
    position: relative;
    width: 100%;
    /* aspect-ratio: 4/3; */
    overflow: hidden;
    border-radius: 20px;
}

.journey-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.journey-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    cursor: pointer;
}

.journey-play-btn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin: auto;
    position: relative;
    top: 20px;
    left: 23px;
}

.journey-text-wrap {
    margin-top: 15px;
}

.journey-text-wrap h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 8px;
    color: #000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.journey-text-wrap p {
    color: #A6A6A6;
    font-size: 1.0rem;
    margin: 0 0 8px;
    max-width: 400px;
    line-height: 1.4;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.journey-text-wrap .journey-date {
    color: #111;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 100px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Owl Dots styling */
.journey-owl-theme .owl-dots {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.journey-owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    transition: background 0.3s;
}

.journey-owl-theme .owl-dots .owl-dot.active span {
    background: orange;
}


/* inquery-section */

.inquiry {
    margin: 0;
    background-color: #F2F4F0;
    color: #062b2f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 850px;
    margin-top: 100px;
}

.inquiry-section {
    text-align: center;
}

.inquiry-section h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
    overflow: visible;
    max-width: 1550px;
}

.inquiry-section p {
    font-size: 1.2rem;
    color: #00262C;
    margin-bottom: 25px;
    line-height: 1.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
  margin: 0 auto 25px; 
  text-align: center;
}

.glow-button {
    position: relative;
    /* padding: 12px 30px; */
    font-size: 14px;
    /* font-weight: 600; */
    color: white;
    background: #FF8F2B;
    /* Solid orange initial look */
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    width: 130px;
    text-align: center;
    height: 48px;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.glow-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, filter 0.3s ease;
}

.glow-button .icon {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* .glow-button::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 999px;
    background: conic-gradient(from 0deg,
     #FF8F2B 0%,
     #ffc382 25%,
     #FF8F2B 50%,
     #ffbc7a 75%,
     #FF8F2B 100%);
    z-index: 0;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-button::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #FF8F2B;
    border-radius: 999px;
    z-index: 1;
    pointer-events: none;
}

.glow-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #FF8F2Baa;
}

.glow-button:hover::before {
    opacity: 1;
    animation: spinBorder 3s linear infinite, pulseGlow 1.5s ease-in-out infinite;
}

.glow-button:hover span {
    filter: brightness(1.3);
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: brightness(1.1) drop-shadow(0 0 6px #FF8F2B);
    }

    50% {
        filter: brightness(1.6) drop-shadow(0 0 16px #ffc382);
    }
} */

@media (max-width: 500px) {
      .glow-button {
        /* padding: 0.8em 1.4em;
        font-size: 14px; */
        height: 35px;
    }
}


/* footer section */

.footer-section {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
    font-family: sans-serif;
}

.footer-grid {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 60px;
}

.footer-box {
    width: 20%;
}

.footer-box.footer-logo-box {
    width: 30%;
}

.footer-box.footer-logo-box a {
    color: #fff;
}

.footer-logo-box img {
    width: 140px;
    margin-bottom: 15px;
}

.footer-box h4 {
    font-size: 16px;
    margin: 12px 0;
    color: #00262C;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-box p,
.footer-box ul li a {
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-box.footer-logo-box p {
    color: #A6A6A6;
    max-width: 280px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding-bottom: 20px;
}

.footer-box p,
.footer-box ul li a,
.footer-box a {
    color: #A6A6A6;
}

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

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
}

/* Social Icons With Effects */

.social-icons {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a i {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
}

.social-icons a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}

.social-icons a:hover::before {
    top: 0;
}

/* Specific icon backgrounds */
/* .social-icons a:nth-child(1)::before {
    background: #55acee;
    Twitter
} */

.social-icons a:nth-child(1)::before {
    background: #3b5999;
    /* Facebook */
}

.social-icons a:nth-child(2)::before {
    background: #0077b5;
    /* LinkedIn */
}

.social-icons a:nth-child(3)::before {
    background: #ff0000;
    /* YouTube */
}

.social-icons a:nth-child(4)::before {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    /* Instagram */
}

.copyright {
    text-align: center;
    font-size: 15px;
    color: #A6A6A6;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.footer-spacer {
  flex: 1;
} /* Left side empty */

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-center p {
  margin: 0;
  font-size: 18px;
  color: #A6A6A6;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-right a {
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  color: #A6A6A6;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-right a:hover {
  color: #ff9f43;
}


@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 10px;
  }

  .footer-spacer {
    display: none;
  }
}

@media (max-width: 768px){
  .footer-right{
    display: flex;
  }
}



/* animation-css */

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
    line-height: 1.4;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
    /* margin-right: 6px; */
}

.word.visible {
    opacity: 1;
    transform: translateY(0);
}

.line {
    display: block;
}



/* responsive section */

/* Responsive Styles media-hero section*/

@media (max-width: 1024px) {

    .media-hero {
        height: 450px;
    }

    .media-hero-heading {
        font-size: 3.8rem;
        max-width: 400px;
    }

}

@media (max-width: 768px) {

    .container {
         padding: 0 30px;
    }

    .media-logo img{
        width: 140px;
    }

    /* hero-section */

    .media-hero {
        height: 300px;
    }

    .media-hero-heading {
        font-size: 45px;
        padding: 0 20px;
    }

}

@media (max-width: 500px) {

    .container {
        padding: 0 20px;
    }

    /* hero-section */

    .media-hero {
        height: 250px;
    }

    .media-hero-heading {
        font-size: 2.0rem;
    }

    .media-navbar {
        padding: 15px;
    }

    .media-logo img {
        width: 90px;
    }

}


/* Responsive Styles newspepar section*/

/* Fixed heights (desktop) */

.Newspaper-top-row .news-card:first-child,
.Newspaper-top-row .news-card:last-child {
    height: 650px;
}

.Newspaper-bottom-row .news-card {
    height: 500px;
}

@media (max-width: 1024px) {

    .Newspaper-section-title h2 {
        font-size: 3.1rem;
        max-width: 750px;
    }

    .Newspaper-section-title p {
        max-width: 650px;
        font-size: 1.1rem;
    }

}


@media (max-width: 1200px) {

    .Newspaper-top-row {
        grid-template-columns: 1fr 1fr;
    }

    .Newspaper-bottom-row {
        grid-template-columns: 1fr 1fr;
    }

    .Newspaper-top-row .news-card,
    .Newspaper-bottom-row .news-card {
        height: 360px;
    }
}

@media (max-width: 768px) {

    .Newspaper-top-row,
    .Newspaper-bottom-row {
        grid-template-columns: 1fr;
    }

    .Newspaper-top-row .news-card,
    .Newspaper-bottom-row .news-card {
        height: 450px;
    }

    .Newspaper-section-title h2 {
        font-size: 2.3rem;
        margin-top: 60px;
        max-width: 550px;
        margin-bottom: 20px;
    }

    .Newspaper-section-title p {
        font-size: 1rem;
        max-width: 500px;
    }

    .Newspaper-top-row .news-card:first-child,
    .Newspaper-top-row .news-card:last-child {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .Newspaper-section-title h2 {
        font-size: 1.8rem;
    }

    .Newspaper-section-title p {
        font-size: 0.75rem;
    }

    .Newspaper-overlay {
        padding: 12px;
    }

    .Newspaper-overlay h4 {
        font-size: 1rem;
    }

    .Newspaper-overlay p {
        font-size: 0.9rem;
    }

    .Newspaper-top-row .news-card,
    .Newspaper-bottom-row .news-card {
        height: 300px;
    }

    .Newspaper-top-row .news-card:first-child,
    .Newspaper-top-row .news-card:last-child {
        height: 300px;
    }
}

/* Responsive Styles video section*/

@media (max-width: 1024px) {

    .media-video-heading {
        font-size: 3.0rem;
        max-width: 800px;
        margin-top: 100px;
    }

    .media-video-description {
        font-size: 1.2rem;
        padding: 0 20px;
        max-width: 750px;
    }

    #media-video {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

}

@media (max-width: 768px) {
    .media-video-heading {
        font-size: 2.4rem;
        margin-top: 100px;
    }

    .media-video-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    #media-video {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .media-video-heading {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .media-video-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .media-play-overlay {
        width: 55px;
        height: 55px;
    }

    #media-video {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .media-play-overlay::before {
        border-left: 16px solid #000;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}


/* Responsive Styles award section */

@media (max-width: 1024px) {
    .award-text-section h2 {
        font-size: 3.6em;
        max-width: 900px;
    }
}


@media (max-width: 1200px) {
    .award {
        padding: 50px 0 50px 100px;
    }

    .award-text-section p {
        font-size: 20px;
        max-width: 80%;
    }
}

@media (max-width: 991px) {
    .award {
        padding: 50px 0 50px 100px;
        gap: 40px;
    }

    .award-text-section h2 {
        font-size: 3em;
    }

    .award-text-section p {
        font-size: 1.1rem;
    }

    .owl-carousel .item {
        height: 400px;
    }

}

@media (max-width: 600px) {

    .award {
        padding: 40px 20px;
    }

    .award-text-section h2 {
        font-size: 2em;
    }

    .award-text-section p {
        font-size: 1rem;
    }

    .owl-carousel .item {
        height: 300px;
    }

}

/* Responsive Styles testimonial section */

@media (max-width: 1024px) {

    /* .testimonial-section */

    .testimonial-header h2 {
        font-size: 3.1rem;
    }

    .testimonial-header p {
        font-size: 21px;
    }

}


@media (max-width: 768px) {

    /* testimonial-section */

    .testimonial-header-row {
        padding: 40px 20px;
    }

    .testimonial-header h2 {
        font-size: 2.9rem;
    }

    .testimonial-header p {
        font-size: 20px;
        margin-bottom: 20px;
        max-width: 550px;
    }

    .testimonial-carousel {
        margin-bottom: 50px;
    }

     .testimonial-card {
        flex: 0 0 15.11%;
        padding: 20px;
    }

}

@media (max-width: 500px) {

    /* testimonial-section */

  .testimonial-header h2 {
        font-size: 1.8rem;
        padding-top: 50px;
    }

    .testimonial-header p {
        font-size: 15px;
        max-width: 300px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        flex: 0 0 12.11%;
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 12px;
    }

    .testimonial-card strong {
        font-size: 16px;
    }

    .stars {
        font-size: 2rem;
    }
}

/* Responsive Styles journey section */

@media (max-width: 1024px) {

    .journey-section {
        padding-left: 100px;
    }

    .journey-text-section h2 {
        font-size: 3.0em;
        max-width: 900px;
    }

    .journey-text-section p {
        font-size: 20px;
        max-width: 800px;
    }

    .journey-text-wrap h4 {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .journey-text-wrap p {
        font-size: 1.0rem;
        max-width: 450px;
    }

}

@media (max-width: 768px) {

    .journey-section {
        padding-left: 100px;
    }

    .journey-text-section h2 {
        font-size: 2.0rem;
        max-width: 600px;
    }

    .journey-text-section p {
        font-size: 17px;
        max-width: 550px;
    }

    .journey-text-wrap h4 {
        font-size: 1.0rem;
    }

    .journey-text-wrap p {
        font-size: 0.75rem;
        max-width: 450px;
    }

    .journey-text-wrap .journey-date {
        font-size: 1.0rem;
        margin-top: 20px;
        margin-bottom: 80px;
    }
}

@media (max-width: 600px) {

    .journey-section {
        padding-left: 50px;
    }

    .journey-text-section h2 {
        font-size: 1.5rem;
        max-width: 300px;
    }

    .journey-text-section p {
        font-size: 12px;
        max-width: 350px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .journey-text-wrap h4 {
        font-size: 1.0rem;
        font-weight: 600;
    }

    .journey-text-wrap p {
        font-size: 0.75rem;
        max-width: 250px;
    }

    .journey-text-wrap .journey-date {
        font-size: 1.0rem;
        margin-top: 20px;
        margin-bottom: 80px;
    }

}

/* responsive inquiry-section */

@media (max-width: 992px) {

     /* inquiry-section */

    .inquiry {
        height: 800px;
    }

    .inquiry-section h2 {
        font-size: 4.1rem;
    }

}

@media (max-width: 768px) {

    .inquiry-section {
        margin-top: 50px;
    }

    .inquiry {
        height: 550px;
    }

    .inquiry-section h2 {
        font-size: 3.1rem;
    }

    .inquiry-section .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

}

@media (max-width: 560px) {

   /* inquiry-section */

    .inquiry {
        margin-top: 50px;
    }

    .inquiry {
        height: 350px;
    }

    .inquiry-section {
        padding: 25px;
        margin-top: 5px;
    }

    .inquiry-section h2 {
        font-size: 1.7rem;
    }

    .inquiry-section p {
        font-size: 0.8rem;
    }

    /* .inquiry-section .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    } */

}

/* responsive footer section  */

@media (max-width: 1024px) {

    /* footer section */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 20px;
    }

    .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 125%;
}

}

@media (max-width: 768px) {

   /* footer-section */

    .footer-box p,
    .footer-box ul li a {
        font-size: 15px;
    }

    .footer-box {
        width: 32%;
    }

    .footer-box.footer-logo-box p {
        margin: 0 auto;
    }

    .social-icons {
        text-align: center;
    }

    .footer-grid {
        gap: 10px;
    }

    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-logo-bottom img {
        width: 120px;
    }

    .footer-box.footer-logo-box p {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 560px) {

    /* footer section */

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-box,
    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 30px 0;
    }

    /* .inquiry-btn {
        width: 50%;
        padding: 10px;
        justify-content: center;
    } */

    .copyright {
        font-size: 12px;
    }

     .social-icons {
        width: 100%;
    }


}

.about-nav-links li, .property-nav-links li, .media-nav-links li, .category-nav-links li, .career-nav-links li {
      list-style: none;
  }
.media-nav-links a.active {
    color: #FF8F2A;
}



/* === Inquiry Popup Styles === */
.inquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex; /* ✅ use flex for centering */
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.inquiry-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.3s ease;
}

.inquiry-popup-content h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
  color: #222;
}

.inquiry-popup-content label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.inquiry-popup-content input,
.inquiry-popup-content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.inquiry-popup-content input:focus,
.inquiry-popup-content textarea:focus {
  border-color: #ff9f43;
}

.submit-btn {
  background: #ff9f43;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e7892c;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* ---------- NEW Submenu Toggle System ---------- */

/* Remove old arrow icons completely */
.nav-menu ul li.has-submenu > a::after,
.nav-menu ul li.open > a::after,
.nav-menu ul li .sub-menu li.has-submenu > a::after,
.nav-menu ul li .sub-menu li.open > a::after {
  content: none !important;
}

/* Toggle icon base style */
.submenu-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

/* Show toggle on mobile */
@media (max-width: 1024px) {
  .submenu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 22px;
  }

  /* Rotate or change color when submenu is open */
  .nav-menu li.open > .submenu-toggle {
    color: #FF8F2A;
    transform: translateY(-50%) rotate(180deg);
  }

  /* Mobile submenu animation */
  .nav-menu li .sub-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    background: #000;
    /* border-left: 1px solid #333; */
  }

  .nav-menu li.open > .sub-menu {
    max-height: 800px;
    opacity: 1;
    padding: 5px 0;
  }

  .nav-menu li .sub-menu li a {
    color: #fff;
    font-size: 15px;
    padding: 10px 25px;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu li .sub-menu li a:hover {
    color: #FF8F2A;
    padding-left: 35px;
  }
}



