:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --bg-light: #ffffff;
    --bg-lighter: #f9f8ff;
    --text-dark: #111827;
    --text-dim: #6b7280;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
    line-height: 1.6; 
    background: var(--bg-light); 
    color: var(--text-dark);
}

h1, h2, h3, h4 { 
    font-family: 'Sora', sans-serif; 
    font-weight: 600;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

/* Navigation */
nav {
    height: 80px; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000;
    background: var(--bg-light); 
    backdrop-filter: blur(12px);
    display: flex; 
    align-items: center; 
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-sm);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo { 
    height: 45px; 
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links { 
    display: flex; 
    gap: 2.5rem; 
    list-style: none; 
}

.nav-links a { 
    color: var(--text-dark); 
    font-size: 0.95rem; 
    font-weight: 600; 
    position: relative;
    text-decoration: none;
}

.nav-links a:hover { 
    color: var(--primary); 
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta { 
    background: var(--primary); 
    color: #fff; 
    padding: 0.6rem 1.4rem; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 0.85rem; 
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-content.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    .logo { 
    height: 35px; 
}
    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* Hero */
.hero { 
    min-height: 100vh; 
    background: linear-gradient(135deg, #f9f8ff 0%, #ffffff 100%); 
    color: var(--text-dark); 
    display: flex; 
    align-items: center; 
    padding-top: 80px; 
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    align-items: center; 
    gap: 3rem; 
}

.hero-text h1 { 
    font-size: 4.5rem; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    font-weight: 900; 
}

.text-gradient { 
    background: linear-gradient(90deg, var(--primary), var(--primary-light)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero-text p { 
    font-size: 1.25rem; 
    color: var(--text-dim); 
    margin-bottom: 2.5rem; 
    max-width: 500px; 
}

.hero-btns { 
    display: flex; 
    gap: 1rem; 
}

.btn-primary { 
    background: var(--primary); 
    color: #fff; 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-img img {
    width: 90%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite; 
}

@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-30px); } 
}

/* Hero Mobile */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
       
    }
    
    .hero-img img {
        width: 70%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
         
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 180px;
        text-align: center;
    }
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.2;
}

.section-title span {
    display: inline-block;
}

.section-title span:first-child {
    color: var(--text-dark);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Services Mobile */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    .service-icon {
    width: 60px;
    height: 60px;

}
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.side-img {
    width: 80%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--bg-lighter);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* Why Us Mobile */
@media (max-width: 992px) {
    .why-us {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .side-img {
        display: none;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .feature-item {
        padding: 1rem 2rem;
    }
}

/* Process */
.process {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.process-card:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-10px);
}

.step-tag {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.process-card:hover .step-tag {
    color: rgba(255,255,255,0.8);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Process Mobile */
@media (max-width: 992px) {
    .process {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-card {
        padding: 1rem 2rem;
    }
}

/* Contact */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-lighter);
    padding: 3rem;
    border-radius: 30px;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.c-detail {
    display: block;
    margin-top: 1.5rem;
}

.c-detail:first-child {
    margin-top: 0;
}

.c-detail strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.c-detail i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.c-detail a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.c-detail a:hover {
    text-decoration: underline;
}

.c-detail span {
    line-height: 1.5;
    display: block;
}

/* Contact Mobile */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .contact-image img {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .contact-wrapper {
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background: #050505;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 50px;
}

.footer-logo-container {
    background: white;
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.footer-logo {
    height: 40px;
    width: 160px;
    display: block;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--primary-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.partner-container {
    width: 100%;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255,255,255,0.1);
}

.partner-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.partner-container a:hover {
    opacity: 0.8;
}

.partner-container img {
    max-width: 80%;
    max-height: 60px;
    opacity: 0.8;
    transition: var(--transition);
}

.partner-container a:hover img {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1f2937;
    padding-top: 30px;
    color: #6b7280;
    font-size: 0.85rem;
}

/* Footer Mobile */
@media (max-width: 992px) {
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-logo {
    height: 30px;
    width: 120px;
    
}
    .partner-container {
   
    height: 60px;
    
}
    .footer-col {
        text-align: left;
    }
    
    .footer-logo-container {
        display: inline-block;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-col ul {
        text-align: left;
    }
    .partner-container  {
        max-width: 50%;
    }
}



/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}