* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #1e293b;
    color: white;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.4s;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background: #1e293b;
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    min-height: 90vh;
    position: relative;
}

.hero-left {
    max-width: 600px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.hero-left h2 {
    font-size: 26px;
    color: #f58220;
    margin-bottom: 30px;
    font-weight: 500;
}

.support-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-left ul {
    list-style: none;
    margin-bottom: 35px;
}

.hero-left ul li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #4a4a4a;
}

.hero-left ul li::before {
    content: "✔";
    color: #f58220;
    margin-right: 10px;
}

.cta-btn {
    background: #f58220;
    color: #000;
    padding: 16px 35px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #ff9d3f;
}

/* RIGHT IMAGE */
.hero-right img {
    max-width: 800px;
    width: 100%;
}

/* TRUST BAR */
.trust-bar {
    background: #e9edf1;
    padding: 20px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-bar img {
    height: 40px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        margin-top: 40px;
    }

    .hero-left h1 {
        font-size: 36px;
    }
}

.support-section {
    background: #f3f3f3;
    padding: 80px 8%;
    text-align: center;
}

.support-section h2 {
    font-size: 28px;
    font-weight: 500;
    color: #5a6773;
    margin-bottom: 60px;
}

/* Features Row */
.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Individual Feature */
.feature-item {
    width: 180px;
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: #6c757d;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* Arrow Divider */
.arrow-divider {
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 50px solid #f58220;
    filter: blur(1px);
}

/* Responsive */
@media (max-width: 992px) {
    .features {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .arrow-divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

.services-section {
    background: #f4f4f4;
    padding: 80px 8%;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card i {
    font-size: 40px;
    color: #f58220;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f58220;
    color: #000;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ff9c3d;
}

.btn-outline {
    border: 2px solid #f58220;
    color: #f58220;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #f58220;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 32px;
    }
}

.testimonial-section {
    background: #efefef;
    padding: 100px 8%;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 28px;
    font-weight: 500;
    color: #5c6770;
    margin-bottom: 70px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.testimonial {
    max-width: 350px;
    margin: auto;
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial h4 {
    font-size: 18px;
    font-weight: 700;
    color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-section {
        padding: 70px 6%;
    }
}

.contact-section {
    background: #efefef;
    padding: 100px 8%;
    text-align: center;
}

.contact-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 22px;
    color: #5c6770;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f58220;
    background: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    background: #f58220;
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #ff9c3d;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 34px;
    }

    .contact-section p {
        font-size: 18px;
    }
}

.footer {
    background: #2f2f2f;
    padding: 40px 10%;
    text-align: center;
}

.footer p {
    color: #9a9a9a;
    font-size: 16px;
}

/* Optional subtle top border */
.footer {
    border-top: 1px solid #3a3a3a;
}

.about-hero {
    background: #f4f4f4;
    padding: 100px 8%;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #5c6770;
    max-width: 800px;
    margin: auto;
}

.about-content {
    padding: 80px 8%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-vision {
    background: #fafafa;
    padding: 80px 8%;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.mv-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mv-card h3 {
    margin-bottom: 15px;
    color: #f58220;
}

.mv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 36px;
    }
}
