 body {
            box-sizing: border-box;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #221F1F;
            line-height: 1.6;
        }

        .main-wrapper {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
        }



        /* Navbar Styles */
        /* .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.4s ease, padding 0.4s ease;
        }

        .navbar.scrolled {
            background-color: #221F1F !important;
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #FFFFFF;
            letter-spacing: 2px;
        }

        .logo span {
            color: #EC1C23;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #EC1C23;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: #EC1C23;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background-color: #FFFFFF;
            transition: 0.3s;
        } */

                /* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

    background-color: transparent;   /* start mein transparent */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;

    transition: all 0.4s ease;
}


.navbar.scrolled {
    background-color: rgba(156, 151, 151, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #EC1C23;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #EC1C23;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: 0.3s;
}

/* Optional: make navbar glass always visible on scroll (if JS used) */
.navbar.scrolled {
    backdrop-filter: blur(12px);
}

        /* Hero Section */
        .hero {
            height: 100%;
            background-image: url('images/img10.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #FFFFFF;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            animation: fadeInUp 1.5s ease;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .hero h2 {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* Section Styles */
        section {
            padding: 5rem 5%;
        }

        .section-title {
            font-size: 2.5rem;
            color: #221F1F;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #EC1C23;
        }

        /* About Section */
        .about {
            background-color: #FFFFFF;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background-image: url('images/img2.jpeg');
            background-size: contain;      
    background-position: center;   
    background-repeat: no-repeat;  
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #FFFFFF;
        }

        .about-content {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            background-image: url('images/img4.jpeg');
            background-size: contain;      
            background-position: center;   
            background-repeat: no-repeat;  
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: #FFFFFF;
        }

        .services .section-title {
            color: #FFFFFF;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
            border: 2px solid rgba(236, 28, 35, 0.3);
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background-color: rgba(236, 28, 35, 0.2);
            border-color: #EC1C23;
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #EC1C23;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #FFFFFF;
        }

        .service-card p {
            color: #ddd;
            font-size: 1rem;
        }

        /* Introduction Section */
        .introduction {
            background-color: #f8f8f8;
        }

        .intro-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .intro-image {
            width: 100%;
            height: 400px;
            background-image: url('images/img5.jpeg');
            background-size: contain;      
            background-position: center;   
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #FFFFFF;
        }

        .intro-content {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .intro-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .intro-content p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
        }

        /* Mission Section */
        .mission {
            background-color: #FFFFFF;
        }

        .mission-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .mission-image {
    width: 100%;
    height: 400px;
    background-image: url('images/img1.jpeg');
    background-size: contain;      
    background-position: center;   
    background-repeat: no-repeat;  
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #FFFFFF;
}


        .mission-content {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .mission-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .mission-content p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
        }

        /* Vision Section */
        .vision {
            background-color: #f8f8f8;
        }

        .vision-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .vision-image {
            width: 100%;
            height: 400px;
            background-image: url('images/img7.jpeg');
            background-size: contain;      
            background-position: center;   
            background-repeat: no-repeat;  
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #FFFFFF;
        }

        .vision-content {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .vision-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .vision-content p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact {
            background-color: #FFFFFF;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .contact-image {
            width: 100%;
            height: 500px;
            background-image: url('images/img3.jpeg');
            background-size: contain;      
            background-position: center;   
            background-repeat: no-repeat;  
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #FFFFFF;
        }

        .contact-form {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .contact-form.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #221F1F;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #EC1C23;
            box-shadow: 0 0 0 3px rgba(236, 28, 35, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background-color: #EC1C23;
            color: #FFFFFF;
            padding: 1rem 3rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #c41419;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background-color: #2a2a2ad3;
            color: #FFFFFF;
            padding: 4rem 5% 2rem;
        }
        

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #EC1C23;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-section p {
            color: #ccc;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            color: #ccc;
        }

        .subscribe-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .subscribe-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .subscribe-btn {
            background-color: #EC1C23;
            color: #FFFFFF;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .subscribe-btn:hover {
            background-color: #c41419;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #b8b6b6;
        }

.social-icon {
    list-style: none;     
    padding: 0;
    margin: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons li {
    display: flex;         
    gap: 12px;             
    justify-content: flex-start; 
    align-items: center;
}
/* Hover effects */
.social-icon:hover {
    background: #EC1C23;
    transform: translateY(-3px);
}

/* Optional brand colors on hover */
.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icon.twitter:hover {
    background: #000000;
}


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #221F1F;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about-container,
            .intro-container,
            .mission-container,
            .vision-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            section {
                padding: 3rem 5%;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        