/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4361ee;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --success: #4cc9f0;
    --gradient: linear-gradient(135deg, #4361ee, #3a0ca3, #7209b7);
    --gradient-light: linear-gradient(135deg, #f72585, #7209b7);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.service-card[data-service-id="1"] .service-price {
    color: #f72585;
    font-weight: 700;
}
.service-card[data-service-id="2"] .service-price {
    color: #f72585;
    font-weight: 700;
}
.service-card[data-service-id="3"] .service-price {
    color: #f72585;
    font-weight: 700;
}
.service-card[data-service-id="5"] .service-price {
    color: #f72585;
    font-weight: 700;
}
.service-card[data-service-id="6"] .service-price {
    color: #f72585;
    font-weight: 700;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(67, 97, 238, 0.8);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge span {
    color: white;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #f72585, #4cc9f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.typewriter {
    display: inline-block;
    border-right: 3px solid white;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: white }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.ai-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-core {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #4cc9f0, #4361ee);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7);
    }
    70% {
        box-shadow: 0 0 0 40px rgba(76, 201, 240, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
    }
}

.orb-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-2 {
    width: 380px;
    height: 380px;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.el1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.el2 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.el3 {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Animated Banner */
.animated-banner {
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.banner-track {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.banner-item {
    padding: 0 40px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.service-features i {
    color: var(--success);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.service-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-service {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-result {
    color: var(--success);
    font-weight: 600;
    margin: 10px 0;
}

.portfolio-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    color: #666;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.client-image {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stars {
    color: #ffd700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close:hover {
    color: var(--accent);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
    padding-left: 15px;
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 300px;
    }
    
    .ai-orb {
        width: 300px;
        height: 300px;
    }
    
    .orb-core {
        width: 150px;
        height: 150px;
    }
}

/* Add these new styles to your existing styles.css */

/* Top Announcement Banner */
.top-banner {
    background: linear-gradient(90deg, #4361ee, #3a0ca3, #7209b7);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    animation: bannerGlow 3s infinite alternate;
}

@keyframes bannerGlow {
    0% {
        box-shadow: 0 2px 20px rgba(67, 97, 238, 0.3);
    }
    100% {
        box-shadow: 0 2px 30px rgba(67, 97, 238, 0.6);
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
}

.banner-content i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.banner-highlight {
    background: linear-gradient(45deg, #ffd166, #ff9e6d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 209, 102, 0.3);
}

/* Adjust navbar for top banner */
.navbar {
    top: 75px; /* Height of top banner */
}

.navbar.scrolled {
    top: 0;
}

/* Portfolio Images */
.portfolio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    margin: 10px 0 5px;
    font-size: 1.3rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Portfolio Tech Tags */
.portfolio-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tech-tag {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section Update */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.contact-details h4 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin: 4px 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-weight: normal;
    color: #666;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Testimonial Images */
.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-banner {
        padding: 10px 0;
    }
    
    .banner-content {
        font-size: 14px;
        gap: 10px;
        text-align: center;
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .banner-content i {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .navbar {
        top: 40px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        font-size: 13px;
    }
    
    .banner-highlight {
        display: block;
        margin-top: 5px;
    }
    
    .portfolio-image {
        height: 200px;
    }
}

/* Contact Section - Single Box Style */
.contact-single-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 650px;
}

/* Left Column - Contact Information */
.contact-info-sidebar {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(58, 12, 163, 0.05));
    padding: 40px;
    border-right: 1px solid rgba(67, 97, 238, 0.1);
    position: relative;
}

.sidebar-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(67, 97, 238, 0.2);
}

.sidebar-header h3 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-detail a,
.contact-detail p {
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--accent);
    transform: translateX(5px);
    display: inline-block;
}

.business-hours {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: #333;
    font-weight: 500;
}

.hours-row .time {
    color: var(--primary);
    font-weight: 600;
    background: rgba(67, 97, 238, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Right Column - Contact Form */
.contact-form-main {
    padding: 40px;
    background: white;
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(67, 97, 238, 0.2);
}

.form-header h3 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(67, 97, 238, 0.1);
    }
    
    .contact-info-sidebar,
    .contact-form-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info-icon {
        margin-bottom: 15px;
    }
    
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hours-row .time {
        align-self: flex-start;
    }
    
    .sidebar-header h3,
    .form-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-single-box {
        border-radius: 15px;
    }
    
    .contact-info-sidebar,
    .contact-form-main {
        padding: 20px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px 30px;
    }
}

/* Animation for contact cards */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info-card {
    animation: cardFadeIn 0.6s ease forwards;
}

.contact-info-card:nth-child(2) { animation-delay: 0.1s; }
.contact-info-card:nth-child(3) { animation-delay: 0.2s; }
.contact-info-card:nth-child(4) { animation-delay: 0.3s; }
.contact-info-card:nth-child(5) { animation-delay: 0.4s; }

/* Add subtle background pattern */
.contact-info-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234361ee' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Form input focus animation */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

/* Add border animation to the box */
.contact-single-box {
    position: relative;
}

.contact-single-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-single-box:hover::before {
    opacity: 0.3;
}

/* Add these styles for image placeholders (remove when adding real images) */
.portfolio-image img {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.client-image img {
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* For demo purposes - remove when adding real images */
.portfolio-image img::after {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.client-image img::after {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* Service highlight animation */
@keyframes serviceHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 195, 247, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
    }
}

.highlight-service {
    animation: serviceHighlight 2s ease;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   FOOTER STYLES - Matching Reference Design
   ============================================ */

.footer {
    background: #2e1a5d;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3, #7209b7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo i {
    font-size: 28px;
    color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4fc3f7;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #4fc3f7;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4fc3f7;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Social Links Styling */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e0;
    text-decoration: none;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
    transform: translateY(-3px);
    border-color: rgba(79, 195, 247, 0.3);
}

.social-icon i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.social-icon span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-icon {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-icon {
        min-width: 120px;
        padding: 10px 15px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
}

/* ============================================
   ABOUT SECTION - Professional Redesign
   ============================================ */

.about-professional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-main-feature {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(67, 97, 238, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-main-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3, #7209b7);
}

.feature-badge {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-main-feature h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-description {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.feature-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-circle {
    text-align: center;
    flex: 1;
}

.circle-progress {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) var(--progress, 0%), #e1e5e9 0%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
}

.circle-value {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Feature Cards */
.about-features-list {
    display: grid;
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1);
    border-color: rgba(67, 97, 238, 0.2);
}

.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.feature-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.feature-points i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.trust-badge:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.1);
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-professional-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .trust-badges {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-main-feature {
        padding: 30px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto;
    }
    
    .feature-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .stat-circle {
        max-width: 150px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-main-feature h3 {
        font-size: 1.6rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Animation for circle progress */
@keyframes fillCircle {
    from {
        --progress: 0%;
    }
}

.circle-progress {
    animation: fillCircle 2s ease-out forwards;
}

/* Set initial progress values */
.circle-progress[data-percentage="95"] { --progress: 0%; }
.circle-progress[data-percentage="70"] { --progress: 0%; }
.circle-progress[data-percentage="100"] { --progress: 0%; }

/* Animation delay for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.feature-bullets li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.feature-bullets li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    background: rgba(76, 201, 240, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Special styling for e-commerce service */
.service-card[data-service-id="1"] {
    border-top: 4px solid #f72585;
}
.service-card[data-service-id="2"] {
    border-top: 4px solid #f72585;
}
.service-card[data-service-id="3"] {
    border-top: 4px solid #f72585;
}
.service-card[data-service-id="4"] {
    border-top: 4px solid #f72585;
}
.service-card[data-service-id="5"] {
    border-top: 4px solid #f72585;
}
.service-card[data-service-id="6"] {
    border-top: 4px solid #f72585;
}

.service-card[data-service-id="4"] .service-price {
    color: #f72585;
    font-weight: 700;
}

.service-card[data-service-id="4"] .btn-service:hover {
    background: #f72585;
}

/* AI Chatbot Development - Light Blue Pulse */
.service-card[data-service-id="1"]:hover .service-icon {
    animation: chatbotPulse 2s infinite;
}

@keyframes chatbotPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 201, 240, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
    }
}

/* Workflow Automation - Purple Pulse */
.service-card[data-service-id="2"]:hover .service-icon {
    animation: workflowPulse 2s infinite;
}

@keyframes workflowPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 9, 183, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(114, 9, 183, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 9, 183, 0);
    }
}

/* AI Agent Setup - Pink Pulse */
.service-card[data-service-id="3"]:hover .service-icon {
    animation: agentPulse 2s infinite;
}

@keyframes agentPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

/* Special hover effect for e-commerce service */
.service-card[data-service-id="4"]:hover .service-icon {
    animation: ecommercePulse 2s infinite;
}

@keyframes ecommercePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
}

/* CRM & Marketing Automation - Dark Blue Pulse */
.service-card[data-service-id="5"]:hover .service-icon {
    animation: crmPulse 2s infinite;
}

@keyframes crmPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(58, 12, 163, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(58, 12, 163, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(58, 12, 163, 0);
    }
}

/* Custom AI Solutions - Green Pulse */
.service-card[data-service-id="6"]:hover .service-icon {
    animation: customPulse 2s infinite;
}

@keyframes customPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* Make the e-commerce icon stand out */
.service-card[data-service-id="4"] .icon-wrapper {
    background: linear-gradient(135deg, #f72585, #7209b7);
}

/* Responsive adjustments for 3 columns */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure all service cards have consistent height */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-footer {
    margin-top: auto;
}

/* Add animation for new service card */
@keyframes slideInService {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card[data-service-id="4"] {
    animation: slideInService 0.6s ease forwards;
}
/* Booking Form Styles */
.form-disclaimer {
    margin-top: 15px;
    padding: 12px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 8px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.form-disclaimer i {
    color: #4cc9f0;
    margin-right: 5px;
}

/* Modal form improvements */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

/* Improved select styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
    cursor: pointer;
}

/* Better textarea styling */
.form-group textarea {
    min-height: 100px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    padding: 12px 15px;
    resize: vertical;
}

/* Time zone select specific styling */
#timeZone option {
    padding: 10px;
}

/* Responsive adjustments for booking form */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 25px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}
