/* Clash Grotesk Heading Fonts */
@font-face {
  font-family: "Clash Grotesk";
  src: url("../fonts/ClashGrotesk_Heading/Fonts/OTF/ClashGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Clash Grotesk";
  src: url("../fonts/ClashGrotesk_Heading/Fonts/OTF/ClashGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Clash Grotesk";
  src: url("../fonts/ClashGrotesk_Heading/Fonts/OTF/ClashGrotesk-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

/* General Sans Subheading Fonts */
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans_SubHeading/Fonts/OTF/GeneralSans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans_SubHeading/Fonts/OTF/GeneralSans-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans_SubHeading/Fonts/GeneralSans-Medium.woff2") format("woff2"),
    url("../fonts/GeneralSans_SubHeading/Fonts/GeneralSans-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans_SubHeading/Fonts/GeneralSans-Regular.woff2") format("woff2"),
    url("../fonts/GeneralSans_SubHeading/Fonts/GeneralSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

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

body {
  font-family: "Clash Grotesk", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Global Styles End ---*/

.typing-text {
  overflow: hidden;
  word-wrap: wrap;
  /* white-space: nowrap; */
  /* display: inline-block; */
}

.text-truncate-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1em * 5);
  word-break: break-word;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1em * 5);
  word-break: break-word;
}

/* ===== REUSABLE FADE-UP ANIMATION CLASS START ===== */
.fade-up-text {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-up-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-text.delay-1 {
  transition-delay: 0.1s;
}

.fade-up-text.delay-2 {
  transition-delay: 0.2s;
}

.fade-up-text.delay-3 {
  transition-delay: 0.3s;
}

/* ===== REUSABLE FADE-UP ANIMATION CLASS END ===== */

/* ====== Header section start ======== */

/* --- Header CSS Start ---*/
.main-header {
  background: #fff;
  padding: 1.3rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #031626;
  transition: color 0.3s ease;
  padding: 0.5rem 0;

  font-family: "Clash Grotesk";
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
}

.main-nav a:hover {
  color: #2980b9;
}

.header-cta {
  background: #1a75bc;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;

  font-family: "Clash Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
}

.main-nav .header-cta {
  padding: 15px 20px;
  color: white;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: #1f5f8b;
  color: whitesmoke !important;
}

/*---- Header CSS End ---- */

/* Mobile Menu CSS Start */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}

.mobile-menu-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1a75bc;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 8px;
  transform-origin: center;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 15px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 22px;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu CSS End */

/* Side Navigation CSS Start */
.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #1a75bc;
  backdrop-filter: blur(10px);
  padding: 1rem;
  transition: right 0.3s ease-in-out;
  z-index: 1001;
}

.side-nav.active {
  right: 0;
}

.side-nav .main-nav {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  display: block;
}

.side-nav .main-nav a {
  font-size: 1.2rem;
}

.side-nav .header-cta {
  display: block;
  margin-top: 2rem;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Side Navigation CSS End */

/* ====== Header section End ======== */

/* ==== Hero Section CSS Start ====*/
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
  color: white;
}

.hero-subtitle {
  letter-spacing: 10px;
  opacity: 0;
  transform: translateY(30px);

  font-family: "Clash Grotesk";
  font-weight: 400;
  font-size: 35px;
}

.hero-title {
  opacity: 0;
  transform: translateY(30px);

  font-family: "Clash Grotesk";
  font-weight: 500;
  font-size: 65px;
  line-height: 105%;
  letter-spacing: 0%;
}

.hero-cta {
  background: white;
  color: #031626;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);

  font-family: "Clash Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin-top: 30px;
}

.hero-cta:hover {
  background: #1a75bc;
  color: white;
  transform: translateY(-2px);
  box-shadow:
    2px 2px 5px rgba(0, 0, 0, 0.2),
    inset 2px 2px 5px rgba(218, 218, 221, 0.582),
    inset -2px -2px 5px rgba(50, 50, 51, 0.582);
}

.hero-section .owl-dots {
  text-align: center;
  margin-top: 2rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: white;
}

/* Content Section CSS Start */
.content-section {
  padding: 5rem 0;
}

.section-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Content Section CSS End */

/* ===Hero Section CSS End ====*/

/* ===== ABOUT SECTION CSS START ===== */
.about-section {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  /* height: 100vh; */
}

.about-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.about-slider {
  width: 100%;
  border-radius: 20px;
  overflow-x: hidden;
}

.about-slide {
  background: #d7dde8;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 15px;
  position: relative;
}

.about-slide-content {
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

.about-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-slide:hover .about-image {
  transform: scale(1.05);
}

.about-text-content {
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #d7dde8 0%, #d7dde8 100%);
}

.about-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #031626;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.about-description {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #031626;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-section .about-cta {
  background: #ffffff;
  color: #031626;
  padding: 20px 30px;
  /* border: 2px solid #e9ecef; */
  border-radius: 8px;
  text-decoration: none;
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: capitalize;
  align-self: center;
}

.about-cta:hover {
  background: #1a75bc;
  color: white;
  border-color: #1a75bc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 117, 188, 0.3);
}

/* SPECIFIC OWL CAROUSEL STYLING FOR ABOUT SECTION ONLY */
.about-section .about-slider.owl-carousel .about-owl-dot {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.about-section .about-slider.owl-carousel .about-owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e5e8e9;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: none;
}

.about-section .about-slider.owl-carousel .about-owl-dot:hover {
  background: rgba(26, 117, 188, 0.6);
  transform: scale(1.1);
}

.about-section .about-slider.owl-carousel .about-owl-dot.active {
  background: #1a75bc;
  transform: scale(1.1);
}

/* Hide navigation arrows for about section */
.about-section .about-slider.owl-carousel .owl-nav {
  display: none;
}

/* Desktop Layout */
.about-slide-content {
  flex-direction: row;
  /* min-height: 500px; */
}

.about-text-content {
  width: 50%;
  text-align: left;
  padding: 60px 50px;
}

.about-image-container {
  width: 50%;
  height: auto;
}

.about-title {
  margin-bottom: 30px;

  font-family: "Clash Grotesk";
  font-weight: 500;
  font-size: 35px;
  text-align: center;
}

.about-description {
  margin-bottom: 40px;

  font-family: "General Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: justify;
}

.about-cta {
  align-self: center;
  padding: 18px 35px;

  font-family: "Clash Grotesk";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

/* ===== ABOUT SECTION CSS END ===== */

/* ===== SERVICES SECTION CSS START ===== */
.services-section {
  padding: 0px 0;
  position: relative;
  overflow: hidden;
  /* background: #f8f9fa; */
}

.services-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #031626;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  position: relative;
  overflow: hidden;
  height: 80vh;
  border-radius: 10px;
  background-image: url("/assets/images/banner_3.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: all 1s ease;
}

.services-item {
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-image 0.5s ease-in-out;
  background-image: url("assets/images/banner_1.png");
  transition: all 1s ease;
}

.services-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(26 117 188 / 25%);
  z-index: 1;
  transition: background 0.3s ease;
}



.services-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/banner_2.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 1s ease;
  z-index: -1;
}

.services-item {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.062);
  /* Semi-transparent background */
}




