/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('images/background.jfif') no-repeat center center fixed;
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: url('images/landing_background.png') no-repeat center center / cover, linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

header .container {
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 0 300px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-text img {
    width: 100px;
    height: auto;
    border: 2px solid #fff;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.tagline p {
    font-size: 1.3em;
    margin: 5px 0;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tagline p:last-child {
    font-size: 1em;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tagline p:last-child i {
    font-size: 1.2em;
    color: #f97316;
}

.header-counter {
    text-align: left;
    margin: 30px 0;
    width: 100%;
}

.header-counter p {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
}

.header-counter .stat-number {
    font-size: 3em;
    color: #fff;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.contact-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.7);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.7);
}

/* Navigation */
.navbar {
    background-color: #1e40af;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo img {
    width: 60px;
    height: auto;
    border: 2px solid #fff;
    border-radius: 8px;
}

.nav-logo h1 {
    font-size: 1.2em;
    margin: 0;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    color: #fff;
}

.navbar-nav {
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover {
    background-color: #3b82f6;
    color: #fff !important;
}

.navbar-toggler {
    border: 2px solid #fff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.navbar-brand span {
    color: white;
}

/* Sections */
section {
    padding: 20px 0;
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

section:nth-child(even) {
    background-color: #f1f5f9;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8em;
    font-weight: 800;
    color: #1e3a8a;
    position: relative;
    letter-spacing: 1px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
}

section h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    letter-spacing: 0.5px;
}

section p, section ul, section ol {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
}

.about-text p {
    font-size: 1.3em;
    line-height: 1.9;
    color: #374151;
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 400;
}

section ul, section ol {
    padding-left: 40px;
}

section li {
    margin-bottom: 15px;
    line-height: 1.8;
}



/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.intro-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.intro-icon {
    font-size: 3em;
    color: #3b82f6;
    margin-bottom: 20px;
}

.intro-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.intro-card p {
    color: #374151;
    line-height: 1.7;
    font-size: 1em;
}

/* Mission Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 50px 20px 50px 20px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.mv-card.mission {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mv-header i {
    font-size: 2em;
    color: #fff;
}

.mv-card h3 {
    color: #fff;
    font-size: 1.5em;
    margin: 0;
}

.mv-card p {
    color: #fff;
    line-height: 1.7;
    font-size: 1.1em;
    margin: 0;
}

/* Chairman Message */
.chairman-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.chairman-image {
    flex-shrink: 0;
}

.chairman-image img {
    width: 200px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.message {
    background-color: #e0f2fe;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #3b82f6;
    flex: 1;
}

.message p {
    margin-bottom: 15px;
    font-style: italic;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #3b82f6;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #1e3a8a;
    font-weight: 600;
}

.team-member p:first-of-type {
    font-weight: bold;
    color: #f97316;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.team-member .message {
    font-size: 0.9em;
    line-height: 1.6;
    color: #374151;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1e3a8a;
}

.service-card p {
    font-size: 0.9em;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%; /* 5 slides */
}

.testimonial-slide {
    min-width: 20%; /* 100% / 5 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar i {
    font-size: 100px;
    color: #3b82f6;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-content cite {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 1.1em;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3b82f6;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #1e40af;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Partners */
section#partners {
    background-color: #fff !important;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-logo {
    background: none;
    border: none;
    box-shadow: none;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    aspect-ratio: 16/9;
}

.partner-logo img {
    max-width: 300px;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.value-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

.value-item h4 {
    margin-bottom: 10px;
    color: #1e3a8a;
    font-weight: 600;
}

.value-item p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #374151;
}

/* Commitment */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.commitment-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

.commitment-item h4 {
    margin-bottom: 10px;
    color: #1e3a8a;
    font-weight: 600;
}

.commitment-item p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #374151;
}

/* Achievements */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-item h4 {
    margin-bottom: 10px;
    color: #1e3a8a;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    border: 2px solid #fff;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.8em;
    opacity: 0.9;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #f97316;
}

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

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

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

.footer-links a:hover {
    color: #f97316;
}

.footer-links {
    color: #fff;
}

.footer-contact {
    color: #fff;
}

.footer-social {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9em;
    opacity: 0.9;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    font-size: 1.5em;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.social-link:hover {
    color: #f97316;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.7em;
    opacity: 0.8;
}

.footer-bottom i {
    margin-right: 8px;
    color: #f97316;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Form */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2em;
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: #1e3a8a;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #1e3a8a;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    background-color: #3b82f6;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #1e40af;
}

/* Map */
.map-container {
    margin-top: 40px;
}

.map-container h3 {
    margin-bottom: 20px;
    color: #1e3a8a;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Procedure Steps */
.procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.procedure-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #1e40af);
    border-radius: 2px;
    transform: translateX(-50%);
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.step:nth-child(odd) {
    justify-content: flex-start;
    text-align: right;
}

.step:nth-child(even) {
    justify-content: flex-end;
    text-align: left;
}

.step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #f97316;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #3b82f6;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    position: relative;
    margin: 0 20px;
}

.step:nth-child(odd) .step-number {
    order: 2;
}

.step:nth-child(even) .step-number {
    order: 1;
}

.step-content {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f97316;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.step:nth-child(odd) .step-content {
    order: 1;
    border-left-color: #3b82f6;
}

.step:nth-child(even) .step-content {
    order: 2;
    border-right: 4px solid #10b981;
    border-left: none;
}

.step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.step-content h3 {
    margin-bottom: 5px;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.1em;
}

.step-content p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
    color: #374151;
}

/* Different colors for each step */
.step:nth-child(1) .step-content {
    border-left-color: #3b82f6;
}

.step:nth-child(2) .step-content {
    border-right-color: #10b981;
}

.step:nth-child(3) .step-content {
    border-left-color: #f59e0b;
}

.step:nth-child(4) .step-content {
    border-right-color: #ef4444;
}

.step:nth-child(5) .step-content {
    border-left-color: #8b5cf6;
}

.step:nth-child(6) .step-content {
    border-right-color: #06b6d4;
}

.step:nth-child(7) .step-content {
    border-left-color: #f97316;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .services-grid, .team-grid, .values-grid, .commitment-grid, .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    body {
        overflow-x: hidden;
    }
}

@media (max-width: 1024px) {
    .services-grid, .team-grid, .values-grid, .commitment-grid, .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .chairman-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-slider {
        padding: 0 80px;
    }

    .prev-btn, .next-btn {
        padding: 8px 12px;
        font-size: 1em;
        min-width: 40px;
        min-height: 40px;
        left: 10px;
    }

    .next-btn {
        right: 10px;
        left: auto;
    }

    .cta-button {
        min-height: 48px;
        padding: 16px 24px;
    }

    .contact-form button {
        min-height: 48px;
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    header {
        min-height: auto;
        padding: 20px 0;
    }

    .logo-text {
        flex-direction: column;
        gap: 15px;
    }

    .logo-text img {
        width: 80px;
    }

    .logo-text h1 {
        font-size: 2em;
    }

    .tagline p {
        font-size: 1.1em;
    }

    .header-counter p {
        font-size: 1em;
    }

    .header-counter .stat-number {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    section {
        padding: 30px 0;
    }

    section h2 {
        font-size: 1.8em;
    }

    section h3 {
        font-size: 1.3em;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .message {
        padding: 20px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .procedure-steps {
        gap: 20px;
    }

    .procedure-steps::before {
        left: 30px;
        transform: none;
    }

    .step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .step::before {
        left: 22px;
        transform: translateY(-50%);
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
        margin: 0 15px 0 0;
        order: 1;
    }

    .step-content {
        order: 2;
        padding: 15px;
        border-left: 4px solid #3b82f6;
        border-right: none;
        max-width: none;
    }

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

    .footer-logo {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .map-container iframe {
        height: 250px;
    }

    /* Mobile navigation */
    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1e40af;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav.show {
        display: flex;
    }

    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-toggler {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .navbar-toggler:focus {
        outline: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        padding: 0 15px;
    }

    nav .container {
        padding: 0 15px;
    }

    section h2 {
        font-size: 1.5em;
    }

    .logo-text h1 {
        font-size: 1.8em;
    }

    .tagline p {
        font-size: 1em;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content p {
        font-size: 0.9em;
    }

    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }

    .testimonial-slider {
        padding: 0 100px;
    }

    .prev-btn, .next-btn {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
        min-height: 36px;
        left: 5px;
    }

    .next-btn {
        right: 5px;
        left: auto;
    }

    .service-card, .team-member, .value-item, .commitment-item {
        padding: 20px;
    }

    .contact-item {
        padding: 15px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* General responsive images */
img {
    max-width: 100%;
    height: auto;
}
