
        /* General CSS */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Quicksand", sans-serif, Arial;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        * {
            box-sizing: border-box;
        }

        h1, h2, h3 {
            color: #ffc501;
            font-weight: bold;
        }

        .container {
            width: 60%;
            margin: 0 auto;
        }

        .text-center {
            text-align: center;
        }

        .padding-large {
            padding: 32px;
        }

        .padding-medium {
            padding: 16px;
        }

        .margin-top {
            margin-top: 16px;
        }

        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .card-shadow {
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* Navigation */
        .navigation {
            width: 100%;
            padding: 10px 0 5px 0 ;
            position: fixed;
            z-index: 100;
            top: 0;
            background-color:#412e0ef1;
        }

        .nav-container {
            width: 90%;
            height: 70px;
            display: flex;
            align-items:center;
            justify-content:space-between;
            gap: 12px;
        }

        .logo {
            margin-left: 60px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            margin-left: auto; /* push links to the right */
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(233, 242, 251, 1);
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #ffc501;
        }

        /* CTA placed in the nav */
        .nav-cta {
            margin-left: 12px;
            display: flex;
            align-items: center;
        }

        .nav-cta-btn {
            padding: 10px 14px;
            background-color: #ffc501;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            font-family: "Quicksand", sans-serif;
            font-size: 1rem;
        }

        .nav-cta-btn:hover {
            background-color: #ffc40154;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Mobile */
        .mobile-button {
            display: none;
            color: #ffc501;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-menu {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            background-color: #412e0eee;
            overflow-x: hidden;
            transition: 0.4s;
            padding-top: 20px;
        }

        .mobile-menu a {
            padding: 12px 12px 12px 32px;
            text-decoration: none;
            font-size: 1.25rem;
            color: rgba(233, 242, 251, 1);
            display: block;
            transition: 0.3s;
        }

        .mobile-menu a:hover {
            color: #ffc501;
        }

/* Map container for contact section */
.map-container {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 12px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 480px) {
    .map-container { height: 220px; }
}



        /* Hero Section */
        .hero {
            height: 600px;
            background-image: url("assets/background.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 60px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.8);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero .pre-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            opacity: 0.6;
        }

        .hero .title {
            font-size: 4rem;
            margin: 10px 0;
        }

        .hero .title span {
            color: #412e0ef1;
            border-bottom: 4px solid #412e0ef1;
        }

        /* About Section */
        .about {
            display: block;
            gap: 30px;
            padding: 60px 0;
        }

        .about-column {
            flex: 1;
        }

        .about-column h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-column p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        /* Services Section */
        .services {
            padding: 60px 0;
            
        }

        .services h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }

        .service-card {
            width: 30%;
            padding: 25px;
            text-align: center;
            border: 1px solid #412e0ef1;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Contact Section */
        .contact {
            padding: 60px 0;
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact-desc {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-details div {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .contact-details a {
            color: #ffc501;
            text-decoration: none;
        }

        .contact-details a:hover {
            text-decoration: underline;
            color: #4b391b;
        }

        /*Contact Form*/
        .contact-form {
            flex: 1;
        }

        .form-container {
            background-color: #4b391b;
            padding: 30px;
            border-radius: 16px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: "Quicksand", sans-serif;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #ffc501;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-family: "Quicksand", sans-serif;
            font-size: 1rem;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #0088c7;
        }

        .form-note {
            color: white;
            margin-top: 15px;
            font-size: 0.9rem;
        }

        .form-note a {
            color: rgb(190, 217, 243);
        }

        /* Footer */
        .footer {
            background-color: #4b391b;
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        .footer span {
            color: rgb(190, 217, 243);
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .container {
                width: 80%;
            }
            
            .nav-container {
                width: 80%;
            }
            
            .nav-links {
                display: none;
            }
            .nav-cta {
                display: none; /* hide CTA in the desktop nav on smaller screens; mobile menu has it */
            }
            
            .mobile-button {
                display: block;
            }
            
            .service-card, .job-card {
                width: 45%;
            }
            
            .hero .title {
                font-size: 3rem;
            }
        }

        @media screen and (max-width: 768px) {
            .about, .contact {
                flex-direction: column;
            }
            
            .service-card, .job-card {
                width: 100%;
            }
            
            .hero {
                height: 500px;
            }
            
            .hero .pre-title {
                font-size: 2rem;
            }
            
            .hero .title {
                font-size: 2.5rem;
            }
            
            .hero .post-title {
                font-size: 1.2rem;
            }
            
            .about-column h2, .services h2, .careers h2, .contact-info h2 {
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .container {
                width: 90%;
            }
            
            .nav-container {
                width: 90%;
            }
            
            .hero {
                height: 400px;
            }
            
            .hero .pre-title {
                font-size: 1.5rem;
            }
            
            .hero .title {
                font-size: 2rem;
            }
            
            .stats-grid {
                flex-direction: column;
                gap: 30px;
            }
        }

        .mobile-menu-active {
            width: 70%;
        }

        @media screen and (max-width: 480px) {
            .mobile-menu-active {
                width: 100%;
            }
        }