.services-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.services-item-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  line-height: 1.2;
}

.services-item-description {
  font-size: 16px;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(20px);
  height: 0;
  /* overflow: hidden; */
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    height 0.3s ease;
  position: relative;
  z-index: 2;
  color: #ffffff;
  line-height: 1.2;
}

.services-item-button {
  display: none;
  padding: 10px 20px;
  background-color: white;
  color: #031626;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px) !important;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  margin: 20px auto;
  font-family: "Clash Grotesk", sans-serif;

  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.services-item:hover .services-item-description {
  opacity: 1;
  transform: translateY(0);
  height: auto;
}

.services-item:hover .services-item-button {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition: all 0.3s ease-in-out;
}

.services-item-button:hover {
  background: #1a75bc;
  color: #ffffff;
}

.services-item:hover .services-icon,
.services-item:hover .services-item-title {
  opacity: 0.7;
  transform: translateY(-10px);
}

.services-section.visible .services-title,
.services-section.visible .services-item {
  opacity: 1;
  transform: translateY(0);
}

.services-section.visible .services-item {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: 0.2s;
}

/* ===== SERVICES SECTION CSS END ===== */

/* ===== FOOTER CSS START ===== */
.footer {
  background: linear-gradient(135deg, #1a75bc 0%, #1a75bc 100%);
  color: white;
  padding: 50px 0 0;
  margin-top: auto;

  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}

/* Company Section */
.footer-company {
  grid-column: 1;
  margin-right: 5em;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  color: #2e86c1;
  font-size: 18px;
}

.footer-logo-text {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
}

.footer-logo-text .company-name {
  display: block;
  letter-spacing: 1px;
}

.footer-logo-text .company-type {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
}

.footer-description {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
  text-align: justify;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.877);
  color: #2e86c1;
  transform: translateY(-2px);
}

/* Footer Sections */
.footer-section {
  grid-column: span 1;
}

.footer-section-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section-toggle {
  display: none;
  width: 24px;
  height: 24px;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.footer-section-content {
  overflow: hidden;
  transition: all 0.4s ease;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

/* Connect Us Section */
.footer-contact {
  grid-column: 4;
}

.footer-contact-item {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.footer-contact-label {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin-bottom: 5px;
  display: block;
}

.footer-contact-value {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.footer-contact-value a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.footer-contact-value a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "General Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}



.footer-bottom::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("assets/images/pattern-1.png");
  background-repeat: no-repeat;
  /* background-size: contain; */
  /* background-position: center; */
  bottom: 0;
  right: 0;
  z-index: 2000;
}

.footer-copyright {
  flex: 1;
}

.footer-credit {
  text-align: right;
  position: relative;
  z-index: 20000;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 99999;
}

.footer-credit a:hover {
  color: white;
}

footer.footer a {
  cursor: pointer !important;
}

#projectsSlider .owl-item {
  direction: ltr;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-container {
    padding: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-company {
    grid-column: 1;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-section {
    grid-column: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
  }

  .footer-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-section-title {
    margin-bottom: 0;
    padding: 10px 0;
  }

  .footer-section-toggle {
    display: flex;
  }

  /* FIXED: Mobile toggle states */
  .footer-section-content {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    margin-top: 0;
  }

  .footer-section-content.active {
    max-height: 400px;
    opacity: 1;
    /* padding-top: 15px; */
    margin-top: 10px;
  }

  /* Always open sections (Connect Us) */
  .footer-section.always-open .footer-section-content {
    max-height: none !important;
    opacity: 1 !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
  }

  .footer-section.always-open .footer-section-toggle {
    display: none !important;
  }

  .footer-section.always-open .footer-section-title {
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
  }

  .footer-credit {
    text-align: center;
  }

  .footer-social {
    justify-content: start;
    margin-top: 20px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-company {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-contact {
    grid-column: span 1;
  }
}

/* Desktop - ensure content is always visible */
@media (min-width: 769px) {
  .footer-section-content {
    max-height: none !important;
    opacity: 1 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .footer-section-toggle {
    display: none !important;
  }
}

/* ===== FOOTER CSS END ===== */

/* ===== PROJECTS & CLIENTS SECTION CSS START ===== */
.projects-clients-section {
  padding: 60px 0 0;
  background: #ffffff;
}

.faq-sec-title .section-title {
  width: 90%;
  margin: auto;
  padding: 0 20px;
}

.section-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Our Projects Section */
.projects-section {
  margin-bottom: 50px;
}

.section-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #031626;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.projects-grid {
  position: relative;
}

.project-card {
  position: relative;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: #ffffff;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
  margin: 0 10px;
}

.project-card:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

.img-project-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-project {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.01);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.7) 100%);
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  color: white;
  z-index: 2;
}

.project-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.project-subtitle {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.project-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.project-arrow>img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.project-card:hover .project-arrow {
  background: #2e86c1;
  transform: rotate(40deg);
}

.ion-arrow-up-right {
  width: 18px;
  height: 18px;
  fill: #333;
  transition: all 0.3s ease;
}

.project-card:hover .ion-arrow-up-right {
  fill: white;
}

/* Our Clients Section */
.clients-section {
  margin-top: 40px;
}

.clients-grid {
  position: relative;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 15px;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.img-client {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.7); */
  transition: all 0.3s ease;
}

.client-logo:hover .img-client {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Owl Carousel Custom Styling - Hide Navigation */
.projects-grid.owl-carousel .owl-nav,
.clients-grid.owl-carousel .owl-nav {
  display: none !important;
}

.projects-grid.owl-carousel .owl-dots,
.clients-grid.owl-carousel .owl-dots {
  display: none !important;
}

/* Remove default Owl Carousel margins */
.projects-grid.owl-carousel .owl-stage-outer,
.clients-grid.owl-carousel .owl-stage-outer {
  padding: 0;
}

.projects-grid.owl-carousel .owl-item,
.clients-grid.owl-carousel .owl-item {
  padding: 0;
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .projects-clients-section {
    padding: 0px 0;
  }

  .section-container {
    padding: 0 15px;
  }

  .projects-section {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .project-card {
    min-width: 280px;
    height: 450px;
    margin: 0 8px;
  }

  .project-content {
    padding: 25px 20px;
  }

  .project-title {
    font-size: 24px;
  }

  .project-subtitle {
    font-size: 0.85rem;
  }

  .project-arrow {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }

  .ion-arrow-up-right {
    width: 16px;
    height: 16px;
  }

  .client-logo {
    height: 60px;
    margin: 0 10px;
  }

  .img-client {
    max-height: 45px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-container {
    padding: 0 30px;
  }

  .project-card {
    min-width: 280px;
    height: 380px;
  }

  .client-logo {
    height: 70px;
  }

  .img-client {
    max-height: 55px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .project-card {
    min-width: 320px;
    height: 420px;
  }

  .client-logo {
    height: 90px;
  }

  .img-client {
    max-height: 65px;
  }
}

/* ===== PROJECTS & CLIENTS SECTION CSS END ===== */

/* ===== ANCHORED IN EXCELLENCE SECTION CSS START ===== */
.anchored-excellence-section {
  background: #ffffff;
  position: relative;
  margin-top: 50px;
}

/* Hero Excellence Section */
.excellence-hero {
  background: linear-gradient(135deg, #4a90b8 0%, #2e86c1 50%, #1b4f72 100%);
  position: relative;
  /* padding: 80px 0 60px; */
  overflow: hidden;
}

.excellence-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/images/anchored-hero-bg.png") center center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.excellence-hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.excellence-hero-content {
  text-align: center;
  color: white;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.excellence-hero-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 0px;
  letter-spacing: -0.02em;
  z-index: 1;
  margin-top: 50px;
  color: #ffffff;
}

.excellence-hero-description {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  z-index: 1;
}

/* Ship Image in Hero */
.excellence-ship-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* margin: 40px 0; */
  text-align: center;
}

.img-excellence-ship {
  /* max-width: 600px; */
  width: 100%;
  height: 100%;
  z-index: -1;
  /* opacity: 0.9; */
}

/* Statistics Section */
.excellence-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 50px;
  position: relative;
  z-index: 3;
}

.excellence-stat-item {
  flex: 1;
  text-align: center;
  color: white;
  position: relative;
}

.excellence-stat-item:not(:last-child)::after {
  content: "••••";
  position: absolute;
  right: -10%;
  top: 66%;
  transform: translateY(-50%);
  color: rgb(255, 255, 255);
  font-size: 2rem;
  letter-spacing: 2px;
}

.excellence-stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  /* background: rgba(255, 255, 255, 0.15); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.excellence-stat-item:hover .excellence-stat-icon {
  /* background: rgba(255, 255, 255, 0.25); */
  transform: scale(1.1);
}

.ion-excellence-stat {
  width: 100%;
  height: 100%;
  fill: white;
  object-fit: contain;
}

.excellence-stat-number {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 50px;
  display: block;
}

.excellence-stat-label {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  opacity: 0.9;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* News & Insights Section */
.excellence-news-section {
  padding: 50px 0;
  background: #ffffff;
}

.excellence-news-container {
  margin-left: 5em;
  /* margin: 0 auto; */
  padding: 0;
}

.excellence-news-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #031626;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.excellence-news-slider {
  position: relative;
}

.excellence-news-item {
  background: #ffffff;
  overflow: hidden;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 5px;
  height: 400px;
  position: relative;
}

.excellence-news-item:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

.img-excellence-news-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.img-excellence-news {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.excellence-news-content {
  padding: 10px 0px;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
}

.excellence-news-item-title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #031626;
  /* margin-bottom: 8px; */
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.excellence-news-item-date {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2e86c1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-container.w-100 {
  width: 100%;
  padding: 0px;
}

.section-container.w-100 .projects-section {

  padding-left: 90px;
}

.excellence-ship-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
}



/* Owl Carousel Custom Styling for Excellence News */
/* .excellence-news-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
  } */

/* .excellence-news-slider .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e8e9;
    border-radius: 50%;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .excellence-news-slider .owl-nav button:hover {
    background: #2E86C1;
    border-color: #2E86C1;
    color: white;
    transform: scale(1.1);
  }

  .excellence-news-slider .owl-nav .owl-prev {
    left: -25px;
  }

  .excellence-news-slider .owl-nav .owl-next {
    right: -25px;
  } */

/* .excellence-news-slider .owl-dots {
    text-align: center;
    margin-top: 40px;
  } */

/* .excellence-news-slider .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #e5e8e9;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  } */

/* .excellence-news-slider .owl-dot:hover {
    background: rgba(46, 134, 193, 0.6);
    transform: scale(1.1);
  }

  .excellence-news-slider .owl-dot.active {
    background: #2E86C1;
    transform: scale(1.2);
  } */
.service-detail-more-services .service-detail-container {
  width: 100%;
  padding: 0;
  padding-left: 80px;
}

.contact-title {
  text-transform: capitalize;
}

.career-sec .apply-btn {
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .excellence-stat-item {
    flex: 0 0 calc(50% - 15px);
  }

  .contact-detail-item {
    font-family: "General Sans", sans-serif;
    font-size: 17px !important;
    font-weight: 500;
  }

  .contact-subtitle {
    font-size: 16px !important;
  }

  .service-detail-more-services .service-detail-container {
    width: 100%;
    padding: 0;
    padding-left: 15px;
  }

  .career-sec .toggle-content .job-detail {
    gap: 2px !important;
  }

  .excellence-hero-container {
    padding: 0 15px;
  }

  .apply-section {
    padding-bottom: 40px;
  }

  .excellence-hero-title {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .contact-form-input,
  .contact-form-textarea {
    border-radius: 0px;
  }

  .excellence-hero-description {
    font-size: 1rem;
    text-align: justify;
  }

  .excellence-stats {
    /* flex-direction: column; */
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
  }

  .excellence-stat-item:not(:last-child)::after {
    display: none;
  }

  .excellence-stat-number {
    font-size: 2rem;
  }

  .excellence-stat-label {
    font-size: 20px;
    line-height: 1;
  }

  .about-who-we-are p {
    text-align: justify;
  }

  .about-ceo-message-content p {
    text-align: justify;
  }

  .excellence-news-section {
    padding: 20px 0;
  }

  .excellence-news-container {
    padding: 0;
    margin-left: 1em;
  }

  .excellence-news-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .excellence-news-item {
    margin: 0 10px;
    height: 350px;
  }

  .img-excellence-news-container {
    height: 250px;
  }

  .excellence-news-content {
    padding: 20px 0px;
  }

  .excellence-news-item-title {
    font-size: 18px;
  }

  .excellence-news-slider .owl-nav button {
    display: none;
  }

  .excellence-news-slider .owl-dots {
    margin-top: 25px;
    display: none;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .excellence-hero-container {
    padding: 0 30px;
  }

  .excellence-hero-title {
    font-size: 32px;
  }

  .excellence-stats {
    gap: 30px;
  }

  .excellence-stat-number {
    font-size: 2.2rem;
  }

  .excellence-news-container {
    padding: 0 30px;
  }

  .excellence-news-title {
    font-size: 2.2rem;
  }

  .excellence-news-item {
    height: 380px;
  }

  .img-excellence-news-container {
    height: 250px;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.excellence-news-section {
  padding-top: 0px;
}

.excellence-news-section .excellence-news-container {
  padding-top: 50px;
}

.about-mission-text.p-0 {
  padding: 0;
}

/* ===== ANCHORED IN EXCELLENCE SECTION CSS END ===== */

/* Hide on large */
@media (min-width: 992px) {
  .lg-none {
    display: none;
  }

  .lg-flex {
    display: flex;
  }
}

/* Show on small */
@media (max-width: 768px) {
  .sm-flex {
    display: flex;
  }

  .sm-none {
    display: none !important;
  }

  .section-container.w-100 .projects-section {
    padding-left: 30px;
  }
}