/* Modern Base Styles */
:root {
    --primary: #2d46b9;
    --gradient: linear-gradient(45deg, #2d46b9, #5c1969);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;

}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-light);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: transparent;
    overflow: hidden;
    padding: 60px 0 40px;
   
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #4E57C3, #B87DF0);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    margin-top: 100px;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(120deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.primary-btn {
    background: #fff;
    color: #4E57C3;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #4E57C3;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Card Styles */



/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: #fff;
}

.form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    border: none;
    border-bottom: 2px solid #eee;
    padding: 0.75rem 0;
    width: 100%;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #B87DF0;
    box-shadow: none;
}

.form-group label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea ~ label {
    top: 1rem;
}

.form-control:focus ~ label,
.form-control:valid ~ label {
    top: -0.5rem;
    font-size: 0.85rem;
    color: #B87DF0;
}

.submit-btn {
    background: linear-gradient(45deg, #B87DF0, #4E57C3);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 125, 240, 0.25);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section {
        padding: 40px 0;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .contact-card {
        margin-bottom: 1rem;
    }
}

/* Optional: Add animation for content */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update navbar styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    padding: 10px 0;
}

.navbar .nav-link {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: white !important;
}

.navbar .nav-link.active {
    color: white !important;
    font-weight: bold;
}

/* Adjust row height in hero section */
.hero-section .row {
    min-height: 35vh;
}

/* Why Choose Section Styles */
.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
}

.section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        circle at center,
        rgba(147, 51, 234, 0.05) 0%,
        rgba(147, 51, 234, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.1);
}

.feature-card:hover .glow-effect {
    opacity: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.1;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    z-index: 1;
}

/* Glowing Icon Colors */
.music-glow {
    color: #9333EA;
}

.solutions-glow {
    color: #4E57C3;
}

.trends-glow {
    color: #3B82F6;
}

.results-glow {
    color: #10B981;
}

.feature-card:hover .feature-icon::before {
    transform: scale(1.5);
    opacity: 0.15;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Animated Border */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        rgba(147, 51, 234, 0.3),
        rgba(78, 87, 195, 0.3)
    );
    mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                 linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Updated Elegant Styles */
.contact-card {
    position: relative;
    height: 450px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.12),
                0 5px 15px rgba(147, 51, 234, 0.08);
}

/* Elegant Title Styling */
.elegant-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.elegant-title .subtitle {
    display: block;
    font-size: 0.9rem;
    color: #B87DF0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.elegant-title h3 {
    font-size: 1.8rem;
    color: #2A2A2A;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.title-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #B87DF0, #4E57C3);
    margin: 1rem auto 0;
    position: relative;
}

.title-accent::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #B87DF0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Info Text Styling */
.info-text {
    text-align: center;
    margin-bottom: 2rem;
}

.info-text p {
    margin: 0;
    line-height: 1.6;
}

.info-text .address {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

.info-text .city {
    font-size: 1rem;
    color: #666;
    margin-top: 0.3rem;
}

/* Enhanced Button Styling */
.elegant-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #B87DF0, #4E57C3);
    opacity: 0.1;
    transition: all 0.4s ease;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.btn-text {
    color: #4E57C3;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4E57C3;
    transition: all 0.4s ease;
}

/* Enhanced Hover Effects */
.elegant-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.12),
                0 4px 10px rgba(147, 51, 234, 0.2);
}

.elegant-button:hover .btn-background {
    opacity: 1;
}

.elegant-button:hover .btn-text,
.elegant-button:hover .btn-icon {
    color: white;
}

.elegant-button:hover .btn-icon {
    transform: translateX(3px);
}

/* Card Hover Effect */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.18),
                0 10px 20px rgba(147, 51, 234, 0.15);
}

/* Icon Core Enhancement */
.icon-core {
    background: white;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.15),
                0 5px 15px rgba(147, 51, 234, 0.2);
}

