* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.logo-text{
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
nav a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #c084fc;
}

section.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #c084fc;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    max-width: 43em;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #ddd;
}

.hero button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1em;
}

.hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4)
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    nav a {
        margin-left: 1rem;
    }
}

/* First section end here */

/* Second section start */
.services {
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    margin: auto;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 20em;
    height: 10em;
}

.stat-box h2 {
    color: #c084fc;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.95rem;
    color: #ccc;
}

.services-heading {
    font-size: 2rem;
    color: #a855f7;
    margin-bottom: 2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: auto auto auto; /* repeat(auto-fit, minmax(320px, 1fr)); */
    gap: 1.5rem;
    justify-content: center;
    margin: auto;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card h3 {
    color: #818cf8;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 1em;
}

/* Second section end */

/* Third section start */
.about-section {
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.about-heading {
    font-size: 3rem;
    color: #c084fc;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}
.glass-card{
    background: #343151;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-card h3 {
    color: #a78bfa;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.who-we-serve{
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    border-left: 4px solid #667eea;
}
.who-we-serve h4 {
    font-size: 1.2rem;
    color: #a78bfa;
    margin-bottom: 1.2rem; 
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1.2rem;
}

.serve-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.serve-item h5 {
    color: #c084fc;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.serve-item p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Third section end */

/* Fourth section start */

.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.section-container h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #7b4ae2, #b556cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box p {
    margin: 0 0 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffffcc;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #6a5efc, #a362ea);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(90deg, #5d53d7, #934fd4);
}

@media (max-width: 600px) {
    .section-container h2 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 25px 20px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .stat-box{
        width: 100%;
    }
}

/* Fourth section end */

/* Fifth section start */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #292B48;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    margin: 10px auto 30px;
    background: linear-gradient(90deg, #7b4ae2, #b556cc);
    border-radius: 2px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.info-item {
    min-width: 200px;
}

.info-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
}

.notice-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

.notice-box strong {
    display: block;
    color: #ff4c4c;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-address {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #aaa;
}

@media (max-width: 600px) {
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-info {
        gap: 20px;
        flex-direction: column;
    }
    .stat-box{
        width: 100%;
    }
}

/* Fifth section end */
 
@media (max-width: 960px) {
    .logo{
        width: 100%;
    }
    .stat-box{
        width: 100%;
        height: auto;
    }
    .stat-box h2{
        font-size: 4rem;
    }
    .stat-box p{
        font-size: 2rem;
    }
    .services-heading{
        font-size: 5rem;
    }
    .service-cards{
        grid-template-columns: auto;
    }
    .card h3{
        font-size: 2.5rem;
    }
    .card p{
        font-size: 1.5rem;
    }
    .about-section{
        padding: 0em;
    }
    .about-card h3{
        font-size: 2.5rem;
    }
    .about-card p{
        font-size: 1.5rem;
    }
     
    .who-we-serve h4{
        font-size: 2rem;
    }
    .serve-item h5{
        font-size: 1.5rem;
    }
    .who-we-serve p{
        font-size: 1.5rem; 
    }
    .cta-box p{
        font-size: 2rem;
    }
    .contact-section h2{
        font-size: 3.5rem;
    }
    .info-label{
        font-size: 1.7rem;
    }
    .info-value{
        font-size: 1.5rem;
    }
    .notice-box strong{
        font-size: 3rem;
    }
    .footer-address{
        font-size: 1.2rem;
    }
    .notice-box{
        max-width: 100%;
    }
    .about-section{
        max-width: 100%;
    }
    .contact-section{
        max-width: 100%;
    }
    .serve-item {
        margin-left: -2em;
        margin-right: 5em; 
    }
}
 /* Responsive Header start */
 
 
.logo {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column; 
    padding: 1rem;
  }

  .nav a {
    margin: 10px 0;
  }

  .nav.active {
    font-weight: bold;
    display: flex;
    position: absolute;
    float: right;
    margin: 23em 0 12em 15em;
  }
}

 /* Responsive Header End */