
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.8rem;
  --blue:#066D97;
  --light-blue: #6AA9BF;
  --green:#0A8B58;
  --light-green:#6CB99D;
  --brown:#9F713E;
  --light-brown:#C5AA8B;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif !important;
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
  height: 3000px;
  overflow-x: hidden;

}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1520px !important;
  margin-inline: 1.5rem;
}
hr {
  border: 0;
  height: 3px !important; 
  background: linear-gradient(to right, #FFFFFF 0%, var(--green) 50%, var(--green) 50%, #FFFFFF 100%);
  border-radius: 6px; 
  margin: 1rem 0; 
  width: 100% !important;
}

.lang a{
  border: 1px solid rgba(255, 255, 255, 0.212);
  padding: 3px 7px;

}
.lang2 a{
  border: 1px solid rgba(255, 255, 255, 0.212);
  padding: 3px 7px;
  border-radius: 4px;
}
h2{
  font-size: 1.79rem !important;
  font-weight: 600 !important;
}
/* ======== HEADER & NAVIGATION ======== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(45deg, #6AA8BF, #6CB7A0, #C1AB8C);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: calc(var(--header-height) + 4rem);
  
}

.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  top: -1rem;
}

.nav a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.nav-logo img {
  height: 180px;
  object-fit: contain;
  position: relative;
  top: -1rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link i {
  font-size: 1rem !important;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  color: white !important;
}

.nav-link span {
  position: relative;
  transition: margin 0.4s;
  font-size: 1rem !important;
}

.nav-link span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #87d3ef;
  transition: width 0.4s ease-out;
}

/* Hover Effects */
html[dir="rtl"] .nav-link:hover span {
  margin-right: 2.5rem;
}
html[dir="ltr"] .nav-link:hover span {
  margin-left: 2.5rem;
}

html[dir="rtl"] .nav-link span::after {
  right: 0;
}
html[dir="ltr"] .nav-link span::after {
  left: 0;
}

.nav-link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav-link:hover span::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  position: relative;
  z-index: 1050;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: right !important;
}
.dropdown-menu a {
  color: var(--blue) !important;
  padding: 5px 8px;
}

/*  RESPONSIVE NAVIGATION  */
@media screen and (max-width: 1352px) {
  .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0.2rem;
  }
  .nav-logo img {
    height: 180px;
    object-fit: contain;
    position: relative;
    top: -2.3rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--blue);
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    right: -100%;
    transition: 0.4s ease-in-out;
    padding: 5rem 2rem;
  }

  html[dir="ltr"] .nav-menu {
    left: -100%;
    right: auto;
  }

  .show-menu {
    right: 0;
  }
  html[dir="ltr"] .show-menu {
    left: 0;
  }

  .nav-link span {
    color: white !important;
    font-weight: bold;
    font-size: 1.4rem;
  }

  .nav-item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform 0.4s ease-out, visibility 0.4s;
  }

  .show-menu .nav-item {
    transform: translateX(0);
    visibility: visible;
  }

  /* Animation delay for each item */
  .nav-item:nth-child(1) { transition-delay: 0.1s; }
  .nav-item:nth-child(2) { transition-delay: 0.2s; }
  .nav-item:nth-child(3) { transition-delay: 0.3s; }
  .nav-item:nth-child(4) { transition-delay: 0.4s; }
  .nav-item:nth-child(5) { transition-delay: 0.5s; }
}

/* ======== TOGGLE BUTTON ======== */
.nav-toggle,
.nav-close {
  display: flex;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 2rem;
}
html[dir="rtl"] .nav-toggle,
html[dir="rtl"] .nav-close {
  left: 2rem;
}
html[dir="ltr"] .nav-toggle,
html[dir="ltr"] .nav-close {
  right: 2rem;
}
.nav-close.hide,
.nav-toggle.hide {
  display: none !important;
}


/*______________________ Hero section ________________________________________________________*/ 

.hero-section {
  height: 100vh; 
  background: url('images/hero.jpg') no-repeat center center/cover; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6aa8bfc6, #6cb7a1d3, #c1ab8cb4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* تأثير النص */
}

