* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background: #eef2f5;
    color: #333;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a2a44, #2a6dd9);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header.hidden {
    transform: translateY(-100%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeIn 1.2s ease-in;
    background: linear-gradient(90deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1a2a44;
    background: #ffd700;
}

.login-btn {
    background: #ffd700;
    color: #1a2a44;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
    transform: scale(1.08);
    background: #ffec80;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    display: block;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('https://source.unsplash.com/random/1920x1080?technology');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: slideInFromLeft 1.2s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide p {
    font-size: 18px;
    margin: 20px 0;
    animation: slideInFromRight 1.2s ease;
    max-width: 600px;
    line-height: 1.5;
}

.slide .cta {
    background: #2a6dd9;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease;
}

.slide .cta:hover {
    transform: scale(1.08);
    background: #1a4db3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slide-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-nav button:hover {
    background: #ffd700;
    color: #1a2a44;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a2a44;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #2a6dd9;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text h3 {
    font-size: 22px;
    color: #2a6dd9;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.about-text h3::before {
    content: '';
    width: 5px;
    height: 100%;
    background: #ffd700;
    position: absolute;
    left: 0;
    top: 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.vision-mission div {
    background: #f5f7fa;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vision-mission div:hover {
    transform: translateY(-10px);
}

.vision-mission h4 {
    font-size: 20px;
    color: #1a2a44;
    margin-bottom: 10px;
}

.vision-mission ul {
    list-style: disc;
    padding-left: 20px;
}

.vision-mission li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Metrics Section */
.metrics {
    padding: 60px 0;
    background: #f5f7fa;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric-box {
    padding: 30px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.metric-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metric-box h3 {
    font-size: 32px;
    color: #2a6dd9;
    margin-bottom: 10px;
    font-weight: 700;
}

.metric-box p {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    padding: 25px;
    background: #f5f7fa;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.service-box h3 {
    font-size: 22px;
    color: #1a2a44;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.service-link {
    color: #2a6dd9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 5px;
}

.service-link:hover {
    color: white;
    background: #2a6dd9;
}

/* Technologies We Use Section */
.technologies {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa, #e0e7ff);
    position: relative;
    overflow: hidden;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(42, 109, 217, 0.1), transparent 70%);
    z-index: 1;
}

.technologies .container {
    position: relative;
    z-index: 2;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.tech-box {
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: techFadeIn 0.6s ease-out forwards;
    opacity: 0;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.tech-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-image: linear-gradient(135deg, #2a6dd9, #ffd700) 1;
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
}

.tech-icon {
    font-size: 40px;
    color: #2a6dd9;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tech-box:hover .tech-icon {
    color: #ffd700;
    transform: scale(1.2);
}

.tech-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a2a44;
}

.tech-box:hover h3 {
    color: #2a6dd9;
}

@keyframes techFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-box {
    padding: 25px;
    background: #f5f7fa;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.why-box h3 {
    font-size: 22px;
    color: #1a2a44;
    margin-bottom: 15px;
}

.why-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Footer Section */
.footer {
    padding: 60px 0 20px;
    background: linear-gradient(135deg, #1a2a44, #2a6dd9);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    opacity: 0.3;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 15px auto 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about, .footer-links, .footer-map, .footer-contact {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.footer-about:hover, .footer-links:hover, .footer-map:hover, .footer-contact:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.footer-about h3, .footer-links h3, .footer-map h3, .footer-contact h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-about h3::after, .footer-links h3::after, .footer-map h3::after, .footer-contact h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #ffd700;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffd700;
    color: #1a2a44;
    transform: scale(1.1);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 8px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffd700;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 10px;
        max-width: 100%;
    }

    /* Header */
    header {
        padding: 10px 0;
        width: 100%;
    }

    header .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }

    .logo h1 {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
        margin-right: 10px;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(135deg, #1a2a44, #2a6dd9);
        padding: 10px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 10px 20px;
        font-size: 16px;
    }

    .login-btn {
        margin: 10px 20px;
        padding: 8px 20px;
    }

    /* Hero Section */
    .hero {
        margin-top: 50px;
    }

    .slide h2 {
        font-size: 28px;
    }

    .slide p {
        font-size: 16px;
        max-width: 90%;
        margin: 15px 0;
    }

    .slide .cta {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slide-nav button {
        padding: 8px 12px;
        font-size: 16px;
    }

    /* About Section */
    .about {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .vision-mission h4 {
        font-size: 18px;
    }

    .vision-mission li {
        font-size: 14px;
    }

    /* Metrics Section */
    .metrics {
        padding: 40px 0;
    }

    .metric-box {
        padding: 20px 10px;
    }

    .metric-box h3 {
        font-size: 28px;
    }

    .metric-box p {
        font-size: 14px;
    }

    /* Services Section */
    .services {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        padding: 20px;
    }

    .service-box h3 {
        font-size: 20px;
    }

    .service-box p {
        font-size: 14px;
    }

    .service-link {
        font-size: 14px;
    }

    /* Technologies Section */
    .technologies {
        padding: 40px 0;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tech-box {
        padding: 15px;
    }

    .tech-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .tech-box h3 {
        font-size: 16px;
    }

    /* Why Choose Us Section */
    .why-choose-us {
        padding: 40px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-box {
        padding: 20px;
    }

    .why-box h3 {
        font-size: 20px;
    }

    .why-box p {
        font-size: 14px;
    }

    /* Footer Section */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-intro {
        font-size: 14px;
        max-width: 90%;
        margin: 10px auto 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-about, .footer-links, .footer-map, .footer-contact {
        padding: 15px;
    }

    .footer-about h3, .footer-links h3, .footer-map h3, .footer-contact h3 {
        font-size: 18px;
    }

    .footer-about p, .footer-links a, .footer-contact p {
        font-size: 14px;
    }

    .social-links {
        gap: 8px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-map iframe {
        height: 180px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .slide h2 {
        font-size: 24px;
    }

    .slide p {
        font-size: 14px;
    }

    .slide .cta {
        padding: 8px 20px;
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .metric-box h3 {
        font-size: 24px;
    }

    .tech-icon {
        font-size: 28px;
    }
}