/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.btn {
    font-family: 'Poppins', sans-serif;
}

.display-1 {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.display-4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.lead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.section-header h6 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar {
        background-color: #fff;
        padding: 0.5rem 0;
        height: 60px;
    }
    
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        margin: 0 -1rem;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-brand {
        padding: 0;
    }

    .logo-img {
        height: 35px;  /* Slightly smaller logo on mobile */
    }
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-toggler {
    border-color: #333333;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45, 45, 45, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    color: #333333 !important;
}

@media (max-width: 991px) {
    .nav-link {
        padding: 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #333333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #666 !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero, .about-hero, .service-hero {
    background-color: #fff;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero.home-hero {
    min-height: 100vh;
}

.about-hero, .service-hero {
    padding-top: 120px;
    min-height: 60vh;
}

@media (max-width: 991px) {
    .hero, .about-hero, .service-hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero.home-hero {
        min-height: calc(100vh - 60px);
    }
}

@media (max-width: 576px) {
    .hero, .about-hero, .service-hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

/* iPad Pro and tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
        min-height: 80vh; /* Reduce min-height for tablets */
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 60px;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-top: 0;
        text-align: center;
    }

    .hero h1 br {
        display: none; /* Remove line break on small screens */
    }
    
    .creative-text {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .hero .lead {
        text-align: center;
    }

    .gradient-text {
        display: inline;  /* Prevent text wrapping issues */
    }
}

.creative-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    letter-spacing: -2px;
    line-height: 1.1;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero h1 br {
    display: block;
    content: "";
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.gradient-text {
    background: linear-gradient(45deg, 
        #FF6B6B,  /* Pastel Red */
        #7DC591,  /* Pastel Green */
        #6B9AFF,  /* Pastel Blue */
        #FF6B6B   /* Back to start for smooth transition */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: gradientMove 8s ease infinite;
    background-size: 300% 300%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add a subtle hover effect */
.gradient-text:hover {
    /* Remove animation pause */
}

.code-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 2rem auto;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
    height: 500px;
    position: relative;
}

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

.window-header {
    background: #333333;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.window-header .dot:hover {
    transform: scale(1.2);
}

.window-header .red { background-color: #ff5f56; }
.window-header .yellow { background-color: #ffbd2e; }
.window-header .green { background-color: #27c93f; }

.window-body {
    padding: 0;
    height: calc(100% - 44px);
    overflow: hidden;
    position: relative;
}

.code-scroll {
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    padding: 20px;
    animation: scrollCode 20s linear infinite;
    position: absolute;
    top: 0;
    width: 100%;
}

.code-scroll:hover {
    /* Remove animation pause */
}

@keyframes scrollCode {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.window-body pre {
    margin: 0;
    white-space: pre-wrap;
}

.window-body code {
    color: #fff;
}

/* Syntax highlighting improvements */
.code-comment { 
    color: #6a9955; 
    font-style: italic;
}
.code-keyword { color: #569cd6; }
.code-string { color: #ce9178; }
.code-function { color: #dcdcaa; }
.code-class { color: #4ec9b0; }

@media (max-width: 768px) {
    .code-window {
        max-width: 100%;
        height: 400px;
        margin: 1rem auto;
    }
    
    .code-scroll {
        font-size: 12px;
    }
}

.code-comment { color: #6a9955; }
.code-keyword { color: #569cd6; }
.code-string { color: #ce9178; }
.code-function { color: #dcdcaa; }
.code-class { color: #4ec9b0; }

@media (max-width: 768px) {
    .code-window {
        max-width: 300px;
        font-size: 12px;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 142, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.service-icon i {
    font-size: 28px;
    color: #FF6B6B;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6c757d;
    margin-bottom: 12px;
    font-size: 15px;
}

.service-features li i {
    color: #7DC591;
    font-size: 14px;
}

.service-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #fff;
    padding: 6px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

/* Additional Features & Benefits Section */
.service-features-grid {
    padding: 3rem 0;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B9AFF, #FF6B6B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

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

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: #555;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list li i {
    color: #7DC591;
    margin-right: 0.75rem;
    font-size: 14px;
}

@media (max-width: 991px) {
    .benefit-card {
        margin-bottom: 1rem;
    }
}

/* About Section */
.about-stats {
    position: relative;
}

.stat-item {
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Contact Section */
.contact-info {
    position: relative;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item.red i {
    color: #FF6B6B;  /* Pastel Red */
}

.contact-item.green i {
    color: #7DC591;  /* Pastel Green */
}

.contact-item.blue i {
    color: #6B9AFF;  /* Pastel Blue */
}

.contact-item a,
.contact-item span {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 1rem;
}

.contact-item a:hover {
    color: #666;
}

.form-control {
    font-family: 'Inter', sans-serif;
    border: 1px solid #ddd;
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.form-control:focus {
    box-shadow: none;
    border-color: #333333;
}

.form-control:invalid {
    border-color: #dc3545;
}

.form-control:valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.form-status {
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa !important;
    border-top: 1px solid #e9ecef;
}

footer .footer-logo img {
    filter: brightness(0.8);
}

footer h5, footer h6 {
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

footer .list-unstyled a {
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #333 !important;
}

footer .social-links a {
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-2px);
    color: #333 !important;
}

footer .contact-info i {
    color: #666;
    width: 16px;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

.breadcrumb-item a {
    color: #666;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #333;
}

.breadcrumb-item.active {
    color: #2d2d2d;
    font-weight: 500;
}

/* Standardized Hero Sections */
.hero, .about-hero, .service-hero {
    background-color: #fff;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero.home-hero {
    min-height: 100vh;
}

.about-hero, .service-hero {
    padding-top: 120px;
    min-height: 60vh;
}

@media (max-width: 991px) {
    .hero, .about-hero, .service-hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero.home-hero {
        min-height: calc(100vh - 60px);
    }
}

@media (max-width: 576px) {
    .hero, .about-hero, .service-hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

/* Service Page Styles */
.service-hero {
    margin: 80px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    color: #FF6B6B;
    font-weight: 600;
}

.service-badge i {
    margin-right: 8px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    color: #7DC591;
}

.service-hero-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #FF6B6B;
}

.experience-badge .text {
    font-size: 14px;
    color: #6c757d;
}

/* Stats Section */
.stats-section {
    background-color: #fff;
}

.stats-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stat-box {
    padding: 32px;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.stat-label {
    color: #6c757d;
    font-size: 14px;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #6B9AFF, #FF6B6B);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(107, 154, 255, 0.1);
}

.step-number span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6B9AFF, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content {
    width: 45%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B9AFF, #FF6B6B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.step-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.step-info p {
    color: #555;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #7DC591;
    font-size: 1rem;
}

.feature-item span {
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .step-number {
        left: 0;
        transform: none;
        width: 50px;
        height: 50px;
    }

    .step-number span {
        font-size: 1.25rem;
    }

    .step-content {
        width: 100%;
        margin-top: 1rem;
    }

    .step-content::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 25px;
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, #6B9AFF, #FF6B6B);
    }
}

@media (max-width: 576px) {
    .process-step {
        margin-bottom: 3rem;
        padding-left: 50px;
    }

    .step-content {
        padding: 1.25rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        gap: 0.5rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .step-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Pricing Section */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #FF6B6B;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FF6B6B;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    margin: 24px 0;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
}

.pricing-features {
    margin: 32px 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: #7DC591;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero {
        padding: 40px 0;
    }

    .stats-container {
        margin: 0 -15px;
        border-radius: 0;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }

    .process-step {
        margin-bottom: 24px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Theme Colors */
:root {
    --primary: #FF6B6B;
    --success: #7DC591;
    --info: #6B9AFF;
    --dark: #2d2d2d;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

.text-primary {
    color: var(--primary) !important;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 48px;
}

.lead {
    font-size: 18px;
    line-height: 1.6;
}

/* How We Work Section */
.how-we-work-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #6B9AFF, #FF6B6B);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(107, 154, 255, 0.1);
}

.step-number span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6B9AFF, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content {
    width: 45%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B9AFF, #FF6B6B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.step-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.step-info p {
    color: #555;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #7DC591;
    font-size: 1rem;
}

.feature-item span {
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .step-number {
        left: 0;
        transform: none;
        width: 50px;
        height: 50px;
    }

    .step-number span {
        font-size: 1.25rem;
    }

    .step-content {
        width: 100%;
        margin-top: 1rem;
    }

    .step-content::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 25px;
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, #6B9AFF, #FF6B6B);
    }
}

@media (max-width: 576px) {
    .process-step {
        margin-bottom: 3rem;
        padding-left: 50px;
    }

    .step-content {
        padding: 1.25rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        gap: 0.5rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .step-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Tech Stack Section */
.tech-stack {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.tech-category {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    text-align: center;
    position: relative;
}

.category-header .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 142, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.tech-category:hover .service-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.category-header .service-icon i {
    font-size: 28px;
    color: #FF6B6B;
    transition: all 0.3s ease;
}

.tech-category:hover .service-icon i {
    color: #fff;
}

.tech-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 107, 107, 0.05);
}

.tech-item i {
    font-size: 24px;
    width: 24px;
    color: #FF6B6B;
}

.tech-item span {
    font-size: 14px;
    color: #333;
}

@media (max-width: 991px) {
    .tech-category {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .tech-list {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        padding: 8px;
    }
    
    .tech-item i {
        font-size: 20px;
    }
    
    .tech-item span {
        font-size: 13px;
    }
}

/* Navigation Dropdown Styles */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: none;
}

.dropdown-item {
    color: #333333;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #333333;
    transform: translateX(5px);
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

@media (max-width: 991px) {
    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        margin-left: 1rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
}