:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --hover-color: #2980b9;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ...existing code... */

.header {
    background: rgba(26, 32, 44, 0.95);
    padding: 1rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.header-brand:hover {
    transform: translateY(-2px);
}

.header-logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.3));
}

.header-brand:hover .header-logo {
    transform: scale(1.1) rotate(5deg);
}

/* Accessibility: screen-reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header h1 {
    color: var(--white);
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.header nav {
    margin-left: auto;
}

.header nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.header nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    padding: 0.8rem 0;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.header nav a:hover {
    color: #00d2ff;
    opacity: 1;
    transform: translateY(-2px);
}

.header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.header nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header.scrolled {
    padding: 0.8rem 4rem;
    background: rgba(26, 32, 44, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .header-logo {
        height: 38px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 1000;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .menu-toggle:hover {
        transform: scale(1.1);
    }

    .hamburger, .hamburger::before, .hamburger::after {
        background: linear-gradient(90deg, #fff, #3498db);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        background: rgba(26, 32, 44, 0.98);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }

    .nav-menu ul li a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .header-brand {
        width: 100%;
        justify-content: space-between;
    }
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ...existing code... */

/* Language selector styles */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-selector .current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-selector .current-lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-icon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 100;
    overflow: hidden;
}

.language-selector:hover .language-dropdown,
.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    width: 100%;
    margin: 0;
}

.language-dropdown a {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    width: 100%;
}

.language-dropdown a:hover, 
.language-dropdown a.active {
    background: rgba(52, 152, 219, 0.2);
    color: #fff !important;
}

.language-dropdown a::after {
    display: none !important;
}

@media (max-width: 768px) {
    .language-dropdown {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .language-selector .current-lang {
        display: none;
    }
    
    .language-dropdown a {
        justify-content: center;
    }
}

/* ...existing code... */

.content {
    width: 100%;
    flex: 1;
}

.showcases, .services {
    padding: 4rem 2rem;
}

.showcases {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #000046, #1CB5E0);
    position: relative;
    overflow: hidden;
}

.showcases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.showcases h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    padding: 1rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.showcase-item:hover::before {
    transform: scaleX(1);
}

.showcase-item .service-icon {
    font-size: 3em;
    margin-bottom: 1.5rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.showcase-item:hover .service-icon {
    transform: scale(1.1);
}

.showcase-item h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}


.showcase-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}

.showcase-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9em;
}

.service-features i {
    color: #27ae60;
    font-size: 0.8em;
}

.projectworkflow {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    position: relative;
    overflow: hidden;
}

.projectworkflow h2 {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.showcase-grid, .service-grid, .workflow-grid, .projectworkflow-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.workflow-grid {
    grid-template-columns: 1fr 1fr;
}

.projectworkflow-grid {
    grid-template-columns: 1fr;
}

.showcase-item, .service-item, .workflow-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-item:hover, .service-item:hover, .workflow-item:hover {
    transform: translateY(-5px);
}

.showcase-item img, .service-item img, .workflow-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item {
    padding: 2rem;
}

.service-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.workflow-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00d2ff, #3a7bd5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workflow-step:hover::before {
    opacity: 1;
}

.workflow-step h4 {
    font-size: 1.2em;
    color: #0056b3;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.workflow-step h4::before {
    content: attr(data-step);
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}

.workflow-step p {
    margin: 5px 0;
    line-height: 1.6;
    color: #666;
}

.workflow-step p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.workflowStep1 {
    background-color: #a3d4e5;
}

.workflowStep2 {
    background-color: #f9cb9c;
}

.workflowStep3 {
    background-color: #b6d7a8;
}

.workflowStep4 {
    background-color: #f6b26b;
}

.workflowStep5 {
    background-color: #ffd966;
}

workflowStep6 {
    background-color: #ef476f;
}

.workflowStep7 {
    background-color: #118ab2;
}

.workflowStep8 {
    background-color: #06d6a0;
}