.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  max-width: 800px;
  margin: 0 auto;
}
.hero-section img {
  width: 19%;
  margin-bottom: 2rem;
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-from-bottom {
  animation: slideInFromBottom 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards; 
}
img.animate-from-bottom {
  animation-delay: 0.3s; 
}
.hero-title {
  animation-delay: 0.3s;
}

.hero-description {
  animation-delay: 0.7s;
}


/*______________________ About section ________________________________________________________
.about-section {
    background-image: url(/Main/images/logo-black-white.svg);
    background-repeat: no-repeat;
    background-size:300px;
    background-position: left ;
    padding: 5rem; 
    margin-top: 8rem ;
    margin-left: auto;
}

.about-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--blue);
}

.about-content {
    font-size: 1.2rem;
    line-height: 2.5;
    color: #555555;
}
*/

/*______________________ Goals section ________________________________________________________
.goals-section {
    background: #F5F7F8;
    padding: 5rem 1rem !important; 
    margin-top: 8rem ;
    margin-left: auto; 
    background-image: url(/Main/images/dot-arrow.png);
    background-size: 250px;
    background-repeat:no-repeat;
    background-position: top right;
}
.goals-section .row.justify-content-center {
    flex-wrap: wrap; 
    padding: 2rem 0 6rem 0 !important;
  }
.goals-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--blue);
}
.goals-section .card {
    max-width: 100%;
    box-sizing: border-box;
    border: none;
    column-gap: white !important;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;  
}

.goals-section .card-1 .card{
    background: linear-gradient(150deg, #065d80, #6AA9BF 90%);
}
.goals-section .card-2 .card{
    background: linear-gradient(150deg, #08774b, #6CB99D 100%);

}
.goals-section .card-3 .card{
    background: linear-gradient(150deg, #ac773c, #C5AA8B 100%);

}
.goals-section .card-title {
    font-weight: bold;
    font-size: 2rem;
    color: white !important;
  }
  
.goals-section  .card-text {
    color: #ffffff; 
    width: 90%;
    font-size: 1.2rem;
    padding-top: 15px;
  }
  
  .goals-section .card .btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .goals-section .row{
    margin-top: 6rem !important;
  }

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }
  
  .animate.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .card-1 {
    transition-delay: 0s;
  }
  
  .card-2 {
    transition-delay: 0.8s;
  }
  
  .card-3 {
    transition-delay: 1.6s;
  }
  */
/*____________________ Investment opportunity _________________________________________________*/
  .opps-section{
    margin-top: 10rem !important;    
    background: radial-gradient(circle, rgba(6,109,151,0.12657563025210083) 17%, rgba(255,255,255,1) 34%);
  }

  .op-card {
    max-width: 350px !important; 
  }
  
  .opps-section .carousel .card {
    border: none;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .opps-section .carousel .card-img-top {
    height: 150px;
    object-fit: contain;
   margin-bottom: 1rem;
  }
  .opps-section .card-text {
    height: 6.5rem !important; 
    overflow: hidden;
    text-align: center;
  }
  
  .opps-section .card-text {
    line-height: 1.5; 
    min-height: 3rem; 
    padding: 0.5rem; 
    text-align: center; 
  }
  
  
  .opps-section .carousel .card-date {
    font-size: 0.9rem;
    color: #999;
  }
 
  .op-tags {
    margin: 0.8rem 0;
  }
  
  .op-type-tag {
    display: inline-block;
    background-color: var(--light-green);
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    margin: 0.2rem;
    text-align: center;
  }
  .op-city-tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    margin: 0.2rem;
    text-align: center;
  }


 .carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(30%) sepia(80%) saturate(500%) hue-rotate(180deg) brightness(90%) contrast(100%);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  filter: invert(30%) sepia(80%) saturate(500%) hue-rotate(200deg) brightness(100%) contrast(100%);
}
.carousel-indicators [data-bs-target] {
  background-color: var(--light-blue) !important; 
 
}

.view-all-opps-btn{
  text-decoration: none;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 1rem;
}
.view-all-opps-btn:hover{
  background: var(--blue);
  color: white;
}

.opps-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 0;
}

.op-card {
  max-width: 100%;
  padding: 1rem;
}

@media (min-width: 992px) {
  .op-card {
    max-width: 33.33%; /* 3 cards per row */
  }
}

@media (max-width: 991px) {
  .op-card {
    max-width: 100%; /* 1 card per row */
  }
}

