/* ===================== GENERAL RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fafc;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-square {
    width: 50px;
    height: 50px;
    object-fit: contain;   /* keeps aspect ratio inside box */
    border-radius: 6px;

}
.logo-square-b{
     width: 50px;
    height: 50px;
    object-fit: contain;
    background: rgb(254, 254, 254);
    border-radius: 6px;

}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
}
.brand-text-b {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}


/* ===================== NAV MENU ===================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}



.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

/* ===================== RIGHT SIDE ===================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.support-icon {
    font-size: 1.3rem;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

/* ===================== HAMBURGER MENU ===================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================== HERO SECTION ===================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 4rem 4rem 4rem;
    gap: 3rem;
}

.hero-content {
    max-width: 600px;
    animation: fadeInLeft 1s ease-in-out;
}

.badge {
    background: #e5edff;
    color: #2563eb;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
}

.hero-title {
    font-size: 3rem;
    margin: 1rem 0;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
}

.hero-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu.active {
    right: 0;
}

/* Header inside panel */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
}

/* Menu items */
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #2563eb;
}

/* Support info in panel */
.mobile-support {
    margin-top: 2rem;
    font-size: 1rem;
    color: #475569;
}


/* ===================== SLIDESHOW ===================== */
.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.slide.active {
    opacity: 1;
}

/* ===================== FOOTER ===================== */
footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    background: #fff;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
}

.badge-text {
    color: #64748b;
    font-weight: 500;
}

.badge-highlight {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.clutch-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clutch-text {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.business-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.count {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.highlight {
    color: #2563eb;
    font-weight: 600;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #0f172a;
    color: white;
}

.about-content {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: #60a5fa;
}

.about-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #3b82f6;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-name {
    font-weight: 600;
    color: white;
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background: white;
}

.clients-carousel {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: #f8fafc;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.industry-card.active {
    border: 3px solid #2563eb;
}

.industry-image {
    height: 250px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-content {
    padding: 2rem;
    position: relative;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.industry-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #2563eb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    text-align: center;
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}
.stat-number-b {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.projects-section {
    text-align: center;
}

.projects-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: #f8fafc;
}

.news-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.news-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 2rem;
    position: relative;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.news-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #2563eb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #2563eb;
    color: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.terms-link {
    color: #60a5fa;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: white;
    color: #2563eb;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.9;
}

.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.hiring-badge,
.new-badge {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.visit-us-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.visit-us-btn:hover {
    background: #1d4ed8;
}

.newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: white;
}

.newsletter-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1d4ed8;
}

.clutch-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.clutch-badge img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-quote {
    flex: 1;
    text-align: center;
    max-width: 500px;
    margin: 0 2rem;
}

.contact-link {
    color: #60a5fa;
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Progress Circle (scroll indicator) */
.back-to-top::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    top: -7.5px;
    left: -7.5px;
    box-sizing: border-box;

    /* Conic gradient: progress color + black for remaining */
    background: conic-gradient(#ffffff var(--progress, 0%),
            /* Progress part (white) */
            #000000 var(--progress, 0%)
            /* Remaining part (black) */
        );

    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), black 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), black 0);

    border-radius: 50%;
    pointer-events: none;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.copyright {
    display: flex;
    gap: 2rem;
}

