/* General Reset */
body, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: "Afacad Flux", serif;
}

/* Header Styling */
header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays above other content */
    background-color: #333;
    color: #fff;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.logo_link{
    text-decoration: none;
    color: #fff;    
    cursor: pointer;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Styling for Login Button */
.login-button {
    padding: 5px 10px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #ff7f50;
    border-color: #ff7f50;
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Slider Styling */
.slider {
    position: relative;
    overflow: hidden;
}

.slider-item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.slider-content {
    color: #fff;
    max-width: 600px;
    margin-top: 200px;
    margin-right: auto;
    margin-left: auto;
}
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

.cta-button {
    padding: 10px 20px;
    margin-top: 15px;
    border: none;
    background-color: #ff7f50;
    color: #fff;
    cursor: pointer;
}

/* Responsive Styling */
@media (max-width: 768px) {
   

    .nav-menu li {
        text-align: center;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

   
    .navbar-actions {
        flex-direction: row;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #444;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
    }
}

/* USP Section */
.usp-section {
    background-color: #f9fafc;
    padding: 60px 20px;
    text-align: center;
}

.usp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.usp-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

/* Grid Layout */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* USP Card */
.usp-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .usp-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

/* Icons */
.usp-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #4caf50;
}

/* Headings & Text */
.usp-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.usp-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Button */
.usp-cta {
    margin-top: 40px;
}

.usp-button {
    display: inline-block;
    background-color: #4caf50;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .usp-button:hover {
        background-color: #388e3c;
    }


/* General Section Styles */
.two-column-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.two-column-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

/* WElcome and CTA Section */
.two-column-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.two-column-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

/* Two-Column Layout */
.two-column-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

/* Left Column: Image */
.column-image {
    flex: 1;
    max-width: 50%;
}

    .column-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Right Column: Text */
.column-text {
    flex: 1;
    max-width: 50%;
}

    .column-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #4caf50;
    }

    .column-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 15px;
    }

/* Learn More Button */
.learn-more-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #4caf50;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .learn-more-button:hover {
        background-color: #388e3c;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .two-column-content {
        flex-direction: column;
        text-align: center;
    }

    .column-image, .column-text {
        max-width: 100%;
    }
}


