:root {
    --primary-blue: #00416A; /* From Logo */
    --accent-orange: #F58220; /* From Logo */
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.2;
    
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #d46d1a;
}



/* --- 1. ROI Intro Section (Isolated) --- */

/* Container for Centering */
.roi-intro {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.roi-intro .intro-text {
    max-width: 900px;
    margin: 0 auto;
}

/* Eyebrow styling */
.roi-intro .animated-eyebrow {
    color: #F28C28; /* Brand Orange */
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    /* Changed border-left to a bottom border for better center alignment */
    border-bottom: 3px solid #F28C28; 
    padding: 0 10px 5px 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.roi-intro .shimmer-text {
    font-size: 3.8rem;
    color: #003D66; /* Brand Navy */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.roi-intro .large-p {
    font-size: 1.25rem;
    color: #445668;
    max-width: 800px;
    margin: 0 auto 30px auto; /* margin: 0 auto centers the block itself */
}

.roi-intro .text-blue-bold {
    color: #003D66;
    font-weight: 700;
    background: rgba(0, 61, 102, 0.05);
    padding: 0 5px;
    border-radius: 4px;
}

/* Stat Pills Centering */
.roi-intro .intro-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.roi-intro .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 14px 28px;
    border-radius: 50px;
    color: #003D66;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 61, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.roi-intro .stat-pill:hover {
    background: #003D66;
    color: white;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 61, 102, 0.15);
}

.roi-intro .stat-pill i { 
    color: #F28C28; 
    transition: 0.3s;
}

.roi-intro .stat-pill:hover i { 
    color: white; 
}

/* Responsive fix for smaller screens */
@media (max-width: 768px) {
    .roi-intro .shimmer-text {
        font-size: 2.5rem;
    }
}

/* --- 2. Performance Services (Isolated) --- */
/* .performance-services { 
    background-color: #f9fafa; 
    padding: 80px 0; 
}

.performance-services .text-orange-glow {
    color: #F28C28;
    position: relative;
    z-index: 1;
}

/* The Grid Container */
/* .performance-services .services-grid.four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 0;
} */

/* Individual Card Styling */
/* .performance-services .service-cards {
    height: 100%;
    transition: transform 0.4s ease;
}

.performance-services .card-inner {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 61, 102, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
} */

/* Card Hover Animation */
/* .performance-services .service-cards:hover .card-inner {
    border-color: #F28C28;
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 61, 102, 0.1);
}

.performance-services .card-icon {
    font-size: 2.5rem;
    color: #003D66;
    margin-bottom: 25px;
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.performance-services .service-cards:hover .card-icon {
    color: #F28C28;
    transform: rotateY(360deg) scale(1.1);
}

.performance-services .card-inner h3 {
    color: #003D66;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
}

.performance-services .card-inner p {
    color: #556b82;
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0 25px;
} */

/* Highlighting specific words */
/* .performance-services .highlight {
    color: #F28C28;
    display: inline-block;
} */

/* The Link Button Animation */
/* .performance-services .btn-text-animated {
    display: inline-flex;
    align-items: center;
    color: #003D66;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: auto;
}

.performance-services .btn-text-animated span {
    width: 20px;
    height: 2px;
    background: #F28C28;
    margin-left: 10px;
    transition: 0.4s;
    position: relative;
}

.performance-services .service-cards:hover .btn-text-animated {
    color: #F28C28;
}

.performance-services .service-cards:hover .btn-text-animated span {
    width: 40px;
    background: #003D66;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .performance-services .services-grid.four-cols { grid-template-columns: repeat(2, 1fr); }
    .roi-intro .shimmer-text { font-size: 3rem; }
}

@media (max-width: 600px) {
    .performance-services .services-grid.four-cols { grid-template-columns: 1fr; }
    .roi-intro .shimmer-text { font-size: 2.2rem; }
} 


/* Why Brands Choose Us */
.choice-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.choice-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 30px 30px 0px #F58220;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.value-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 25px;
}