.image-carousel {
    position: relative;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    margin: 0;
    background: linear-gradient(135deg, #000046, #1CB5E0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    background: linear-gradient(135deg, rgba(0, 0, 40, 0.7), rgba(0, 0, 40, 0.3));
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    min-height: 400px;
    max-height: 90vh;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hero-features span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-features i {
    color: #3498db;
    font-size: 1em;
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1em;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transform: scale(1.1);
    animation: zoomIn 20s ease infinite alternate;
}

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

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 90%;
        padding: 1.5rem;
        margin: 20% auto;
        /* top: 55%;  */
    }

    .hero-content h1 {
        font-size: 1.8em;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        width: 100%;
        word-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 0.9em;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-features span {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        justify-content: center;
        padding: 0.8rem;
        font-size: 0.9em;
        white-space: nowrap;
    }

    .hero-badge {
        font-size: 0.75em;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9em;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 95%;
        padding: 1.2rem;
        top: 52%;
    }

    .hero-content h1 {
        font-size: 1.5em;
        margin-bottom: 0.6rem;
    }
    
    .hero-content p {
        font-size: 0.85em;
        padding: 0;
        margin-bottom: 1rem;
    }

    .hero-features {
        gap: 0.6rem;
        padding: 0;
    }

    .hero-features span {
        padding: 0.6rem;
        font-size: 0.8em;
        max-width: 200px;
    }

    .hero-btn {
        padding: 0.7rem 1.5rem;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 100%;
        padding: 1.2rem;
        margin-top: 4rem;
        width: 92%;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5em;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.85em;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-features span {
        padding: 0.6rem 0.8rem;
        font-size: 0.8em;
    }

    .hero-btn {
        width: 100%;
        padding: 0.8rem;
    }

    .image-carousel {
        height: 90vh;
    }

    .hero-features span {
        padding: 0.6rem 0.8rem;
        font-size: 0.8em;
        max-width: 240px;
    }

    .hero-btn {
        width: auto;
        min-width: 200px;
        padding: 0.8rem;
    }

    .image-carousel {
        height: 100vh;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-height: 600px) {
    .hero-content {
        padding: 1rem;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8em;
        margin-bottom: 0.5rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .hero-features span {
        padding: 0.3rem 0.8rem;
    }
}

@media screen and (max-height: 400px) {
    .image-carousel {
        height: auto;
        min-height: 400px;
    }

    .hero-content {
        margin: 3rem auto;
        min-height: 250px;
    }

    .hero-badge {
        margin-bottom: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.5em;
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 768px) and (max-height: 600px) {
    .hero-content {
        width: 95%;
        padding: 1rem;
        margin: 2rem auto;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-features span {
        font-size: 0.8em;
        padding: 0.3rem 0.6rem;
    }
}

.footer {
    background: linear-gradient(135deg, #1a1a3c, #24243e);
    color: var(--white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #00d2ff;
    margin-bottom: 1.5rem;
    font-size: 1.2em;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95em;
    display: block;
    padding: 0.3rem 0;
}

.footer-column a:hover {
    color: #00d2ff;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
}

.social-links a:hover {
    background: #00d2ff;
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column h3 {
        margin-bottom: 1rem;
    }

    .footer-column ul li {
        margin-bottom: 0.8rem;
    }

    .footer-column a {
        padding: 0.5rem 0;
        display: inline-block;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.1em;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

.partners-section, .testimonials-section {
    background: var(--light-bg);
    padding: 4rem 2rem;
    text-align: center;
}

/* ...existing code... */

.partners-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(41, 128, 185, 0.1) 0%, transparent 50%);
}

.partners-section h2 {
    font-size: 2.5em;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.partners-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    border-radius: 2px;
}

.partners-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Fixed number of columns */
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 16/9;
    background: white;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: scale-down;
    transition: all 0.3s ease;
    filter: grayscale(1) opacity(0.7);
    display: block;
}

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

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
}

.partner-name {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.75em;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.partner-logo:hover .partner-name {
    bottom: 0;
    opacity: 1;
}

@media (max-width: 1200px) {
    .partners-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .partners-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        max-width: 120px;
        padding: 0.5rem;
        aspect-ratio: 3/2;
    }
}

@media (max-width: 480px) {
    .partners-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .partner-logo {
        max-width: 100px;
        aspect-ratio: 3/2;
    }

    .partner-name {
        font-size: 0.7em;
        padding: 0.3rem;
    }
}

/* ...existing code... */

.testimonials-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    color: white;
}

.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    display: inline-block;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.testimonial p {
    color: #2c3e50;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.1em;
}

.testimonial cite {
    display: block;
    color: #34495e;
    font-size: 1em;
    margin-top: 1rem;
    font-weight: 600;
    text-align: right;
    letter-spacing: 0.5px;
}

.testimonial::before {
    content: '\201C';
    font-size: 4em;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(52, 152, 219, 0.2);
    font-family: serif;
}

@media (max-width: 768px) {
    .partners-section, .testimonials-section {
        padding: 4rem 1rem;
    }

    .partners-carousel {
        gap: 2rem;
    }

    .partner-logo {
        padding: 1.5rem;
    }

    .partner-logo img {
        height: 50px;
    }

    .testimonial {
        padding: 2rem;
        width: 100%;
        margin: 0 auto;
    }
}

.partners-section h2, .testimonials-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.partners-carousel, .testimonials-carousel {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.partner-logo img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0);
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.testimonial p {
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-size: 0.9em;
    color: #555;
}

/* Start Projects Show cases*/
.projects-section {
    background: linear-gradient(135deg, #1a1a3c, #24243e);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(41, 128, 185, 0.1) 0%, transparent 50%);
}

.section-header {
    font-size: 2.5em;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    border-radius: 2px;
}

.project-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .project-row {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 600px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.project-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.card-front {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    color: white;
    justify-content: flex-start;
}

.card-front h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8em;
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.card-front h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    border-radius: 3px;
}

.project-brief {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.milestones {
    margin-top: auto;
}

.milestones span {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0.7rem 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.milestones span i {
    color: #3498db;
}

.milestones span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.card-back {
    background: #1a1a3c;
    transform: rotateY(180deg);
    padding: 0;
}

.card-back .device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a4c, #1a1a3c);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 60px;
    height: 15px;
    background: #000;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.device-frame img {
    width: 90%;
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .project-card {
        height: 500px;
    }
    
    .card-front {
        padding: 1.5rem;
    }
    
    .card-front h2 {
        font-size: 1.5em;
    }
    
    .project-brief {
        font-size: 1em;
    }
    
    .milestones span {
        padding: 0.8rem 1rem;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 80%;
    max-width: 600px;
}

.popup-content img {
    width: 100%;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

#popup-milestones {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#popup-milestones span {
    background-color: #ffcc00;
    color: #292959;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    font-weight: bold;
}
/* End of Projects Show cases*/

/* contact us */
.contact_us_8 {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.contact_us_8 * {
    font-family: Nunito, sans-serif;
}

.contact_us_8 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
}

.contact_us_8 .responsive-cell-block {
    min-height: 75px;
}

.contact_us_8 .container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
}

.contact_us_8 input:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
}

.contact_us_8 .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
}

.contact_us_8 .responsive-container-block.big-container {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background-color: #03a9f4;
    position: absolute;
    height: 300px;
}

.contact_us_8 .responsive-container-block.container {
    position: static;
    min-height: 75px;
    flex-direction: column;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.contact_us_8 .container-block.form-wrapper {
    background-color: var(--white);
    max-width: 610px;
    text-align: center;
    padding-top: 50px;
    padding-right: 40px;
    padding-bottom: 50px;
    padding-left: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    position: static;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    margin: 50px 0 50px 0;
    width: 100%;
    box-sizing: border-box;
}

.contact_us_8 .text-blk.contactus-head {
    font-size: 36px;
    line-height: 45px;
    font-weight: 900;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.contact_us_8 .text-blk.contactus-subhead {
    color: black;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    max-width: 300px;
}

.contact_us_8 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 26px;
    margin-left: 0px;
    min-height: 50px;
}

.contact_us_8 .input, .textinput {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact_us_8 .submit-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact_us_8 .submit-btn:hover {
    background: var(--hover-color);
}

.contact_us_8 .form-box {
    position: relative;
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    max-width: 830px;
}

.contact_us_8 ::placeholder {
    color: #dadada;
}

.contact_us_8 .right-side-text {
    position: absolute;
    top: 0px;
    height: 100%;
    right: 0;
    background-color: rgba(151, 220, 250, 0.44);
    max-width: 363px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_us_8 .social-media-links {
    width: 230px;
    display: flex;
    justify-content: space-evenly;
}

.contact_us_8 .checkboc-container {
    display: flex;
    align-items: flex-start;
}

.contact_us_8 .checkbox-text {
    color: #9c9c9c;
    margin-top: 16px;
    margin-right: 0px;
    margin-bottom: 16px;
    margin-left: 10px;
    margin: 0 0 0 10px;
    text-align: left;
}

.contact_us_8 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-8.wk-ipadp-12.checkbox-container {
    min-height: 30px;
    margin: 0 0 30px 0;
}

.responsive-cell-block textarea {
    height: 200px;
}

.emailMsg {
    margin: 50px 0;
    text-align: center;
    color: #06d6a0;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: none;
}

.emailMsg.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 50.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .contact_us_8 .right-side-text {
        right: 0px;
        top: 0px;
        height: 250px;
        width: 100%;
        max-width: 100%;
    }

    .contact_us_8 .container-block.form-wrapper {
        margin-top: 200px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
        padding-top: 70px;
        padding-right: 40px;
        padding-bottom: 50px;
        padding-left: 40px;
    }

    .contact_us_8 .form-box {
        margin-top: 60px;
        margin-right: auto;
        margin-bottom: 60px;
        margin-left: auto;
    }

    .contact_us_8 .text-blk.contactus-subhead {
        max-width: 400px;
    }

    .contact_us_8 .right-side-text {
        width: 85%;
        left: 0px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }

    .contact_us_8 .form-box {
        display: flex;
        justify-content: center;
    }

    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-desk-8{
        width: 100%;
    }
}

@media (max-width: 920px) {
    .partners-carousel {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 1rem;
    }

    .header nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .header nav ul li {
        margin: 5px;
        width: 100%;
        font-size: small;
    }

    .testimonials-carousel {
        flex-direction: column;
    }

    .contact_us_8 .submit-btn {
        width: 100%;
    }

    .contact_us_8 .input {
        width: 100%;
    }

    .contact_us_8 .textinput {
        width: 100%;
    }

    .contact_us_8 .container-block.form-wrapper {
        margin-top: 80px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_8 .container-block.form-wrapper {
        margin-top: 200px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .contact_us_8 .text-blk.contactus-head {
        font-size: 32px;
    }

    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .showcases {
        padding: 4rem 1rem;
    }

    .showcase-grid,
    .service-grid,
    .project-row,
    .partners-carousel,
    .testimonials-carousel {
        padding: 0 1rem;
    }

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

    .showcase-item {
        padding: 2rem 1.5rem;
    }

    .showcases h2 {
        font-size: 2em;
    }
}

@media (max-width: 500px) {
    .contact_us_8 .container-block.form-wrapper {
        padding-top: 50px;
        padding-right: 15px;
        padding-bottom: 50px;
        padding-left: 15px;
    }

    .contact_us_8 .container-block.form-wrapper {
        margin-top: 60px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_8 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 15px;
        margin-left: 0px;
    }

    .contact_us_8 .responsive-container-block {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 35px;
        margin-left: 0px;
    }

    .contact_us_8 .container-block.form-wrapper {
        margin-top: 220px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
    }

    .contact_us_8 .right-side-text {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        left: 0px;
        max-width: 310px;
    }

    .contact_us_8 .right-side-text {
        max-width: 280px;
    }

    .contact_us_8 .text-blk.contactus-head {
        font-size: 26px;
        line-height: 34px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
    }

    .contact_us_8 .text-blk.contactus-subhead {
        max-width: 250px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .contact_us_8 .form-box {
        padding-top: 0px;
        padding-right: 20px;
        padding-bottom: 0px;
        padding-left: 20px;
    }

    .contact_us_8 .checkboc-container {
        align-items: flex-start;
    }

    .contact_us_8 .input {
        height: 45px;
    }

    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }
}

/* ...existing code... */

.services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.services h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.service-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}

.service-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem;
    }

    .services h2 {
        font-size: 2em;
    }
}

/* ...existing code... */

section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.projectworkflow-item {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ...existing code... */

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    /* width: 40px;
    height: 40px; */
    object-fit: contain;
}

@media (max-width: 768px) {
    .header-brand {
        width: 100%;
        justify-content: space-between;
    }
    
    .header-logo {
        width: 32px;
        height: 32px;
    }
}

/* ...existing code... */

/* ...existing code... */

.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    background: var(--hover-color);
}

.submit-btn.loading {
    pointer-events: none;
    background: var(--hover-color);
}

.submit-btn.loading .btn-text {
    visibility: hidden;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s linear infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* ...existing code... */

/* ...existing code... */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: white;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.98);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .header-brand {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem;
    }
}

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

/* ...existing code... */

.sticky-book-call {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.book-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.book-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

.book-call-btn i {
    font-size: 1.2rem;
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 2rem;
}

.calendly-inline-widget {
    min-height: 400px;
}

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

@media (max-width: 768px) {
    .sticky-book-call {
        right: 20px;
        bottom: 20px;
    }

    .book-call-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 1.5rem;
    }
}

/* ...existing code... */

.booking-iframe {
    width: 100%;
    height: 600px;
    border: none;
    margin: 20px 0;
}

.modal-content {
    width: 95%;
    max-width: 800px;
    height: 90vh;
    overflow-y: auto;
}

/* ...existing code... */

/* Scroll Animations */
.animate-section {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-section.alternate {
    transform: translateX(100px);
}

.animate-section.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-section.no-delay {
    transition-delay: 0s;
}

.animate-section.delay-200 {
    transition-delay: 0.2s;
}

.animate-section.delay-400 {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .animate-section {
        transition: none;
        opacity: 1;
        transform: none;
    }
}


