/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); */
    background: linear-gradient(to right, #141e30, #243b55);
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    backdrop-filter: blur(8px);
    background-color: rgba(15, 12, 41, 0.8);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: center;
}

.logo img {
    height: 50px;
    /* filter: drop-shadow(0 0 5px #00ffe0); */
    filter: drop-shadow(0 0 #00ffe0);
}

.logo-text {
    position: relative;
    left: -72px;
    top: -10px;
    color: #f0feff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffe0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}







/* About Section Styling */
.about-section {
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #ffffff, #f3f4f6); */
}

.about-container {
  max-width: 1100px;
  margin: auto;
  /* background: #ffffff; */
  padding: 40px;
  border-radius: 20px;
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08); */
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.about-container:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

/* Headings and Tagline */
.about-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00c6ff;
  margin-bottom: 10px;
  text-align: center;
}

.about-container .tagline {
  font-size: 1.2rem;
  color: #e7e7e7;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* Paragraph Content */
.about-container .content p {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-container .content p strong {
  color: #0d6efd;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-container {
    padding: 25px;
  }

  .about-container h1 {
    font-size: 2rem;
  }

  .about-container .tagline {
    font-size: 1rem;
  }

  .about-container .content p {
    font-size: 1rem;
  }
}







/* Footer */
footer {
    background: linear-gradient(135deg, #1c1c1c, #0d0d0d);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #334155;
    color: white;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

.footer-contactus-links {
    color: white;
    text-decoration: none;
}

.footer-contactus-links:hover {
    color: rgb(55, 191, 191);
}








@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #1f1f1f;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: right;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
        backdrop-filter: blur(8px);
        background-color: rgba(15, 12, 41, 0.8);
        text-align: center;
        border-radius: 10px;
    }

    .mobile-menu-btn {
        display: block;
    }

}