.value-list li::before {
    content: "\f058"; /* FontAwesome Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #F58220;
    font-size: 1.2rem;
}

.value-list strong {
    display: block;
    font-size: 1.2rem;
    color: #00416A;
    margin-bottom: 5px;
}

.final-statement {
    border-left: 5px solid #F58220;
    padding-left: 20px;
    font-style: italic;
    font-weight: 600;
    color: #00416A;
}


/* High Impact About Section Styling */
.about-hero-section {
    padding:0px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.eyebrow {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.massive-text {
    font-size: 4.5rem; /* Very large as requested */
    line-height: 1.1;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 50px;
}

.orange-glow {
    color: var(--accent-orange);
    text-shadow: 2px 2px 10px rgba(245, 130, 32, 0.2);
}

/* Philosophy Split Logic */
.philosophy-split {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.phi-box {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
}

.phi-box.primary {
    background: var(--primary-blue);
    color: white;
}

.phi-arrow {
    font-size: 3rem;
    color: var(--accent-orange);
}

.big-subtext {
    font-size: 1.5rem;
    color: #555;
    max-width: 900px;
    line-height: 1.6;
}

/* How We Think Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.how-item {
    border-bottom: 3px solid var(--primary-blue);
    padding: 20px 0;
    font-weight: 600;
}

.how-item span {
    display: block;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* Differentiation Bar */
.differentiation-bar {
    background: var(--primary-blue);
    color: white;
    padding: 80px;
    margin: 80px 0;
    border-radius: 20px;
    text-align: center;
}

.differentiation-bar h2 { font-size: 3rem; margin-bottom: 30px; }

.performance-tag {
    margin-top: 40px;
    display: inline-block;
    border: 2px dashed var(--accent-orange);
    padding: 15px 30px;
    font-weight: bold;
}

/* Stats */
.about-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 0px;
}

.stat-card .num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.stat-card .lab {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .massive-text { font-size: 3rem; }
    .philosophy-split { flex-direction: column; }
    .phi-arrow { transform: rotate(90deg); }
}

/* Partner Section Styles */
.section-title-large {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    margin-top: 80px;
}

.fit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fit-card {
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ideal-fit {
    background-color: #f0fff4; /* Light success green */
    border-top: 8px solid #28a745;
}

.not-fit {
    background-color: #fff5f5; /* Light error red */
    border-top: 8px solid #dc3545;
}

.fit-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.how-list {
    list-style: none;
    font-size: 1.2rem;
}

.how-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.how-list li::before {
    content: "•";
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Responsiveness for the Fit Grid */
@media (max-width: 850px) {
    .fit-container {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 20px;
    border-radius: 10px;
}

/* Hover Animation */
.stat-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 65, 106, 0.1);
}

.stat-card .num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: inline-block;
    transition: color 0.3s ease;
}

.stat-card .plus {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat-card:hover .num {
    color: var(--accent-orange);
}

.differentiation-bar {
    padding: 80px 5%;
    background-color: var(--primary-blue); /* Professional Deep Blue background */
    border-radius: 30px;
    margin: 60px 0;
    color: white;
}

.diff-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

.diff-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05); /* Subtle glass effect */
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.diff-icon {
    font-size: 2.5rem;
    background: rgba(245, 130, 32, 0.2);
    padding: 15px;
    border-radius: 12px;
}

.vs {
    color: var(--accent-orange);
    font-style: italic;
    font-size: 0.9rem;
    margin: 0 5px;
}

.diff-text h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.diff-text p {
    font-size: 1.1rem;
    color:var(--primary-blue);
    line-height: 1.6;
}

/* Vertical Divider Line */
.diff-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-orange), transparent);
    opacity: 0.5;
}

/* Performance Tag Styling */
.performance-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.performance-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--accent-orange);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .diff-container { flex-direction: column; }
    .diff-divider { display: none; }
}