.copyright a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* Scroll animations */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* about page css  */

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.header-content {
    animation: slideInUp 1s ease-out;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3b82f6;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #64748b;
    font-weight: 500;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.story-image:hover img {
    transform: scale(1.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.image-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.mission-card .mv-icon {
    color: #2563eb;
}

.vision-card .mv-icon {
    color: #10b981;
}

/* Core Values */
.core-values {
    padding: 100px 0;
    background: white;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background: white;
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Company Culture */
.company-culture {
    padding: 100px 0;
    background: white;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.culture-text p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.culture-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.culture-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.culture-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 400px;
}

.culture-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.main-image {
    grid-row: span 2;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.culture-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.slideInLeft {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

.slideInRight {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* product page css  */
.portfolio-filter {
    padding: 60px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
}

.portfolio-grid-section {
    padding: 80px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.portfolio-actions {
    display: flex;
    gap: 10px;
}

.portfolio-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.project-stats {
    background: #0f172a;
    padding: 80px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.client-testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-mark {
    font-size: 4rem;
    color: #667eea;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.client-details span {
    color: #666;
    font-size: 0.9rem;
}

.project-reference {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.project-reference span {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.technologies-showcase {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
}

.tech-carousel {
    overflow: hidden;
    white-space: nowrap;
}

.tech-track {
    display: inline-flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    min-width: 150px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.tech-item img {
    width: 48px;
    height: 48px;
}

.tech-item span {
    font-weight: 500;
    color: #333;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.cta-stat .stat-text {
    opacity: 0.8;
    font-size: 1rem;
}

/* services page css */
/* Services Overview */
.srv-services-overview {
    padding: 80px 0;
    background: white;
}

.srv-overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.srv-overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.srv-overview-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

/* Main Services */
.srv-main-services {
    padding: 100px 0;
    background: #f8fafc;
}

.srv-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.srv-service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.srv-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.srv-service-card.srv-featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.srv-service-card.srv-featured::before {
    transform: scaleX(1);
}

.srv-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.srv-service-card.srv-featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.srv-service-icon {
    margin-bottom: 1.5rem;
}

.srv-service-icon img {
    width: 64px;
    height: 64px;
}

.srv-service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.srv-service-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.srv-service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.srv-service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.srv-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.srv-service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.srv-service-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.srv-service-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
/* Main Services */
.srv-main-services {
    padding: 100px 0;
    background: #f8fafc;
}

.srv-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.srv-service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.srv-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.srv-service-card.srv-featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.srv-service-card.srv-featured::before {
    transform: scaleX(1);
}

.srv-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.srv-service-card.srv-featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.srv-service-icon {
    margin-bottom: 1.5rem;
}

.srv-service-icon img {
    width: 64px;
    height: 64px;
}

.srv-service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.srv-service-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.srv-service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.srv-service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.srv-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.srv-service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.srv-service-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.srv-service-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Service Process */
.srv-service-process {
    padding: 100px 0;
    background: white;
}

.srv-process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.srv-process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.srv-process-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.srv-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.srv-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #2563eb, #3b82f6);
    transform: translateX(-50%);
}

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

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

.srv-process-step:nth-child(even) .srv-step-content {
    text-align: right;
}

.srv-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.srv-step-content {
    flex: 1;
    padding: 0 3rem;
    max-width: 300px;
}

.srv-step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.srv-step-content p {
    color: #64748b;
    line-height: 1.6;
}
/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: #0f172a;
    color: white;
}

.tech-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.tech-header p {
    font-size: 1.125rem;
    color: #94a3b8;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.tech-item img {
    width: 32px;
    height: 32px;
}

.tech-item span {
    color: #e2e8f0;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    font-size: 4rem;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.25rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

.testimonial-rating {
    text-align: center;
}

.stars {
    font-size: 1.25rem;
    color: #fbbf24;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
    border-color: #2563eb;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #2563eb;
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Service Card Animations */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: serviceCardIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes serviceCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Step Animations */
.process-step {
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Technology Category Hover Effects */
.tech-category {
    position: relative;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-category:hover::before {
    opacity: 1;
}

/* Testimonial Card Loading Animation */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #2563eb);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card.active::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
}

/* Animate when class .animate is added */
.faq-item.animate {
    animation: faqItemIn 0.5s ease forwards;
}

/* Staggered delay for each item */
.faq-item:nth-child(1).animate { animation-delay: 0s; }
.faq-item:nth-child(2).animate { animation-delay: 0.1s; }
.faq-item:nth-child(3).animate { animation-delay: 0.2s; }
.faq-item:nth-child(4).animate { animation-delay: 0.3s; }
.faq-item:nth-child(5).animate { animation-delay: 0.4s; }
.faq-item:nth-child(6).animate { animation-delay: 0.5s; }

@keyframes faqItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Service Button Ripple Effect */
.service-btn {
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.in-view {
    opacity: 1;
    transform: translateX(0);
}


/* contact us page ui  */
/* Contact Section */
.tr-contact-section {
  padding: 100px 0;
  background: white;
}

.tr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.tr-contact-form-wrapper {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
}

.tr-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.tr-form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 15px 0 10px;
}

.tr-form-header p {
  color: #666;
  font-size: 1.1rem;
}

.tr-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tr-form-group {
  display: flex;
  flex-direction: column;
}

.tr-form-group label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.tr-form-group input,
.tr-form-group select,
.tr-form-group textarea {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.tr-form-group input:focus,
.tr-form-group select:focus,
.tr-form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.tr-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.tr-checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.tr-checkbox-group input[type="checkbox"] {
  margin: 0;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tr-checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.tr-checkbox-group a {
  color: #667eea;
  text-decoration: none;
}

.tr-checkbox-group a:hover {
  text-decoration: underline;
}

.tr-submit-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.tr-submit-btn:hover {
  transform: translateY(-3px);
  background-color: #0f172a;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.tr-submit-btn:active {
  transform: translateY(-1px);
}

.tr-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.tr-btn-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tr-btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: tr-spin 1s linear infinite;
}

@keyframes tr-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form Success Message */
.tr-form-success {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px solid #28a745;
}

.tr-success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tr-form-success h3 {
  color: #28a745;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.tr-form-success p {
  color: #666;
}

/* Contact Info */
.tr-contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tr-contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tr-contact-card:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.tr-contact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tr-contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.tr-contact-card p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.tr-contact-link {
  display: block;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.tr-contact-link:hover {
  color: #764ba2;
}

.tr-availability {
  font-size: 0.85rem;
  color: #28a745;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}

.tr-contact-address {
  font-style: normal;
  line-height: 1.6;
  color: #666;
}

.tr-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tr-social-link {
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: #667eea;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tr-social-link:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Response Time Section */
.response-time-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.response-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.response-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.response-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.response-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}
/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 15px 0 10px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}



/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-placeholder {
  position: relative;
  border-radius: 15px;
  height: 400px;
  overflow: hidden;
}

.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,130,246,0.6); /* blue overlay */
  z-index: 2;
}

.map-content {
  text-align: center;
  position: relative;
  z-index: 3;
  color: white;
  padding: 20px;
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.map-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.map-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.map-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.map-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.office-hours {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.office-hours li:last-child {
    border-bottom: none;
}

.office-note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    border-left: 4px solid #667eea;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===================== MOBILE RESPONSIVE CSS ===================== */
@media (max-width: 768px) {

    /* ===================== GENERAL STYLES ===================== */
    .container {
        padding: 0 15px;
    }

    /* ===================== NAVIGATION ===================== */
    .nav-container {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 2000;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-right {
        display: none;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
        z-index: 2001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ===================== HERO SECTION ===================== */
    .hero {
        padding: 4rem 2rem 2rem 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        margin-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .business-count {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .count {
        font-size: 1.5rem;
    }

    .hero-image img {
        height: 300px;
    }

    .floating-card {
        display: none;
    }

    /* ===================== ABOUT SECTION ===================== */
    .about-title {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }

    /* ===================== STATS SECTION ===================== */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .stat-number,
    .stat-number-b {
        font-size: 2rem;
    }

    .projects-title {
        font-size: 2rem;
    }

    /* ===================== INDUSTRIES SECTION ===================== */
    .section-title {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-card {
        margin: 0 1rem;
    }

    .industry-image {
        height: 200px;
    }

    /* ===================== NEWS SECTION ===================== */
    .news-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        margin: 0 1rem;
    }

    /* ===================== CONTACT SECTION ===================== */
    .contact-form {
        padding: 2rem;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    /* ===================== FOOTER ===================== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-quote {
        margin: 1rem 0;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .copyright {
        gap: 1rem;
    }

    /* ===================== ABOUT PAGE ===================== */
    .page-title {
        font-size: 3rem;
    }

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

    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .story-image {
        order: -1;
    }

    .story-image img {
        height: 300px;
    }

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

    .mv-card {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

    .culture-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
    }

    .main-image {
        grid-row: auto;
    }

    .culture-image {
        height: 200px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* ===================== PORTFOLIO PAGE ===================== */
    .filter-buttons {
        gap: 10px;
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item {
        margin: 0 1rem;
    }

    .portfolio-overlay {
        padding: 20px;
    }

    .portfolio-actions {
        flex-direction: column;
        gap: 8px;
    }

    .portfolio-btn {
        text-align: center;
        width: 100%;
    }

    .project-stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        margin: 0 1rem;
        padding: 25px;
    }

    .cta-stats {
        gap: 40px;
    }

    .tech-track {
        gap: 20px;
    }

    .tech-item {
        min-width: 120px;
        padding: 20px;
    }

    /* ===================== SERVICES PAGE ===================== */
    .srv-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .srv-service-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .srv-process-timeline::before {
        left: 20px;
        transform: none;
    }

    .srv-process-step {
        flex-direction: row;
        padding-left: 60px;
        position: relative;
    }

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

    .srv-process-step:nth-child(even) .srv-step-content {
        text-align: left;
    }

    .srv-step-number {
        position: absolute;
        left: -20px;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .srv-step-content {
        max-width: none;
        padding: 0 0 0 1rem;
    }

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

    .tech-logos {
        grid-template-columns: 1fr;
    }

    .testimonials-controls {
        gap: 1rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .faq-grid {
        margin: 0 1rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    /* ===================== CONTACT PAGE ===================== */
    .tr-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tr-contact-form-wrapper {
        padding: 30px 20px;
        order: 2;
    }

    .tr-form-header h2 {
        font-size: 2rem;
    }

    .tr-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tr-contact-info {
        order: 1;
        gap: 20px;
    }

    .tr-contact-card {
        padding: 25px 20px;
    }

    .tr-social-links {
        gap: 8px;
    }

    .tr-social-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .response-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .response-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-placeholder {
        height: 300px;
        order: 2;
    }

    .map-info {
        order: 1;
        text-align: center;
    }

    .office-hours {
        margin-bottom: 30px;
    }

    /* ===================== ANIMATIONS & INTERACTIONS ===================== */
    .animate {
        animation-duration: 0.4s;
    }

    /* Disable complex hover effects on mobile */
    .portfolio-item:hover,
    .news-card:hover,
    .industry-card:hover,
    .team-card:hover {
        transform: none;
    }

    .portfolio-overlay {
        opacity: 1;
        background: rgba(102, 126, 234, 0.85);
    }

    /* ===================== UTILITY CLASSES ===================== */
    .mobile-hidden {
        display: none;
    }

    .mobile-visible {
        display: block;
    }

    .mobile-center {
        text-align: center;
    }

    .mobile-full-width {
        width: 100%;
    }

    /* ===================== BACK TO TOP BUTTON ===================== */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .back-to-top::before {
        width: 60px;
        height: 60px;
        top: -5px;
        left: -5px;
    }

    /* ===================== SLIDESHOW ===================== */
    .slider {
        height: 250px;
    }

    .slide img {
        height: 250px;
        object-fit: cover;
    }

    /* ===================== CLIENTS CAROUSEL ===================== */
    .clients-carousel {
        gap: 1rem;

        justify-content: center;
        animation-duration: 18;
    }

    .client-logo img {
        height: 30px;
    }

    /* ===================== NEWSLETTER ===================== */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* ===================== CLUTCH BADGE ===================== */
    .clutch-badge {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .clutch-badge img {
        width: 50px;
        height: 50px;
    }
}

/* ===================== SMALLER MOBILE DEVICES (max-width: 480px) ===================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 3rem 1rem 2rem 1rem;
    }

    .container {
        padding: 0 10px;
    }

    .tr-contact-form-wrapper,
    .contact-form {
        padding: 20px 15px;
    }

    .srv-service-card,
    .mv-card,
    .value-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .portfolio-item,
    .news-card,
    .industry-card,
    .testimonial-card {
        margin: 0 0.5rem;
    }
}