/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Vibrant Gradient Palette from Logo */
:root {
    --primary: #FF6A00;
    /* Vibrant Orange */
    --secondary: #FF3E82;
    /* Hot Pink */
    --accent: #8A2EFF;
    /* Purple/Violet */
    --dark: #1A1A2E;
    /* Deep Navy */
    --light: #F8F9FA;
    /* Soft Light */
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
}

/* Logo Styles */
.logo {
    background-image: url(WhatsApp\ Image\ 2025-07-23\ at\ 17.21.41_5049fadf.jpg);
    height: 70px;
    width: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Header styles */
header {
    padding: 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    width: 100%;
}

.logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.logo-mobile a {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 5px;
    transition: all 0.4s ease;
}

.logo-mobile a:hover {
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
}

.logo-mobile a::before,
.logo-mobile a::after {
    content: '';
    position: absolute;
    height: 3px;
    border-radius: 3px;
    transition: width 0.4s ease, background 0.4s ease;
}

.logo-mobile a::before {
    bottom: -5px;
    left: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.logo-mobile a:hover::before {
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
}

.logo-mobile a::after {
    top: -5px;
    right: 0;
    width: 0;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
    transition: width 0.4s ease 0.1s;
}

.logo-mobile a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.logo-mobile-box {
    width: 100px;
    height: 70px;
    background-image: url(WhatsApp\ Image\ 2025-07-23\ at\ 17.21.41_5049fadf.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.logo-mobile-box:hover {
    transform: rotate(-5deg) scale(1.05);
}

.mobile-menu-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    display: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-nav {
    display: flex;
    list-style: none;
}

.left-nav li {
    margin-right: 25px;
    position: relative;
}

.left-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.left-nav a:hover {
    color: var(--primary);
}

.left-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transition: width 0.3s ease;
}

.left-nav a:hover::after {
    width: 100%;
}

.right-nav {
    display: flex;
    align-items: center;
}

.sign-in {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sign-in:hover {
    color: var(--secondary);
    text-shadow: 0 0 5px rgba(255, 62, 130, 0.3);
}

.cta-button {
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 20px 0px 200px;
    max-width: auto;
    margin: auto;
    gap: 40px;
}

.hero-content {
    flex: 1 1 500px;

}

.hero-content h1 {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

}

.primary-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    min-width: 150px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

/* Right Side (Image) */
.video-background {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Partners section */
.partners {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.partners h2 {
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.partners:hover h2 {
    color: var(--primary);
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.partner-logo {
    font-size: 18px;
    font-weight: bold;
    color: #999;
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.partner-logo.active {
    color: var(--primary);
}

.partner-logo::before {
    content: "☐";
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.partner-logo.active::before {
    content: "☒";
    color: var(--primary);
}

.partner-logo:hover::before {
    transform: rotate(15deg);
}

.container {
    width: 100%;

    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    margin: 40px 0;
}

.header {
    background: #2c3e50;
    color: white;
    padding: 25px 30px;
    text-align: center;
}

h1 {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-top: 8px;
}

.approaches-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 20px;
    gap: 20px;
}

.approach {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 70px;
    height: 70px;
    background: #e8f4fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3498db;
    font-size: 28px;
}

.approach h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.approach p {
    color: #7f8c8d;
    line-height: 1.5;
    font-size: 1rem;
}

.approach:nth-child(2) .icon {
    background: #ffe8e8;
    color: #e74c3c;
}

.approach:nth-child(3) .icon {
    background: #fff8e1;
    color: #f39c12;
}

.approach:nth-child(4) .icon {
    background: #e8f5e9;
    color: #2ecc71;
}

.approach:nth-child(5) .icon {
    background: #f3e5f5;
    color: #9b59b6;
}

.approach:nth-child(6) .icon {
    background: #e0f7fa;
    color: #00bcd4;
}

footer {
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .approaches-container {
        flex-direction: column;
        align-items: center;
    }

    .approach {
        width: 100%;
        max-width: 500px;
    }
}

#nav-links {
    display: flex;
    list-style: none;
}

#nav-links li {
    margin-left: 30px;
}

#nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#nav-links a:hover {
    color: #ffdd40;
}

#hero {
    background: linear-gradient(rgba(38, 117, 252, 0.8), rgba(106, 17, 203, 0.8)), url('https://images.unsplash.com/photo-1533750349088-cd871a92f312?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

#hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#hero-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

#cta-button {
    display: inline-block;
    background: #ffdd40;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#main-section {
    padding: 80px 0;
}

#section-title {
    text-align: center;
    margin-bottom: 60px;
}

#section-title-heading {
    font-size: 2.5rem;
    color: #2575fc;
    margin-bottom: 20px;
}

#section-title-text {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

#process {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#process-header {
    text-align: center;
    margin-bottom: 40px;
}

#process-heading {
    font-size: 2.2rem;
    color: #6a11cb;
    margin-bottom: 15px;
}

#process-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

#process-text {
    flex: 1;
    min-width: 300px;
    font-size: 2rem;
}

#process-text p {
    margin-bottom: 20px;
}

#process-image {
    flex: 1;
    min-width: 300px;

    display: flex;
    justify-content: center;
    align-items: center;

}

#process-img {
    max-width: 100%;
    height: 800px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 10px solid black;
    border-radius: 50px;
}

#features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

#feature1,
#feature2,
#feature3 {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

#feature1:hover,
#feature2:hover,
#feature3:hover {
    transform: translateY(-10px);
}

#feature1-icon,
#feature2-icon,
#feature3-icon {
    font-size: 3rem;
    color: #2575fc;
    margin-bottom: 20px;
}

#feature1-heading,
#feature2-heading,
#feature3-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

#feature1-text,
#feature2-text,
#feature3-text {
    color: #666;
}

@media (max-width: 768px) {
    #hero-title {
        font-size: 2.5rem;
    }

    #hero-text {
        font-size: 1.2rem;
    }

    #nav-links {
        display: none;
    }

    #process {
        padding: 30px 20px;
    }

    #process-img {
        height: auto;
        max-height: 500px;
    }

    #process-text {
        font-size: 1rem;
    }

    #section-title-text {
        font-size: 1rem;
        color: #666;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px 30px;
    background-color: var(--dark);
    color: white;
    position: relative;
}



footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.sentiment {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.sentiment:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sentiment-value {
    color: var(--accent);
    transition: all 0.3s ease;
}

.sentiment:hover .sentiment-value {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-cta {
    margin-bottom: 50px;
}

.footer-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

footer:hover .footer-cta h2 {
    color: var(--secondary);
}

.footer-button {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.footer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

.footer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-button:hover::before {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
    padding: 0 15px;
    text-align: left;
}

.footer-column h3 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-column:hover h3 {
    color: var(--primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    padding-left: 15px;
}

.footer-column a::before {
    content: '»';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-column a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-5px) scale(1.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

footer:hover .copyright {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 20px;
    }

    .left-nav {
        flex-direction: column;
        width: 100%;
    }

    .left-nav li {
        margin: 10px 0;
    }

    .left-nav a:hover {
        background: rgba(255, 62, 130, 0.1);
        padding-left: 15px;
    }

    .left-nav a::after {
        display: none;
    }

    .right-nav {
        margin-top: 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .partner-logos {
        gap: 20px;
    }

    .partner-logo {
        font-size: 16px;
    }

    .mobile-menu-button {
        font-size: 1.8rem;
        padding: 0.5rem;
    }

    .footer-cta h2 {
        font-size: 24px;
    }