:root {
  --primary-dark: #0a192f;
  --accent-teal: #00d6fe;
  --accent-green: #79da03;
  --text-light: #e6f1ff;
  --text-dark: #0a192f;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter-Regular", Helvetica;
}

body {
  background-color: #f0f8ff;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/*----------------------------
SCROLL INDICATOR 
-----------------------------*/
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d6fe, #0a8cff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
}

.scroll-indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/*============================================
        NAV BAR AND HERO
        ============================================*/

.hero-section {
  position: relative;
  background-color: var(--primary-dark);
  padding: 1.5rem 0;
  padding-top: 6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  height: 80vh;
}

    /* =================== NEW NAVBAR STYLES =================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 1.5rem 2rem;
            z-index: 1000;
            transition: all 0.4s ease;
            height: 5rem;
            background: #0a0b1f;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1800px;
        }
        
        .logo-container a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-container img {
            height: 120px;
            transition: all 0.3s ease;
        }
        
        .nav-links {
            display: flex;
            gap: 1.2rem;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border-radius: 2rem;
            transition: all 0.3s ease;
        }
        
        .nav-item.active {
            background-color: var(--accent-teal);
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .login-btn {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            border-radius: 2rem;
            padding: 0.6rem 1.8rem;
            font-size: 1.05rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }
        
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--text-light);
            cursor: pointer;
            margin-left: 1.5rem;
            transition: all 0.3s ease;
        }
        .close-menu {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1000001;
    transition: color 0.3s;
}
.close-menu:hover {
    color: var(--accent-teal);
}

@media (max-width: 992px) {
    .close-menu {
        display: block;
    }
    .navbar.scrolled .close-menu {
        color: var(--primary-dark);
    }
}

        
        /* Scrolled state */
        .navbar.scrolled {
            background-color: white;
            padding: 0.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.scrolled .nav-item {
            color: var(--primary-dark);
        }
        
        .navbar.scrolled .nav-item:hover:not(.active) {
            color: #00a2c7;
        }
        
        .navbar.scrolled .nav-item.active {
            background-color: var(--accent-teal);
            color: var(--text-dark);
        }
        
        .navbar.scrolled .login-btn {
            color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .navbar.scrolled .login-btn:hover {
            background-color: var(--accent-teal);
            border-color: var(--accent-teal);
            color: var(--text-dark);
        }
        
        .navbar.scrolled .hamburger {
            color: var(--primary-dark);
        }
        
        /* Hover effects */
        .nav-item:hover:not(.active) {
            color: var(--accent-teal);
            transform: translateY(-2px);
        }
        
        .nav-item.active:hover {
            background-color: #00bde5;
            box-shadow: 0 0 15px rgba(0, 214, 254, 0.5);
        }
        
        .login-btn:hover {
            background-color: rgba(0, 214, 254, 0.1);
        }
        
        .hamburger:hover {
            color: var(--accent-teal);
            transform: scale(1.1);
        }
        
        /* Mobile menu */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: flex-start;
                padding: 7rem 2rem 2rem;
                transition: right 0.4s ease;
                z-index: 1;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .navbar.scrolled .nav-links {
                background: white;
            }
            
            .navbar.scrolled .nav-links .nav-item {
                color: var(--primary-dark);
            }
            
            .hamburger {
                display: block;
                z-index: 1000000;
            }
        }
        
        @media (max-width: 768px) {
            .logo-container img {
                height: 150px !important;
            }
        }
        
        @media (max-width: 480px) {
            .logo-container img {
                height: 80px;
            }
            
            .login-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.95rem;
                margin-left: 0.5rem;
            }
        }

/* Hero Section */

.bg-hero {
  margin-top: -39rem;
  width: 100%;
}
.hero-bg{
  z-index: 3;
  opacity: .03;
}

.hero-content h1 {
  color: var(--accent-green);
  font-size: 3.5rem;
  font-weight: 700;
  margin-left: 38rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(121, 218, 3, 0.5);
}

.about-text {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: #e6f1ff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .about-text {
    font-size: 1.1rem;
  }


}

@media (max-width: 768px) {


  .hero-content {
    padding: 1.5rem;
  }


  .hero-content h1 {
    font-size: 2.5rem;
    margin-left: 1rem;
  }

  .about-text {
    font-size: 1rem;
  }
    .hero-bg img{
    z-index: -100 !important;
  }
}