.opps-section .carousel .card {
  border: none;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opps-section .carousel .card-img-top {
  height: 130px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/*_______________ Goverment competitions section __________________________________*/
.gov-comps-section {
  background-color: #f8f9fa;
}

#governmentCarousel{
  padding: 0rem 8rem ;
}
.gov-comps-section .row {
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
  padding: 4rem 0; 
}
.gov-comps-section .carousel-inner {
  padding:0 1rem; 
}

.gov-comps-section .gov-comp-card {
  border: none;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  max-width: 290px; 
  width: 100%;
  height: 380px; 
  display: flex;
  flex-direction: column; 
  background-color: #fff;
  margin: 0 auto;
  overflow: hidden;
}

.gov-comps-section .gov-comp-card img {
  max-width: 100%; 
  height: 150px;
  object-fit:cover;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}

.gov-comps-section .card-text {
  font-size: 1rem; 
  color: #333; 
  text-align: center;
  height: 100px;               
  overflow: hidden;   
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
}

.gov-comps-section .card-date {
  font-size: 0.9rem; 
  color: #666; 
  text-align:center; 
}

.gov-comps-section .carousel-control-prev,
.gov-comps-section .carousel-control-next {
  width: 5%; 
}

.gov-comps-section .carousel-control-prev-icon,
.gov-comps-section .carousel-control-next-icon {
  border-radius: 50%; 
  padding: 0.5rem; 
}

.gov-comps-section .carousel-indicators [data-bs-target] {
  background-color: #05445E; 
}

.gov-comps-section .carousel-indicators .active {
  background-color: #0369A1; 
}
.view-all-comp-btn{
  text-decoration: none;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 1rem !important;
  font-size: 1rem;
  transition:  0.3s !important;

}
.view-all-comp-btn:hover{
  background: var(--blue);
  color: white;
}


/*_______________ ADS ________________________________________*/
.ads-section{
  margin: 7rem 0 !important;
}
.ads-section .card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.hidden {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(100%);
  transition: all 2s ease;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}


.ads-section .ad-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  background: linear-gradient(to left, #066e97d8 , #6CB7A0);
  padding: 0.5rem;
  border-radius: 10px;
}

.ads-section .card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.ads-section i {
  font-size: 1.8rem;
  color: #fff;
}

.ads-section .card-text {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 1.5rem;
}


.ads-section .btn {
  position: relative;
  color: var(--brown);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.ads-section .btn::after {
  color: var(--brown);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; 
  background-color: #ac773c; 
  transition: width 0.3s ease; 
}

.ads-section .btn:hover::after {
  width: 100%; 
  color: var(--brown);

}

.subscribe-btn{
  background: var(--light-blue) !important;
}
a:focus{
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
input:focus{
  outline: none !important;
  border: 1px solid grey !important;
  box-shadow: none !important;
}
.mail-img{
  height: 150px; 
  margin: 0 auto;

}
.modal-title-con{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
/*_______________________ Splah ____________________________________________________*/
.splash {
  position: relative;
  height: 320px;
  border-radius: 15px; 
  overflow: hidden;
}


.splash video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start; 
  color: white;
  text-align: center;
  z-index: 1;
  padding: 0 3rem;
}

.splash-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
}

.splash-btn {
  background-color: var(--blue) !important;
  color: white !important;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.splash-btn:hover {
  background-color: var(--light-blue) !important;
}


/*________________________________ Events _____________________________________*/
.events-section{
  margin-top: 5rem;
}
.events-section .card-text{
  margin-top: 1rem;
  font-size: 1rem; 
  color: #717070; 
  height: 100px;               
  overflow: hidden;   
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
}
.events-section h5 {
  margin: 0px;
  font-size: 1.2em;
  font-weight: 600;
  max-height: 3.5em; 
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.events-section p {
  font-size: 16px;
}
.event-card .card-date{
  color: #a6a5a5;
}
.events-section .carousel-inner{
  background: #00000000;
}
.events-section .center {
  height: auto; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
.events-section .view-events{
  background-color :var(--light-green) !important;
  font-size: 1.2rem;
  padding: 0.7rem 1.5rem;
  border: none;
  color: white !important;
  text-decoration: none !important;
  border-radius: 10px;
}
.events-section .view-events:hover{
  background-color:white !important;
  border: 2px solid var(--light-green);
  color: var(--light-green) !important;
}

/* End Non-Essential */

.event-card {
  height: 24em;
  width: 20em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;

  overflow: hidden;
}

/* Top Half of card, image. */

.event-image {
  height: 100%;
  width: 100%;
  padding: 0em;
  position: absolute;
  top: 0px;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-image: url('https://cdn.photographylife.com/wp-content/uploads/2017/01/What-is-landscape-photography.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
.event-image img {
  height: 100%;
  width: 100%;
  object-fit: cover; 
  border: none; 
  display: block;
}
/* Bottom Card Section */

.event-description {
  background-color: #FAFAFC;
  height: 12em;
  width: 100%;
  position: absolute;
  bottom: 0em;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 0.5em 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}


/* event Cards Hover States */

.event-card:hover .event-description {
  height: 0em; background: #ffffff00;
  padding: 0px 2em;
}

.event-card:hover .event-image {
  height: 100%;
}


/*_____________________________ Partners ___________________________________________*/
.partners-section {
  margin: 5rem 0;
  position: relative;
}

.partners {
  overflow: hidden;
  position: relative;
  background-color: white;
  padding: 60px 0;
}


.slider-track {
  display: flex;
  animation: slide 14s linear infinite;
    width: max-content;

}

.slider-track img {
height: 120px;
  width: auto;
  max-width: 180px; 
  object-fit: contain;
  margin: 0 1.5rem;
  flex-shrink: 0;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.partners:hover .slider-track {
  animation-play-state: paused;
}

/*_____________________________ Footer ______________________________________________*/
.developed_by img{
  height: 40px;
  box-sizing: content-box;
  margin-top: 0.5rem;
}

footer{
  position: relative;
  bottom: 0 !important;
  margin-top: 8rem !important;
  text-decoration: none !important;
 }
 footer a{
  color: var(--light-brown);
  text-decoration: none !important;
  transition: 0.4s;
 }
 footer a:hover{
  color: var(--light-brown);
 }
 .main-footer {
   background-color: #333;
   color: #fff;
   padding: 20px;
   margin-top: auto; 
 }
 

 
 .footer-title {
   font-size: 18px;
   font-weight: bold;
   color: var(--light-brown);
 }
 
 .footer-description {
   font-size: 12px;
 }
 
 .footer-divider {
   margin: 15px 0;
   border: 0;
   height: 1px;
   background: #555;
 }
 
 .footer-bottom {
   display: flex;
   justify-content: space-between;
   font-size: 14px;
 }
 
 footer .social i{
  padding: 8px;
  border-radius: 8px ;
  font-size: 1.2rem !important;
  background: var(--light-brown);
  color: #333 !important;
  transition: 0.3s;
 }
 footer .social i:hover{
  background: white;

 }
.modal-body {
  color: #000;
}

 .modal-body h4 {
  color: #333;
}

.modal-body ol {
  padding-right: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

/*______________________________ BREAKPOINTS __________________________________________ */
@media screen and (min-width: 1350px) {
    .container {
      margin-inline: auto;
    }
  
    .nav {
      height: calc(var(--header-height) + 2rem);
    }
  
    .nav-toggle, 
    .nav-close {
      display: none;
    }
  
    .nav-link {
      font-size: var(--normal-font-size);
    }

    .nav-link i {
      font-size: 1.2rem; 
    }
  
    .nav-list {
      flex-direction: row;
      column-gap: 3.5rem;
    }
  
    .nav-menu {
      display: flex;
      align-items: center;
      column-gap: 3.5rem;
    }
  }
  /*Responsive typography */
  @media screen and (min-width: 1150px) {
    :root {
      --normal-font-size: 1rem;
    }
  }
    @media screen and (max-width: 968px) {
    .hero-section img {
        width: 40%;
      }
      .nav-link span{
       font-size:1rem;
      }
    }

    @media screen and (max-width: 1440px) and (min-width: 1350px) {
  .nav-link span {
    font-size: 1rem !important; 
  }
}

     
  @media screen and (max-width: 768px) {
      .nav {
          padding: 0 1rem !important; 
      }
      .nav-link span {
        font-size: 0.875rem; 
      }
      .partner-slide img{
        height: 150px;
        margin: 0 1rem ;
    }

      .hero-section {
        height: 90vh;
        padding: 2rem 1rem; 
      }
      .hero-overlay {
        padding-top: 3rem;
        align-items: center;
        justify-content: center;
      }
      .hero-title {
        font-size: 1.8rem; 
      }
      .hero-description {
        font-size: 1rem; 
        line-height: 1.5;
        max-width: 90%;
      }
      h2{
        font-size: 1.5rem !important;
      }
      .op-card {
        width: 75vw !important;
      }
      
      #governmentCarousel {
        padding: 0 1rem !important;
      }
    
      .gov-comps-section .gov-comp-card {
        max-width: 100%;
        height: auto; 
      }
      .events-section .carousel-item .d-flex {
        flex-direction: column !important;
        align-items: center !important;
      }
    
      .events-section .event-card {
        width: 65vw !important;
      }
    
      .events-section .center.mx-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      h2{
        font-size: 1.3rem !important;
      }
      
      .view-all-opps-btn,
      .view-all-comp-btn,
      .view-events{
        text-decoration: none;
        color: var(--blue);
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem !important;
      }
      .overlay{
        align-items: center !important;
        text-align: center !important;
      }
      .splash-title {
        font-size: 1.4rem ;
      }
      .ads-section .card-title{
        font-size: 1.2rem;
      }
      .ads-section  i {
        font-size: 1.5rem;
      }
      .ads-section .card-text,
      .ads-section .btn {
        font-size: 1rem;
      }
      .footer-top {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 1.5rem;
      }
    
      .footer-top .col-lg-4,
      .footer-top .developed_by {
        width: 100%;
      }
    
      .developed_by img {
        margin: 0.5rem 0;
      }
    
      .footer-bottom {
        flex-direction: column;
        align-items: center;
      }
    
      .footer-column {
        flex: unset; 
        margin-bottom: 10px;
      }
    
      .footer-divider {
        margin: 10px 0;
      }

  }

  @media (max-width: 576px) {
   
    .footer-title {
      font-size: 16px;
    }
  
    .footer-description {
      font-size: 12px;
    }
  
    .footer-column a {
      font-size: 12px;
    }
  
    .footer-column.social a {
      font-size: 16px;
    }
  }