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

body {
    background: #2B2B2B;
}


body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #2B2B2B;
}

body::-webkit-scrollbar-thumb {
    background: #ABAEB7;
    border-radius: 5px;
}


header {
    width: 100%;
    display: flex;
    align-items: center;
    height: 75px;
    padding-left: 100px;
    padding-right: 100px;
    justify-content: space-between;
    border-bottom: 1px solid #3B3B3B;
    position: fixed;
    top: 0;
    z-index: 999;
    background: #2B2B2B;
}

.menu-btn i{
    display: none;
}

.menu-bar{
    display: none;
}

.menu-bar-nav{
    display: none;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 125px;
}

.header-ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.header-li {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    transition: 0.6s;
}

.logo {
    font-family: Space Mono;
    font-weight: 600;
    font-size: 40px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    background-image: url('/images/sky.png');
    background-size: 1400% 1400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 8s ease infinite;
}


@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-btn {
    width: 160px;
    height: 55px;
    background: local;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    border: 2px solid #ffffff;
    outline: none;
    border-radius: 25px;
}

.hero-section {
    display: flex;
    align-items: center;
    height: 600px;
    padding-left: 100px;
    gap: 155px;
    margin-top: 155px;
}

.hero-info {
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 55px;
}

.hero-info h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 67px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
    vertical-align: middle;
    text-transform: capitalize;
    background-image: url('/images/hero-info-title.png');
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-info p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}

.hero-info button {
    width: 160px;
    height: 55px;
    background: local;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    border: 2px solid #ffffff;
    outline: none;
    border-radius: 25px;
}

.hero-img {
    width: 600px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: 0.95s;
}

.hero-img-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-bottom-left-radius: 300px;
    border-bottom-right-radius: 200px;
    border-top-right-radius: 500px;
    border-top-left-radius: 100px;
    opacity: 0;
    animation: slideShow 9s infinite;
    transition: 0.95s;
}

.hero-img-wrapper:hover {
    transform: scale(0.95);
    transition: 0.95s;
}

.hero-img-wrapper:hover .hero-img-slide {
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    border-top-left-radius: 500px;
    transition: 0.95s;
}

.hero-img-slide.first {
    animation-delay: 0s;
}

.hero-img-slide.second {
    animation-delay: 3s;
}

.hero-img-slide.third {
    animation-delay: 6s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


.countries-section {
    width: 100%;
    height: fit-content;
    margin-top: 75px;
    padding-left: 100px;
    padding-top: 75px;
    gap: 100px;
    flex-direction: column;
    display: flex;
    padding-bottom: 100px;
    background-image: url('/images/backgroun_of_countries.png');
    overflow-x: hidden;
}

.countries-head-line h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 55px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
}

.countries-head-line p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}

.countries-card {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #3B3B3B;
    border-radius: 25px;
    padding-bottom: 10px;
    border-bottom-right-radius: 140px;
    transition: 0.95s;
    height: fit-content;
}

.countries-card {
    transform: translateX(-200px);
    opacity: 0;
    animation: slideIn 1.6s ease-out forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.countries-card-image {
    width: 500px;
    border-top-right-radius: 25px;
}

.countries-card-icon {
    width: 45px;
}

.countries-card-info {
    padding-left: 17px;
    padding-right: 27px;
    display: flex;
    flex-direction: column;
    gap: 7.5px;
}

.countries-card-info h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 35px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}


.countries-card-info p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 18.5px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}

/* Slider wrapper styles */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

/* Slide images */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}


.countries-cards-row {
    display: flex;
    gap: 15%;
}

.countries-card:last-child {
    margin-top: 25%;
}

html {
    scroll-behavior: smooth;
}

.landmarks-section {
    width: 100%;
    height: fit-content;
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 75px;
    display: flex;
    flex-direction: column;
}

.landmark-card {
    width: 330px;
    height: 439px;
    gap: 20px;
    border-radius: 20px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    background: #3B3B3B;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.95s;
}

.landmark-card:hover {
    transform: scale(0.95);
    transition: 0.95s;
}

.landmark-card:hover.landmark-card img {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    transition: 0.95s;
}

.landmark-card img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border-bottom-left-radius: 15px;
    transition: 0.95s;
}


.landmarks-head-line h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 55px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
}

.landmarks-head-line p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}

.landmark-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.landmark-card-info h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.landmark-card-info p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.landmarks-cards-row {
    display: flex;
    gap: 10%;
}

.landmark-card:last-child {
    margin-top: 15%;
}

.landmark-card:first-child {
    margin-top: 15%;
}

.projects-section {
    width: 100%;
    height: fit-content;
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 75px;
    display: flex;
    flex-direction: column;
}

.projects-head-line h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 55px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
}

.projects-head-line p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}

.projects-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
    /* border: 3px solid red; */
}

.projects-card {
    /* border: 3px solid red; */
    width: 40%;
    height: 650px;
    border-radius: 20px;
    background: #3B3B3B;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: 0.95s;
}

.projects-card:hover {
    transform: scale(0.95);
    transition: 0.95s;
}

.projects-card-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.projects-card-img {
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    animation: slideShow 9s infinite;
}

.projects-card-img.first {
    animation-delay: 0s;
}

.projects-card-img.second {
    animation-delay: 3s;
}

.projects-card-img.third {
    animation-delay: 6s;
}



@keyframes slideShow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.projects-card-info {
    /* border: 3px solid red; */
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 15px;
    padding-bottom: 15px;
    height: auto;
}


.projects-card-info h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 35px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #FFFFFF;
}

.projects-card-info p {
    font-family: Work Sans;
    font-weight: 400;
    font-size: 15.5px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}