@media (max-width: 576px) {

  .WHO{
    margin-top: 2rem !important;
  }

  .hero-section {
    height: fit-content;
    padding: 7rem 0 4rem;
  }
  .hero-bg img{
    z-index: -100 !important;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 0.95rem;
  }


}

/* Animation for hero text */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1,
.about-text {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
}

.about-text {
  animation-delay: 0.4s;
}

/*==================================
       WHO WE ARE & MISSION CALL TO ACTION
       ==================================*/

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.title-line {
  width: 220px;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent-teal));
  margin: 0.5rem auto 3rem;
  border-radius: 5px;
}

/* Who We Are Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  height: 50vh;
}

.about-content {
  flex: 1;
  min-width: 300px;
  font-size: 1.15rem;
  line-height: 1.5;
  padding: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-content strong {
  font-weight: 600;
  color: var(--primary-dark);
}

.about-image {
  flex: 1;
  position: relative;
  min-width: 30rem;
  margin: 0 auto;
}

.about-image-bg {
  width: 60%;
  height: 90%;
  background-color: var(--accent-teal);
  border-radius: 36px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  margin-left: 10rem;
}

.about-image img {
  width: 60%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  margin-left: 10rem;
  margin-bottom: -0.2rem;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, var(--primary-dark), #0a0b1f);
  border-radius: 31px;
  padding: 4rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 50vh;
  margin-top: 10rem;
}

.mission-content {
  flex: 1;
  min-width: 300px;
}

.mission-content h2 {
  background: linear-gradient(91deg, #ffffff 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.8rem;
  margin-top: -10rem;
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.mission-image img {
  width: 40rem;
  height: auto;
  border-radius: 20px;
  margin-top: -9rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .mission-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.3rem;
  }

  .mission-content h2 {
    font-size: 2.3rem;
  }

  .about-content,
  .mission-content p {
    font-size: 1.1rem;
  }

  .title-line {
    height: 8px;
    width: 200px;
    margin-bottom: 2.5rem;
  }

  .mission-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  .about-image,
  .about-image-bg {
    display: none;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .title-line {
    width: 180px;
    height: 7px;
    margin-bottom: 2rem;
  }

  .about-section,
  .mission-section {
    gap: 2rem;
  }

  .mission-content h2 {
    font-size: 2rem;
    margin-top: -5rem;
  }

  .about-content,
  .mission-content p {
    font-size: 1rem;
  }
  .mission-image img {
    height: 15rem;
    width: auto;
    margin-bottom: -6rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .title-line {
    width: 150px;
    height: 6px;
  }

  .mission-content h2 {
    font-size: 1.8rem;
  }

  .mission-section {
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
    padding-bottom: -2rem;
    margin-top: -5rem;
  }

  .about-content,
  .mission-content {
    padding: 0;
  }
}

/* Animation for section content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content,
.about-image,
.mission-content,
.mission-image {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-content {
  animation-delay: 0.1s;
}

.about-image {
  animation-delay: 0.2s;
}

.mission-content {
  animation-delay: 0.1s;
}

.mission-image {
  animation-delay: 0.2s;
}

/*=============================
        MANAGEMENT SECTION
        =============================*/

/* Management Section */
.management-section {
  background-color: #eafcfb;
  border-radius: 31px;
  padding: 5rem 1.5rem;
  margin: 5rem auto;
  text-align: center;
  max-width: 1800px;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 80px auto 0;
}

.management-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(122, 122, 122, 0.25);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.management-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(122, 122, 122, 0.4);
}

.management-card img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.card-content .position {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 500;
}

