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

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: white;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar img {
    height: 55px;
    margin-right: auto;
    cursor: pointer;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ccc; 
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, #00f2fe, #9b5de5);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
    color: var(--text-white); 
}

.dropdown {
    position: relative; 
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #111; 
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 100001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); 
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-white);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #222;
    color: #00f2fe;
}

/* Contact Button */
.contact-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent; 
    border-radius: 999px;
    color: var(--text-white);
    background: #000; 
    background-clip: padding-box;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1; 
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(to right, #00f2fe, #9b5de5);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
    transition: all 0.3s ease;
    border: none; 
}

.contact-btn:hover {
    background: linear-gradient(to right, #00f2fe, #4931C1);
    border: none;
    box-shadow: 0 0 5px 5px #0693BB, 0 0 5px 5px #4931C1;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--text-white); 
    cursor: pointer;
    margin-left: 1rem;
}

#menu-toggle {
    display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 10;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  .hamburger {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background: #111;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}



.main_content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}


.main_content h1 {
    background-image: linear-gradient(90deg, #46B1E3 5%, #4b44a5 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 3.2rem;
    position: relative;
    top: -22rem;
    left: 2.5%;
}
.main_content img {
    width: 36rem;
    position: relative;
    top: 15rem;
    left: 72%;
}
.main_content h3 {
    color: white;
    font-size: 1.8rem;
    position: relative;
    top: -22rem;
    text-align: start;
    left: 2.5%;
}
.main_content p {
  color: rgb(210, 208, 208);
  font-size: 1.5rem;
  position: relative;
  top: -22rem;
  text-align: start;
  left: 2.5%;
  line-height: 2.5rem;  /* adjust as needed */
}
.site-footer {
  position: relative;
  background-color: rgb(10, 16, 39);
  color: #ccc;
  padding: 4rem 2rem 2rem;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2rem;
  color: #29b5db;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #aaa;
  font-size: 1rem;
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color:  #29b5db;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #29b5db;
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  position: relative;
  left: 1rem;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  padding-top: 1.5rem;
}

.back-to-top {
  display: inline-block;
  margin-top: 0.5rem;
  color: #66c2e8;
  text-decoration: none;
  transition: color 0.3s;
}

.back-to-top:hover {
  color: #8a2be2;
}

@media (max-width: 1700px) {
  .main_content img {
    width: 26rem;
    display: block;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }
  .main_content h1 {
    top: 2rem;
  }
  .main_content h3 {
        top: 5rem;
    }
    .main_content p {
        top: 5rem;
    }
    .site-footer {
        position: relative;
        top: 17rem;
    }
}

@media (max-width: 1000px) {
  .main_content img {
    margin-top: 10rem;
  }
}
   
@media (max-width: 800px) {
    .main_content img {
        margin-top: 10rem;
        width: 18rem;
    }
    .main_content h1 {
        font-size: 2.5rem;
    }
    .main_content h3 {
            font-size: 1.3rem;
    }
    .main_content p {
            font-size: 1.1rem;
    }
}
@media (max-width: 500px) {
    .main_content img {
        margin-top: 10rem;
        width: 15rem;
    }
    .main_content h1 {
        font-size: 1.6rem;
    }
    .main_content h3 {
            font-size: 1.1rem;
    }
    .main_content p {
            font-size: 1.1rem;
    }
}