.projects-card-info button {
    width: 160px;
    height: 55px;
    background: local;
    font-family: Work Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    border: 2px solid #ffffff;
    outline: none;
    border-radius: 25px;
}

.resume-container {
    margin-bottom: 75px;
    display: flex;
    justify-content: center;
}

.resume-container button {
    width: 550px;
    height: 45px;
    border-radius: 15px;
    border: none;
    outline: none;
    color: #ffffff;
    background: #858584;
    font-family: Space Mono;
    font-size: 18px;
}

.projects-section-2 {
    display: none;
}

.projects-section-2.show {
    display: flex;
    width: 100%;
    height: fit-content;
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 75px;
    display: flex;
    flex-direction: column;
}


@media(max-width:1441px) {
    .projects-card-info {
        padding-left: 15px;
        display: flex;
        flex-direction: column;
        gap: 7.5px;
        padding-bottom: 10px;
        padding-top: 15px;
        height: auto;
    }
}

@media(max-width:426) {
    .border {
        height: 3px;
        width: 150px;
    }
}

footer {
    /* border: 3px solid rgb(255, 0, 0); */
    width: 100%;
    height: 553px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    /* border: 3px solid rgb(255, 0, 0); */
    width: 1212px;
    height: 249px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 95px;
}

.footer-container .border {
    width: 1px;
    height: 244px;
}

.footer-container-part-1 {
    display: flex;
    flex-direction: column;
    height: 244px;
    justify-content: space-between;
}

.footer-container-part-1 .logo {
    /* border: 3px solid rgb(255, 0, 0); */
    width: 138.69032287597656px;
    height: 50px;
}

.footer-container-part-1 .logo {
    font-size: 25px;
}

.footer-container-part-1 p {
    width: 350px;
    height: 104px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #D7E0E1;
}

.footer-ul {
    width: 91px;
    height: 195px;
    gap: 25px;
    display: flex;
    flex-direction: column;
}

.footer-li a {
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: capitalize;
    color: #ABAEB7;
    text-align: left;
}

#footer-li-active {
    color: #FFB077;
    font-family: Roboto;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: capitalize;
    text-align: left;
}

.footer-container-part-3 {
    /* border: 3px solid rgb(255, 0, 0); */
    width: 271px;
    height: 246px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container-part-3 h1 {
    font-family: Larken-Regular;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.footer-container-part-3 p a {
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #ABAEB7;
}

.footer-container-part-3 p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #ABAEB7;
}

.copy-right {
    /* border: 3px solid rgb(0, 34, 255); */
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: end;
    border-top: 1px solid #2E313A;
}

.copy-right p {
    font-family: Roboto;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #ABAEB7;

}


.border {
    width: 3px;
    height: 150px;
    background: linear-gradient(180deg, rgba(171, 174, 183, 0) 0%, #ABAEB7 51.56%, rgba(171, 174, 183, 0) 100%);
}

.footer-logo {
    font-family: Space Mono;
    font-weight: 600;
    font-size: 20px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #ffffff;
}

/* ------------------------------
   Global Reset & Variables
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --primary: #1e90ff; /* calm blue */
  --accent: #ff4b5c;  /* warm red */
  --neutral-dark: #2b2b2b;
  --neutral-mid: #3b3b3b;
  --neutral-light: #abaeb7;
  --text-light: #ffffff;
  --text-mid: #d7e0e1;
  --radius: 20px;
  --transition: 0.3s ease-in-out;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--neutral-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--neutral-dark);
}
body::-webkit-scrollbar-thumb {
  background: var(--neutral-light);
  border-radius: 5px;
}

/* ------------------------------
   Header & Navigation
------------------------------ */
header {
  width: 100%;
  height: 75px;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--neutral-dark);
  border-bottom: 1px solid var(--neutral-mid);
  position: fixed;
  top: 0;
  z-index: 999;
}

header nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header-ul {
  display: flex;
  gap: 40px;
}

.header-li {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  transition: color var(--transition);
}
.header-li:hover {
  color: var(--primary);
}

.logo {
  font-family: 'Space Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  background-image: url('/images/sky.png');
  background-size: 1400% 1400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow 8s linear infinite;
}

@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header-btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 25px;
  border: 2px solid var(--text-light);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.header-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ------------------------------
   Hero Section
------------------------------ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px 100px 0;
  gap: 60px;
}

.hero-info {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-info h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  background-image: url('/images/hero-info-title.png');
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-info p {
  font-size: 20px;
  color: var(--text-mid);
}

.hero-info button {
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid var(--text-light);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-info button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ------------------------------
   Sections (Countries, Landmarks, Projects)
------------------------------ */


section {
  padding: 100px 100px;
}

section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}
section p {
  font-size: 18px;
  color: var(--text-mid);
}

/* Cards */
.card, .countries-card, .landmark-card, {
  background: var(--neutral-mid);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover, .countries-card:hover, .landmark-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.projects-card{
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.projects-card:hover{
    transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* ------------------------------
   Footer
------------------------------ */
footer {
  background: var(--neutral-dark);
  padding: 60px 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--neutral-mid);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-li a {
  color: var(--neutral-light);
  transition: color var(--transition);
}
.footer-li a:hover {
  color: var(--primary);
}

.copy-right {
  text-align: center;
  font-size: 14px;
  color: var(--neutral-light);
  margin-top: 20px;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 1024px) {
  header { padding: 0 40px; }
  section { padding: 80px 40px; }
  .hero-section { flex-direction: column; text-align: center; }
  .hero-img { max-width: 100%; }
}

@media (max-width: 768px) {
  .header-ul { display: none; }
  .hero-info h1 { font-size: 40px; }
  section h1 { font-size: 32px; }
  section p { font-size: 16px; }
  .footer-container { flex-direction: column; gap: 20px; }
}