.card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: auto;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-teal);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .management-section {
    padding: 4rem 1.5rem;
    margin: 4rem auto;
  }

  .management-grid {
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }

  .title-line {
    width: 200px;
    height: 8px;
    margin-bottom: 2.5rem;
  }

  .management-card img {
    height: 280px;
  }

  .card-content h3 {
    font-size: 22px;
  }

  .card-content .position {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .title-line {
    width: 180px;
    height: 7px;
    margin-bottom: 2rem;
  }

  .management-section {
    padding: 3rem 1rem;
    margin: 3rem auto;
    border-radius: 25px;
  }

  .management-grid {
    gap: 30px;
    margin-top: 40px;
  }

  .management-card img {
    height: 25rem !important;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .title-line {
    width: 160px;
    height: 6px;
    margin-bottom: 1.5rem;
  }

  .management-section {
    padding: 2.5rem 1rem;
    margin: 2.5rem auto;
    border-radius: 20px;
  }

  .management-grid {
    gap: 25px;
  }

  .management-card img {
    height: 240px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content .position {
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .management-card img {
    height: 220px;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.management-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.management-card:nth-child(1) {
  animation-delay: 0.1s;
}
.management-card:nth-child(2) {
  animation-delay: 0.2s;
}
.management-card:nth-child(3) {
  animation-delay: 0.3s;
}
.management-card:nth-child(4) {
  animation-delay: 0.4s;
}

/*================================
        GALLERY SECTION
        ===============================*/

/* Gallery Section */
.gallery-section {
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.title-line {
  width: 220px;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent-teal));
  margin: 0.5rem auto 3rem;
  border-radius: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 80px auto 0;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 27, 57, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.view-all-btn {
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-green));
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  margin: 70px auto 0;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 214, 254, 0.4);
  display: inline-block;
}

.view-all-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 214, 254, 0.6);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .gallery-section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .gallery-grid {
    margin-top: 60px;
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.3rem;
  }

  .title-line {
    width: 200px;
    height: 8px;
    margin-bottom: 2.5rem;
  }

  .gallery-item {
    height: 300px;
  }

  .gallery-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .title-line {
    width: 180px;
    height: 7px;
    margin-bottom: 2rem;
  }

  .gallery-section {
    padding: 3rem 1rem;
  }

  .gallery-grid {
    gap: 20px;
    margin-top: 40px;
  }

  .gallery-item {
    height: 250px;
  }

  .view-all-btn {
    margin-top: 50px;
    padding: 12px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .title-line {
    width: 160px;
    height: 6px;
    margin-bottom: 1.5rem;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-item {
    height: 200px;
    border-radius: 15px;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-title {
    font-size: 1.4rem;
  }

  .view-all-btn {
    margin-top: 40px;
    padding: 10px 30px;
    font-size: 1rem;
  }
}

/* Animation for gallery items */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeIn 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}


/*----------------------------------
        FOOTER SECTION
        --------------------------------*/

.footer-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #1a1b39 332px, #02031b 332px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  margin: 50px 0;
}

.footer-content {
  position: relative;
  padding: 40px 30px 140px;
  max-width: 1550px;
  margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.footer-text {
  flex: 1;
  color: white;
  padding: 20px 0;
}

.footer-text h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #00d6fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text p {
  font-size: 1.6rem;
  color: #dddddd;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.image-buttons-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-image {
  width: 100%;
  max-width: 334px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-top: -5.3rem;
  margin-right: 5rem;
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: flex-end;
  margin-top: -6rem;
}

.footer-btn {
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background-color: #00d6fe;
  border: none;
  border-radius: 68px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px 3px rgba(0, 214, 254, 0.6);
  white-space: nowrap;
}

.footer-btn:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  color: #00d6fe;
  box-shadow: 0 0 30px 8px rgba(0, 214, 254, 0.8);
}

/* Footer Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 80px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  flex: 1;
  min-width: 250px;
  color: white;
}

.footer-col h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00d6fe;
  border-radius: 2px;
}

.footer-col p,
.footer-col a {
  color: #dddddd;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #00d6fe;
  transform: translateX(5px);
}

.contact-info div {
  margin-bottom: 12px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
}

.contact-info div i {
  margin-right: 12px;
  color: #00d6fe;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-bottom: -1rem;
}

.social-icon i {
  color: white;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: #00d6fe;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 214, 254, 0.4);
}

/* Copyright */
.copyright {
  position: absolute;
  bottom: 40px;
  left: 30px;
  color: #dddddd;
  font-size: 1rem;
  font-style: italic;
  z-index: 2;
  width: calc(100% - 60px);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .footer-text h2 {
    font-size: 2.4rem;
  }

  .footer-text p {
    font-size: 1.1rem;
  }

  .footer-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .image-buttons-container {
    align-items: center;
  }

  .buttons-container {
    justify-content: center;
  }

  .footer-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-text p {
    max-width: 100%;
  }

  .footer-col h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    padding: 30px 20px 120px;
  }

  .footer-text h2 {
    font-size: 2rem;
  }

  .footer-text p {
    font-size: 1rem;
  }

  .footer-btn {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
  }

  .buttons-container {
    width: 100%;
  }

  .footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .footer-text h2 {
    font-size: 1.8rem;
  }

  .footer-col {
    min-width: 100%;
  }
}