.team-section {
    padding: 80px 0;
    background-color:  #002b4d;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px; /* Limits the overall width so it's not "huge" */
    margin: 50px auto; /* Centers the grid on the page */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.member-image {
    width: 100%;
    height: 380px; /* Fixed height for all images */
    overflow: hidden;
    border-radius: 8px 8px 0 0; /* Rounds only the top corners */
    background-color: #f0f0f0; /* Placeholder color while loading */
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    background: #fff;
    min-height: 180px; 
}

.member-info h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.member-info .role {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-info .quote {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Responsive: 2 per row on tablets, 1 on mobile */
@media (max-width: 992px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
}


/* Deep Blue Background Section */
.testimonials-full-bg {
 /* Your Company Blue */
    padding: 5px 0px 0px 3px;
    position: relative;
    overflow: hidden;
}

.white-text { color: #ffffff !important; opacity: 0.8; }

/* Slider Layout */
.testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonial-slider-container {
    position: relative;
    height: 400px; /* Adjust based on content */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

/* The White Highlight Card */
.testimonial-white-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-top: 6px solid #007bff; /* Accent blue line from your reference */
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin: 20px 0;
}

.client-meta { margin-top: 30px; }

.client-avatar {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border: 2px solid #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    color: #007bff;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.3s;
}

.slider-btn:hover { background: var(--accent-orange); }
.prev { left: -80px; }
.next { right: -80px; }

@media (max-width: 900px) {
    .prev { left: 10px; }
    .next { right: 10px; }
    .testimonial-white-card { padding: 30px; }
}

/* Darkened, blurred background overlay */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 20, 40, 0.85); /* Deep navy tint */
    backdrop-filter: blur(8px); /* Modern blur effect */
    z-index: 10001;
    display: none; /* Controlled by JS flex */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Enlarged and styled white card */
.popup-content {
    background: #ffffff;
    padding: 50px 40px; /* Increased padding */
    border-radius: 20px;
    width: 100%;
    max-width: 550px; /* Wider for a more "important" look */
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.popup-header h3 {
    font-size: 2rem; /* Bold headline */
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.popup-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Form Styling */
#popup-form .form-group {
    margin-bottom: 20px;
}

#popup-form input, 
#popup-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

#popup-form input:focus, 
#popup-form select:focus {
    border-color: var(--accent-orange);
}

.popup-submit-btn {
    width: 100%;
    background-color: var(--accent-orange);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.popup-submit-btn:hover {
    background-color: #d46d1a;
    transform: translateY(-2px);
}

/* Professional Close Button */
.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 35px;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: var(--accent-orange);
}
.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* --- Main Footer Container --- */
.main-footer {
    background-color: #002b4d; /* Darker professional contrast to separate from testimonials */
    color: #ffffff;
    padding: 80px 0 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr 1fr; /* Adjusted for address and service list */
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Brand & Address Column --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-left: 5px;
}

.footer-logo img {
    height: 50px; /* Increased for visibility */
    width: auto;
}

.footer-logo h2 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.footer-brand p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.company-address {
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.company-address p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Social Icons (FontAwesome Styling) --- */
.social-icons {
    display: flex;
    gap: 12px;
    padding-left: 20px;
}

.social-icons a {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 1.9rem;
}

.social-icons a:hover {
    
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

/* --- Navigation Links Column --- */
.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
}

/* Underline decoration for headings */
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Two-column layout for the 8 services */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    width: 100%;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
    padding-top: 30px;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.bottom-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.bottom-legal a:hover {
    color: white;
}

/* --- Responsive Layouts --- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1.5fr; /* Stacks into two columns */
    }
    .services-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 50px;
    }
    
    .footer-links h4 {
        margin-bottom: 20px;
    }

    .flex-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-legal a {
        margin: 0 10px;
    }
}


/* Ensure the overlay covers the screen and centers the side form */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none; /* Controlled by JS */
    justify-content: flex-end; /* Aligns form to the right side */
}

.side-form {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    padding: 40px;
    overflow-y: auto;
    position: relative;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Magnetic Calendly Button Styling */
.cta-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #f58220, #ff9d4d, #f58220);
    background-size: 200% auto;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.3);
    animation: shimmer-bg 3s linear infinite;
}

/* Moving Background Gradient */
@keyframes shimmer-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* The "Glow" Pulse */
.cta-magnetic::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s;
}

.cta-magnetic:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 130, 32, 0.5);
    color: white;
}

.cta-magnetic:hover::after {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0);
    border: 2px solid #f58220;
}

.cta-magnetic i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta-magnetic:hover i {
    transform: translateX(5px);
}

/* Periodic Attention Grabber (Pulse) */
.pulse-trigger {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 130, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0); }
}

