/* Optional: Add icons using FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

* {
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: white;
  color: #f0f0f0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --accent: #4f46e5;
  --card-bg: #192841;
  --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --bg: #121212;
  --text: #e0e0e0;
  --accent: #8ab4f8;
  --card-bg: #0f172a;
  --shadow: rgb(0, 0, 0);
}


    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      backdrop-filter: blur(12px);
      background: white;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      z-index: 999;
       text-align: justify;
    }

    .navbar-container {
      max-width: 1900px;
      margin: 0 auto;
      padding: 0.3rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: black 1px 1px 30px;
    }

    .logo img {
      height: 50px;
    }

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

    .nav-links li a {
      text-decoration: none;
      color: #0060ff;
      font-weight: 600;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s;
      font-size: 18px;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #00c6ff;
      box-shadow: 0 0 10px #00c6ff, 0 0 20px #00c6ff;
      transition: width 0.3s ease;
    }

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

    .nav-links li a:hover {
      color: #00c6ff;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;
      color: black;
      background: none;
      border: none;
      z-index: 1001;
    }
    #bars{
        font-size: 10px;
    }

    .hamburger-line {
      height: 3px;
      width: 100%;
      background-color: black;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .hamburger.open .line1 {
      transform: rotate(45deg) translateY(8px);
    }

    .hamburger.open .line2 {
      opacity: 0;
    }

    .hamburger.open .line3 {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        
      }
    .logo img {
        height: 45px;
        display: flex;
        margin-left: 10px;
     }
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(218, 222, 226, 0.95);
        backdrop-filter: blur(10px);
        gap: 1.5rem;
        padding: 2rem 1rem;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease-in-out;
      }

      .nav-links.active {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links li {
        width: 100%;
        text-align: center;
      }

      .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
      }
    }
/*************************** Sections *****************************/
/*section {*/
/*  padding: 2em;*/
/*}*/


    /* ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Footer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */

.footer {
  background-color: #f0f4f8;
  color: royalblue;
  padding: 4rem 4rem;
  margin-top: 0.7rem;
  font-family: 'Poppins', sans-serif;
box-shadow: rgba(0, 0, 0, 0.2) 0px -4px 25px;
max-height: 370px;
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
  font-weight: 700;
}

.footer-col a {
  color: royalblue;
  text-decoration: none;
}

/*.footer-col a:hover {*/
/*  text-decoration: underline;*/
/*}*/


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

.footer-col ul li {
  margin: 0.5rem 0;
}

.footer-col ul li a {
  color: royalblue;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  display: inline-block;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: #58a6ff;
}

.footer address p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  word-break: break-word;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: royalblue;
}

.footer-bottom p {
  margin-top: 5rem;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.social-icons a {
  color: royalblue;
  font-size: 1.6rem;
  transition: color 0.3s;
}

/* Brand-specific hover colors */
.social-icons a:hover .fa-facebook-f {
  color: #1877f2; /* Facebook blue */
}

.social-icons a:hover .fa-youtube {
  color: #ff0000; /* YouTube red */
}

.social-icons a:hover .fa-linkedin-in {
  background: linear-gradient(135deg, #0077b5, #0a66c2, #004182);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.social-icons a:hover .fa-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/*.social-icons a:hover {*/
/*  color: #58a6ff;*/
/*}*/

/* Media Queries */

/* ✅ Responsive Styling */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .footer {
max-height: 970px;
}
  
}



@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
    text-align: center;
    max-height: 850px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 1.2rem;
}

  .footer-col h3 {
    font-size: 1.2rem;
  }

  .footer-col ul li a {
    font-size: 0.9rem;
  }

  .footer address p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
    margin-bottom:50px;
  }


  .social-icons a {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-col h3 {
    font-size: 0.9rem;
  }
  .social-icons {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 1.1rem;
}
  .footer-bottom {
    font-size: 0.85rem;
    margin-bottom:50px;
  }

  .footer-col ul li a,
  .footer address p {
    font-size: 0.8rem;
  }

  .social-icons a {
    font-size: 1.1rem;
  }
}



/* ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Footer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */
    
    
    
    