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

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(wallpaper2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Footer Styles */
footer {
    background: rgba(148, 147, 155, 0.589);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
}

.footer-section h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section img{
    height: 50px;
    width: auto;
    display: block;
    margin: auto;
}

.footer-section p {
    color: #080808;
    line-height: 1.5;
    font-size: 0.9em;
    margin-bottom: 5px;
}

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

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    color: #000000;
    font-size: 0.8em;
}

/* Section Styles */
section {
    min-height: 100vh;
    padding: 120px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-container h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: bold;
}

.about-container p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1em;
    text-align: justify;
    margin: 0;
}

/* Services Section Styles */
.services-list {
    list-style: disc inside;
    padding-left: 0;
    margin: 30px auto 0 auto;
    max-width: 800px;
    background: #f7f7fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    padding: 30px 30px 30px 40px;
}

.services-list li {
    font-size: 1.13em;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.7;
    padding-left: 0.5em;
}


.container h1 {
    text-align: center;
    color: #2a2a2a;
    font-size: 2.1em;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #1E5795;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #13375e;
}

.submit-btn:active {
    transform: translateY(1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 87, 149, 0.9), rgba(19, 55, 94, 0.9));
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(bgimage.jpg) center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-text p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1E5795;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 50px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.2em;
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-section img {
        height: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 0.85em;
    }
    
    section {
        padding: 120px 15px 30px;
    }
    
    .about-container {
        padding: 30px 20px;
    }
    
    .about-container h1 {
        font-size: 2rem;
    }
    
    .about-container p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 20px 0;
    }

    /* Hero Section Responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-text h2 {
        font-size: 1.4em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .services-list {
        padding: 18px 10px 18px 18px;
        font-size: 1em;
    }
    .container h1 {
        font-size: 1.3em;
    }
    
    footer {
        padding: 25px 0 10px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-section img {
        height: 35px;
    }
    
    .footer-section h3 {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .footer-section p {
        font-size: 0.8em;
        margin-bottom: 3px;
    }
    
    .copyright {
        padding-top: 15px;
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .hero-text h2 {
        font-size: 1.2em;
    }
    
    .hero-text p {
        font-size: 1em;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}