.icon-core i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #B87DF0, #4E57C3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Accordion Styles */
.accordion-section {
    padding: 60px 0;
    background: #f9fafb;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

.accordion-header {
    background: #ffffff;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f3f4f6;
}

.accordion-button {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: '\f078'; /* FontAwesome down arrow */
    font-family: 'FontAwesome';
    font-size: 1rem;
    color: #9333EA;
    transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.accordion-body {
    background: #ffffff;
    padding: 1rem;
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid #e5e7eb;
}

.accordion-body p {
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .accordion-header {
        font-size: 1rem;
    }

    .accordion-body {
        font-size: 0.9rem;
    }
}

/* Services Section Styles */


/* Hero Section */
.contact-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #9333EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #9333EA;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.15);
}

.cta-button:hover {
    background: #7928CA;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.2);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666666;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.form-wrapper h2 {
    color: #1a1a1a;
}

.form-wrapper p {
    color: #666666;
    text-align: center;
    margin-bottom: 2rem;
}

.form-control {
    background: #f8f9ff;
    border: 2px solid rgba(147, 51, 234, 0.1);
    color: #1a1a1a;
}

.form-control:focus {
    background: #ffffff;
}

.submit-button {
    background: #9333EA;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.15);
}

.submit-button:hover {
    background: #7928CA;
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.2);
}

/* Map Section */
.map-section {
    height: 450px;
    border-top: 1px solid rgba(147, 51, 234, 0.1);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .contact-card {
        margin-bottom: 1.5rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }
}

/* Contact Details Section */
.contact-details-section {
    padding: 100px 0;
    background: #ffffff;
}

.details-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 650px;
}

/* Left side - Contact Info */
.designer-contact {
    flex: 0 0 300px; /* Fixed width */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.08);
}

.contact-block {
    text-align: center;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.detail-icon i {
    font-size: 1.5rem;
    color: #9333EA;
    transition: all 0.3s ease;
}

.detail-item h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333EA;
    transition: all 0.3s ease;
}

/* Hover effects */
.detail-item:hover .detail-icon {
    background: #9333EA;
    transform: translateY(-5px);
}

.detail-item:hover .detail-icon i {
    color: #ffffff;
}

.social-icon:hover {
    background: #9333EA;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Right side - Form */
.designer-form {
    flex: 1; /* Takes remaining space */
}

.form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.08);
}

.form-header {
    flex: 0 0 auto;
    margin-bottom: 30px;
}

.header-design {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.design-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9333EA;
    animation: dotPulse 1.5s infinite;
}

.design-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.design-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dotPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B87DF0, #4E57C3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.form-header p {
    color: #666666;
}

.creative-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.form-group {
    flex: 0 0 auto;
}

