: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:#0c0d1f;
  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);
}



    /* =================== 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: lightblue;
            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: 100 !important;
            }
        }
        
        @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;
            }

               .hamburger {
                display: block;
                z-index: 100 !important;
            }
        }


/* Contact Main */
.contact-main {
  display: flex;
  max-width: 1080px;
  margin: 56px auto 32px auto;
  padding: 0 18px;
  gap: 38px;
  margin-top: 8rem !important;
}
.contact-left, .contact-right {
  border-radius: 16px;
 
  padding: 38px 32px;
}
.contact-left {
  flex: 1.15;
  background-color:#94c3f28f  ;
  border-radius: 2.5rem;
  border: solid 1.5px #0094fe;
  padding-bottom: -3rem !important;
}
.contact-right {
  flex: 1;
  min-width: 270px;
}
.contact-info-item h2 {
  margin: 0 0 5px 0;
  color:var(--text-light);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.contact-info-item p{
    color: var(--text-light);
    font-size: 1.5rem;
    
}

.info-label{
    font-size:2rem !important;
    margin-top: 1rem;
    color:#ffffff !important;
}
.info-value{
    font-size: 1.25rem;
    color: var(--text-light) !important;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #00f2ff;
  border-radius: 8px;
  background: #f6f8fd;
  resize: none;
  outline: none;
  transition: border 0.2s;
  gap: 2rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid #22408b;
}
.contact-form button {
  width: 100%;
  background: #061f5e;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 1rem;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
}
.contact-form button:hover {
  background: #183163;
}

/* Contact Info */
.contact-info-item {
  margin-bottom: 23px;
}
.info-label {
  color: #22408b;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.info-value {
  color: #35476a;
  font-size: 1.01rem;
  margin-top: 3px;
}

/*----------------------------------
        FOOTER SECTION
        --------------------------------*/

.footer-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #fbfbfb 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, #02031b, #00d6fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text p {
  font-size: 1.6rem;
  color: var(--primary-dark);
  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
   ================================ */

/* Max width for main content */
@media (max-width: 1200px) {
  .contact-main {
    max-width: 96vw;
    gap: 20px;
  }
  .footer-content {
    padding: 40px 10px 120px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .contact-main {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .image-buttons-container {
    align-items: flex-start;
    width: 100%;
  }
  .footer-image {
    margin: 0 0 1rem 0;
    max-width: 270px;
  }
  .buttons-container {
    justify-content: flex-start;
    margin-top: 0;
    gap: 15px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 28px;
    padding-top: 50px;
  }
}

/* Mobile */
@media (max-width: 600px) {
 
  .contact-main {
    padding: 0 2vw;
    margin-top: 30px;
  }
  .contact-left, .contact-right {
    padding: 22px 10px;
  }
  .footer-section {
    margin: 24px 0;
    border-radius: 9px;
  }
  .footer-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .footer-text p {
    font-size: 1.07rem;
  }
  .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .copyright {
    font-size: .83rem;
    padding: 8px 0 0 0;
    left: 10px;
    width: calc(100% - 20px);
    bottom: 18px;
  }
  .footer-content .buttons-container{
    width: 100% !important;
    align-items: center;
    margin-top: 1.5rem;
  }
  .footer-btn{
    width: 100% !important;
  }
  .footer-image{
    display: none;
  }

}

