/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #f5f5f5;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 5%;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: top;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.contact-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #333;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    height: 100vh;
    background-image: url("../assets/images/BGIMG.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 1;
}
.hero-content {
    color: var(--secondary-color);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Solutions Section */
.solutions {
    padding: 6rem 5%;
    background-color: var(--accent-color);
}

.solutions h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    position: relative;
}

.solutions h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .solutions {
        padding: 4rem 3%;
    }

    .solutions h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
    }
}

.solution-card {
    background-color: var(--secondary-color);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.solution-card:hover::after {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.solution-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000000, #333333);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.solution-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.solution-description {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    flex-grow: 1;
}

.learn-more {
    margin-top: auto;
    padding: 1rem 2rem;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.learn-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.learn-more:hover {
    color: var(--secondary-color);
}

.learn-more:hover::after {
    width: 100%;
}

/*partner*/

.partner {
    margin-top: auto;
    padding: 1rem 2rem;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.partner::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.partner:hover {
    color: var(--secondary-color);
}

.partner:hover::after {
    width: 100%;
}

/* Page Hero Section */
.page-hero {
    height: 40vh;
    background: url('../assets/images/bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    text-align: center;
    color: var(--secondary-color);
}
.page-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* transparency */
    backdrop-filter: blur(5px);          /* blur effect */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero h1 {
    font-size: 3rem;
    margin: 0;
    padding: 0 1rem;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.about-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--secondary-color);
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Industries Page Styles */
.industries-grid {
    padding: 5rem 0;
}

.industries-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.industry-card {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.industry-icon {
    font-size: 2.5rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    flex-grow: 1;
}

/* Footer Styles */
footer {
    background-color: #f8f8f8;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 200px;
    opacity: 0.48;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.features-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

.features-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature p {
    color: #666;
    line-height: 1.6;
}
/* .member-bio {
    text-align: justify;
} */

/* Solutions Section Specific Styles */
.solutions-section {
    padding: 5rem 0;
}

.solutions-section .solutions-grid {
    margin-top: 0;
}

/* Partners Page Styles */
.partnership-types {
    padding: 5rem 0;
}

.partnership-types h2,
.partner-benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

.partnership-types h2:after,
.partner-benefits h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.partnership-card {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.partnership-icon {
    font-size: 2.5rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.partnership-card:hover .partnership-icon {
    transform: scale(1.1);
}

.partnership-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.partnership-card p {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    flex-grow: 1;
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Careers Page Styles */
.careers-intro {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.careers-intro h2,
.open-positions h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

.careers-intro h2:after,
.open-positions h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.page-hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Open Positions Section */
.open-positions {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.position-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.position-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.position-location,
.position-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.position-location i,
.position-type i {
    color: var(--primary-color);
}

.position-desc {
    color: #666;
    line-height: 1.6;
    margin: 1.5rem 0;
    min-height: 4.8rem;
}

.position-card .learn-more {
    width: 100%;
    margin-top: auto;
}

/* CSR Page Styles */
.csr-initiatives {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.csr-initiatives h2,
.impact-stats h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

.csr-initiatives h2:after,
.impact-stats h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.initiative-card {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.initiative-icon {
    font-size: 2.5rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.initiative-card:hover .initiative-icon {
    transform: scale(1.1);
}

.initiative-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.initiative-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.initiative-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.initiative-points li {
    color: #666;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.initiative-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Impact Stats Section */
.impact-stats {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* CSR CTA Section */
.csr-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(45deg, #000000, #333333);
    color: var(--secondary-color);
}

.csr-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.csr-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.csr-cta .cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border: 2px solid var(--secondary-color);
    background: none;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.csr-cta .cta-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Careers CTA Section */
.careers-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(45deg, #000000, #333333);
    color: var(--secondary-color);
}

.careers-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.careers-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.careers-cta .cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border: 2px solid var(--secondary-color);
    background: none;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.careers-cta .cta-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}
.why-choose {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

.value-prop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-content {
    max-width: 900px;
    text-align: center;
}

.value-content h3 {
    font-size: 1.8rem;
    color: #004466;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-content p {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #444;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 1000;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 25px;
        cursor: pointer;
        gap: 5px;
        margin-left: 1rem;
    }

    .mobile-menu span {
        height: 5px;
        background-color: black;
        width: 100%;
    }

    .nav-links a {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid #eee;
    }
}
/* Animation for nav-links */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.nav-links.show {
    display: flex !important;
    animation: slideFadeIn 0.4s cubic-bezier(0.25, 2.7, 0.5, 1) forwards;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Line Base Style */
.mobile-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 2.2, 0.8, 0.4);
    transform-origin: center;
}

/* Hamburger Transformation on Active */
.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) scaleX(0.9) translateY(5px) translateX(5px);
    background-color: #000000;
}
.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) scaleX(0.9) translateY(-6px) translateX(5px);
    background-color: #000000;
}

/* Add subtle shadow and hover effect */
.mobile-menu:hover span {
    background-color: #555;
}

/*this is the original Navigation Panel*/


/* .nav-links.show {
    display: flex !important;
    animation: slideFadeIn 0.3s ease-out forwards;
}
.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}
.mobile-menu span {
    transition: all 0.3s ease;
} */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
  
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}
  
.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}
  
.close-btn:hover {
    color: #000;
}
  
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 480px) {
    .hero {
        background-image: url('../assets/images/mobilebg.jpg');
    }
}