.input-field {
    position: relative;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 12px;
    background: rgba(147, 51, 234, 0.03);
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.input-field textarea {
    height: 100px;
    resize: none;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #B87DF0, #4E57C3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.input-field label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-field label i {
    color: #9333EA;
    font-size: 1.1rem;
}

.input-field textarea ~ label {
    top: 25px;
}

/* Input Focus & Fill States */
.input-field input:focus,
.input-field textarea:focus {
    background: rgba(147, 51, 234, 0.05);
    outline: none;
}

.input-field input:focus ~ .input-border,
.input-field textarea:focus ~ .input-border {
    transform: scaleX(1);
}

.input-field input:focus ~ label,
.input-field textarea:focus ~ label,
.input-field input:valid ~ label,
.input-field textarea:valid ~ label {
    transform: translateY(-130%) translateX(-30px) scale(0.85);
}

.input-field input:focus ~ label i,
.input-field textarea:focus ~ label i,
.input-field input:valid ~ label i,
.input-field textarea:valid ~ label i {
    color: #4E57C3;
}

/* Submit Button */
.submit-btn {
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(135deg, #B87DF0, #4E57C3);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4E57C3, #B87DF0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px) rotate(15deg);
}

.submit-btn:hover .btn-effect {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 1.75rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .details-container {
        flex-direction: column;
    }

    .designer-contact {
        flex: 0 0 auto;
        width: 100%;
        padding: 30px;
    }
}

/* Contact Map Section */
.contact-map-section {
    padding: 80px 0;
    background: white;
}

.contact-map-wrapper {
    display: flex;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Map side - smaller */
.map-side {
    flex: 1.2; /* Reduced from 2 */
    height: 600px; /* Slightly reduced height */
    margin-left: -50px; /* Reduced negative margin */
    position: relative;
    width: calc(100% + 50px);
}

/* Contact side - larger */
.contact-side {
    flex: 1.8; /* Increased from 1.2 */
    max-width: 650px; /* Increased max-width */
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 45px;
}

/* Info items - larger */
.info-item {
    padding: 30px 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 60px; /* Larger icons */
    height: 60px;
}

.info-content h3 {
    font-size: 1.3rem; /* Larger headings */
    margin-bottom: 10px;
}

.info-content p {
    font-size: 1.1rem; /* Larger text */
}

/* Form - larger */
.contact-form {
    gap: 30px;
    margin-top: 15px;
}

.form-row {
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 22px;
    font-size: 1.05rem;
}

.send-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .contact-side {
        max-width: 600px;
    }
    
    .map-side {
        margin-left: -30px;
        width: calc(100% + 30px);
    }
}

@media (max-width: 1200px) {
    .contact-map-wrapper {
        gap: 60px;
    }
    
    .map-side {
        margin-left: 0;
        width: 100%;
        flex: 1;
    }
    
    .contact-side {
        flex: 2;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .contact-map-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-side {
        max-width: 100%;
    }

    .map-side {
        height: 400px;
    }

    .info-item {
        padding: 25px 30px;
    }

    .info-icon {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 768px) {
    .contact-map-wrapper {
        padding: 0 20px;
    }

    .info-content h3 {
        font-size: 1.2rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .send-btn {
        width: 100%;
        min-width: unset;
        padding: 15px 25px;
    }
}

/* Main Container */
.contact-container {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 60px;
}


/* Details Container */
.details-container {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Contact Info */


.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 24px;
    color: #9333EA;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.info-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4A90E2;
    outline: none;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    padding: 15px 35px;
    background: #9333EA;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .map-container {
        height: 400px;
    }

    .details-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .input-row {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #787CD2, #B17AED);
    border-radius: 5px;
}

/* Contact Cards Styling */
.contact-cards-section {
    background-color: white;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #5F5DCA , #AA78EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0;
}

/* Map and Form Section Styling */
.contact-section {
    background-color: white;
}

.map-container {
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive height adjustments */
@media (min-width: 992px) {
    .map-container,
    .contact-form-container {
        height: 100%;
        min-height: 500px;
    }
}

/* Contact Info Section */
.contact-info-section {
    background-color: #f8f9fa;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 24px;
    background: linear-gradient(45deg, #5F5DCA, #AA78EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-text p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.contact-cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/contactUs/bg1.webp') center/cover no-repeat;
    color: white;
    padding: 100px 0;
}

.contact-cta-section h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Modal Styles */
.modal-dialog.modal-lg {
    max-width: 1200px;
    width: 95%;
    margin: 1.75rem auto;
}

.modal-content {
    display: flex;
    flex-direction: row;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    min-height: 700px;
    height: 85vh;
    max-height: 800px;
}

/* Left Section - Image */
.modal-left {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    order: -1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* Right Section - Form */
.modal-right {
    flex: 0 0 45%;
    padding:  2rem;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form spacing adjustments */
.modal-form {
    gap: 1.5rem;
}

.form-control {
    padding: 1rem 1.2rem;
}

textarea.form-control {
    min-height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }
    
    .modal-left {
        flex: 0 0 350px;
    }
    
    .modal-image {
        height: auto;
        max-height: 350px;
        padding: 15px;
    }
}

/* Close Button Styling */
.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: white;
    border: none;
    border-radius: 50%;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-close i {
    font-size: 16px;
    color: #666;
}

.btn-close:hover {
    transform: rotate(90deg);
    background: #f8f9fa;
}

/* Modal Header Styling */
.modal-header {
    border: none;
    padding: 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-header h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #7C3AED, #B87DF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.modal-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-header {
        margin-bottom: 2rem;
    }

    .modal-header h3 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
}

