 
        @media (max-width: 768px) {
    body {
		
		*		{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
            --primary: #2c5282;
            --secondary: #4a5568;
            --accent: #edf2f7;
        }

        body {
            line-height: 1.6;
            color: var(--secondary);
        }





.header {
    background: url('mobilelogo.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 200px; /* Default height for larger screens */
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 10;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .header {
        height: 120px; /* Reduce height for smaller screens */
        background-size: contain; /* Ensure the image scales properly */
    }
}


/* Shift the nav menu to the right */
.nav-menu {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* Keep it centered vertically */
    z-index: 2;
    display: flex;
    gap: 20px;
    width: auto; /* Adjust based on content width */
    background: transparent; /* No background image for the nav menu */
    padding: 10px 20px;
    border-radius: 10px;

    /* Adjustable shift to the right (e.g., 500px) */
    margin-left: 500px; /* Adjust this value to change the amount of shift */
    
    /* Prevent wrapping of nav links */
    white-space: nowrap; /* Prevents text from wrapping */
}

/* Ensure nav links are white */
.nav-link {
    color: white !important;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px; /* Space for better readability */
    white-space: nowrap; /* Ensure each link stays on one line */
}

/* Optional: Add text shadow to improve readability */
.nav-link {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Hover effect */
.nav-link:hover {
    text-decoration: underline;
}






        /* Modify the existing hero section CSS and add new styles for the logo */
.hero {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(to right, rgba(44,82,130,0.9), rgba(44,82,130,0.7)),
                url('kul.jpg');
}

.hero-background {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(44,82,130,0.9), rgba(44,82,130,0.7)),
                url('kul.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-title {
    color: white;
	font-size: 4rem; 
}
.hero-content {
    text-align: center;
    color: white; 
    font-size: 2rem;
    position: relative;
    z-index: 3;
    margin-top: 200px; /* Add margin-top equal to header height */
}

.main-logo {
    width: 100%;
    height: auto;
    aspect-ratio: 100/23;
    display: block;
}


/* Ensure hero content appears properly positioned */
.hero .container {
    position: relative;
}
.main-logo {
    width: 100%;
    height: auto;
    aspect-ratio: 100/23;
    display: block;
}

/* Ensure hero content appears above the background */
.hero .container {
    position: relative;
    z-index: 2;
}
        .services {
            padding: 6rem 0;
            background: var(--accent);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            height: 400px;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative; /* Added */
        }

        /* New styles */
        .service-card.expanded {
            height: auto;
        }

        .card-content {
            overflow: hidden;
            max-height: 300px; /* Adjust based on your content and padding */
            transition: max-height 0.3s ease-out;
        }

        .card-content.expanded {
            max-height: none;
        }

        .fade-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(transparent, white);
            pointer-events: none;
        }

        .continue-button {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: none;
            border: none;
            color: #3B82F6;
            cursor: pointer;
            font-weight: 500;
        }

        .continue-button:hover {
            color: #2563EB;
        }

        .fade-overlay.hidden,
        .continue-button.hidden {
            display: none;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .team {
            padding: 6rem 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--accent);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary); /* Add a border for the image */
}

.member-name {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 1rem 0;
}


        .contact {
            background: var(--primary);
            color: white;
            padding: 6rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .team-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
		.hero-logo {
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-logo {
    width: 100%;
    height: auto;
    aspect-ratio: 100/23;
    display: block;
}

/* Modify the existing hero class to accommodate the logo */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(to right, rgba(44,82,130,0.9), rgba(44,82,130,0.7)),
                url('kul.jpg');
 /*   background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column; 
    align-items: center;  */
}
.map-link {
    color: white;
    text-decoration: none; /* Removes underline */
    font-size: 18px; /* Adjust size if needed */
}

.map-link:hover {
    text-decoration: underline; /* Optional: adds underline on hover */
}
.special-nav {
    font-size: 2em;
    color: white !important; /* Force white color */
    font-weight: bold;
    margin-bottom: -15px;
} 
.nav-logo {
    width: 100%;  /* Adjust width */
    height: auto;  /* Maintains aspect ratio */
}
/* Textbox Borders */
        input, textarea {
            border: 2px solid #444; /* Thicker, darker border */
            padding: 10px;
            font-size: 16px;
            width: 100%;
            border-radius: 5px;
            background-color: #f9f9f9; /* Light gray background */
            transition: all 0.3s ease;
        }

        input:focus, textarea:focus {
            border-color: #007bff; /* Blue border when focused */
            background-color: #fff; /* White background on focus */
            outline: none;
        }
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}
 }
}
   