/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
}

.hero-content {
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-colo: transparent;
    display: inline-block;
}


.hero-buttons {
    margin-top: 40px;
}

.hero-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.ratio {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.ratio video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(72, 97, 252, 0.3);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-animation {
    background: rgba(15, 17, 41, 0.7);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    backdrop-filter: blur(5px);
    width: 90%;
}

.code-animation pre {
    margin: 0;
    color: #f8f8f8;
    font-size: 1.1rem;
    font-family: 'Fira Code', monospace;
}

/* Add animation for typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.code-animation pre code {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid white;
    animation: typing 5s steps(30) infinite;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(var(--primary-color-rgb), 0.2),
            rgba(var(--accent-color-rgb), 0.2));
    z-index: 1;
}

/* What We Do Styles */
/* Section General Styling */
.section-padding {
    padding: 100px 0;
}

/* Modern Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: var(--secondary-color);
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-divider {
    position: relative;
    height: 2px;
    width: 80px;
    margin: 20px auto;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 10px;
}

.section-divider span {
    position: absolute;
    height: 8px;
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Cards Styling */
.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(72, 97, 252, 0.15);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: rgba(72, 97, 252, 0.1);
    border-radius: 50%;
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-arrow {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover .service-arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

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

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 20px 25px;
    }
}

/* Why Choose Us Section - Completely Scoped Styles */
.why-choose-us-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(72, 97, 252, 0.1), rgba(0, 217, 218, 0.1));
    top: -150px;
    left: -150px;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 217, 218, 0.1), rgba(72, 97, 252, 0.1));
    bottom: -150px;
    right: -150px;
}

.why-choose-us-section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.why-choose-us-title-underline {
    height: 4px;
    width: 70px;
    background: var(--accent-color);
}

.why-choose-us-lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
}

.why-choose-us-feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.why-choose-us-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-us-feature-icon-container {
    position: relative;
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
}

.why-choose-us-feature-icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(72, 97, 252, 0.1);
    position: absolute;
    top: 8px;
    left: 8px;
    transform: rotate(45deg);
    transition: all 0.3s;
}

.why-choose-us-feature-card:hover .why-choose-us-feature-icon-bg {
    transform: rotate(0deg);
    background: rgba(0, 217, 218, 0.1);
}

.why-choose-us-feature-icon-container i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.why-choose-us-feature-card:hover .why-choose-us-feature-icon-container i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.why-choose-us-feature-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-choose-us-feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Services Section Styles - Building on existing theme */
.services-section {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Badge styles */
.badge-primary {
    background-color: rgba(72, 97, 252, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 16px;
}

/* Decorative line */
.title-line {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 4px;
}

/* Service cards styling */
.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(72, 97, 252, 0.1);
    border-color: rgba(72, 97, 252, 0.1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 24px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.service-list i {
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 3px;
}

.service-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.03;
    z-index: -1;
    color: var(--primary-color);
}

/* CTA Box */
.services-cta {
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
    color: white;
    box-shadow: 0 15px 50px rgba(15, 17, 41, 0.2);
}

/* Process Section */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-header {
    padding: 80px 0;
    background: linear-gradient(to right, var(--secondary-color), var(--dark-bg));
    margin-bottom: 60px;
}

.process-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzRjMC0yLjIxLTEuNzktNC00LTRzLTQgMS43OS00IDQgMS43OSA0IDQgNCAzLjk5LTEuNzUgNC0zLjk5eiBNMzAgMGMtLjE3NiAwLS43MTUuMTI4LS45ODUuMjY2QyI+PC9wYXRoPjwvZz48L2c+PC9zdmc+');
    opacity: 0.2;
}

.title-divider {
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    border-radius: 2px;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.process-timeline {
    position: relative;
}

.process-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(72, 97, 252, 0.2);
}

.process-step {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.z-1 {
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #6c5ce7);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-10v10h4v-6h6zM14 24v-4h10V10h-4v6h-6v-6h-4v10h10v4h-10v10h4v-6h6v6h4V24h-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-card {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.section-badge {
    background: rgba(72, 97, 252, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Industries/Expertise Section */
.expertise-section {
    background-color: #f9fafc;
    padding: 100px 0;
}

.expertise-card {
    background: white;
    border-radius: var(--card-border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(72, 97, 252, 0.1);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.expertise-card:hover::before {
    height: 100%;
}

.expertise-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(72, 97, 252, 0.1) 0%, rgba(0, 217, 218, 0.1) 100%);
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.expertise-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    transform: scale(1.1);
}

.expertise-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.expertise-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.expertise-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.expertise-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.expertise-link:hover {
    color: var(--primary-dark);
}

.expertise-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
}

.contact-form-card,
.contact-info-card {
    background: white;
    border-radius: var(--card-border-radius);
    padding: 40px;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.contact-form-card {
    border-top: 5px solid var(--primary-color);
}

.contact-info-card {
    border-top: 5px solid var(--accent-color);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e1e5ee;
    background-color: #f8f9fa;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: white;
}

.contact-info-card h3 {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    margin-bottom: 25px;
}

.benefit-icon {
    flex: 0 0 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(72, 97, 252, 0.1) 0%, rgba(0, 217, 218, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(72, 97, 252, 0.05) 0%, rgba(0, 217, 218, 0.05) 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e1e5ee;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(72, 97, 252, 0.25);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-image: none;
}

.invalid-feedback {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 97, 252, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 97, 252, 0.3);
}

.btn-primary:active,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.25rem rgba(72, 97, 252, 0.5);
}

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

/* Message suggestion buttons */
.message-suggestions {
    margin-top: 0.5rem;
}

.suggestion-btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

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

/* Alert styling */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.2);
    color: #198754;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-form-card {
        padding: 1.5rem;
    }

    .suggestion-btn {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Bootstrap Overrides */
.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    box-shadow: 0 10px 20px rgba(72, 97, 252, 0.3);
    transform: translateY(-2px);
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 5px 15px rgba(72, 97, 252, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(72, 97, 252, 0.4);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    background-color: var(--accent-color);
}

.footer-contact-info {
    flex-direction: column;
}

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

.contact-info-item a {
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* .footer-divider {
    margin: 30px 0;
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.copyright a {
    font-weight: 600;
}

.footer-legal li {
    position: relative;
}

.footer-legal li:not(:last-child)::after {
    content: '•';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .footer {
        padding-top: 60px;
    }
} */