/* Global Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.logo img {
    height: 80px;
    width: auto;
    background: #1a1a1a;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6f00;
}

.cta-button button {
    padding: 18px 30px;
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    border: none;
    border-radius: 32px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button button:hover {
    transform: scale(1.05);
}

main {
    padding: 20px 30px;
}

/* Hero Section Styling */
.hero {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero h1 span {
    color: #ff6f00;
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
}

.hero p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-button {
    padding: 24px 36px;
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    border: none;
    border-radius: 80px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.4s, box-shadow 0.5s ease, opacity 0.8s ease 0.4s;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, #ff6f00, #ffab40, #ff6f00);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-button:hover::before {
    left: 0;
}

/* Services Section Styling */
.services {
    text-align: center;
    padding: 80px 0;
}

.services h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    border-radius: 5px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(5px);
    padding: 50px 30px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card i {
    font-size: 60px;
    color: #ff6f00;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    border: 1px solid #ff6f00;
}

/* About Us Section Styling */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 20px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1), transparent);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    border-radius: 5px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    max-height: 550px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.3);
}

.about-text {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.about-text h3 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    border-radius: 2px;
}

.about-text .text-block {
    margin-bottom: 30px;
}

.about-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 3px rgba(255, 111, 0, 0.1);
}

.about-text p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
}

/* Clients Section Styling */
.clients {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 20px 0;
}

.clients::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.05), transparent);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.clients-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.clients-text {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.clients-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
}

.clients-text h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.clients-text p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
    opacity: 0.8;
}

/* Clients Marquee Styling */
.clients-marquee {
    flex: 1;
    max-width: 900px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 15s linear infinite; /* Slower duration for smoother effect */
}

.marquee-item {
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(4px);
    padding: 15px 30px;
    margin: 0 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 111, 0, 0.3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    white-space: nowrap;
}

.marquee-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
    border-color: #ff6f00;
}

.marquee-content .marquee-item {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 3px rgba(255, 111, 0, 0.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Case Study Section Styling */
.case-study {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.03) 100%);
    border-radius: 30px;
    margin: 20px 0;
}

.case-study h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.case-study h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    border-radius: 5px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.case-study-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-card {
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.case-study-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.5);
    border: 1px solid #ff6f00;
}

.case-study-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 3px solid #ff6f00;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item .stat-value {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.4);
}

.stat-item p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-top: 8px;
    opacity: 0.9;
}

/* Affiliate Content Section Styling */
.affiliate-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.05) 100%);
    border-radius: 30px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 111, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.2);
}

.affiliate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a, #1a1a1a);
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.affiliate-glow-line {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6f00, transparent);
    animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

#affiliate-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.affiliate-content h2 {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.affiliate-content h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.affiliate-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.affiliate-card {
    flex: 0 0 calc(20% - 16px);
    background: rgba(10, 10, 10, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(255, 111, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.2);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
}

.affiliate-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 111, 0, 0.5);
    border: 2px solid #ff6f00;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%;
}

.affiliate-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Staggered Animation for Cards */
.affiliate-card:nth-child(1),
.affiliate-card:nth-child(6) {
    transition-delay: 0.2s;
}

.affiliate-card:nth-child(2),
.affiliate-card:nth-child(7) {
    transition-delay: 0.4s;
}

.affiliate-card:nth-child(3),
.affiliate-card:nth-child(8) {
    transition-delay: 0.6s;
}

.affiliate-card:nth-child(4),
.affiliate-card:nth-child(9) {
    transition-delay: 0.8s;
}

.affiliate-card:nth-child(5),
.affiliate-card:nth-child(10) {
    transition-delay: 1.0s;
}

/* Contact Section Styling */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.03) 100%);
    border-radius: 30px;
    margin: 20px 0;
}

.contact .wireframe-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 0h40M0 0v40" stroke="rgba(255,111,0,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.2;
    z-index: 0;
}

.contact .starting-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(4px);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 111, 0, 0.3);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 3px rgba(255, 111, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    border-radius: 5px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 111, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    resize: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6f00;
    box-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="url"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.form-group textarea {
    height: 150px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* CTA Section Styling */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.05) 100%);
    border-radius: 30px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.1);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a, #1a1a1a);
    animation: gradientShift 8s ease-in-out infinite;
}

.cta-glow-orb {
    position: absolute;
    top: 20%;
    left: 80%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.3), transparent);
    border-radius: 50%;
    filter: blur(15px);
    animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) translateX(-20px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
}

#cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 111, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-content h2 {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
    position: relative;
    z-index: 2;
}

.cta-content h2 span {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    animation: neonFlicker 4s ease-in-out infinite;
}

.cta-book-button {
    padding: 20px 60px;
    background: transparent;
    border: 3px solid #ff6f00;
    border-radius: 50px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    animation: pulseButton 3s ease-in-out infinite;
}

.cta-book-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.3), transparent);
    transition: left 0.4s ease;
}

.cta-book-button:hover::before {
    left: 100%;
}

.cta-book-button:hover {
    background: linear-gradient(90deg, #ff6f00, #ffab40);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    transform: scale(1.05);
}

@keyframes pulseButton {
    0% {
        box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 111, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
    }
}

/* Animation for elements */
[data-animate].animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation for cards */
.case-study-card:nth-child(1) {
    transition-delay: 0.2s;
}

.case-study-card:nth-child(2) {
    transition-delay: 0.4s;
}

.case-study-card:nth-child(3) {
    transition-delay: 0.6s;
}

.case-study-card:nth-child(4) {
    transition-delay: 0.8s;
}

/* Footer Section Styling */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, rgba(255, 111, 0, 0.05) 100%);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 111, 0, 0.2);
}

.footer-wireframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 0h40M0 0v40" stroke="rgba(255,111,0,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.2;
    z-index: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 111, 0, 0.2));
}

.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 200px;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.2);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff6f00;
    opacity: 1;
    text-shadow: 0 0 3px rgba(255, 111, 0, 0.3);
}

.footer-contact p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px;
}

.footer-social .social-icons a {
    color: #fff;
    font-size: 24px;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #ff6f00;
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 5px rgba(255, 111, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 111, 0, 0.1);
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.6;
}

/* Animation Delays for Footer Elements */
.footer-logo {
    transition-delay: 0.2s;
}

.footer-links {
    transition-delay: 0.4s;
}

.footer-contact {
    transition-delay: 0.6s;
}

.footer-social {
    transition-delay: 0.8s;
}