/* Tailwind CSS Custom Configurations */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');


/* Custom CSS Variables */
/* :root {
    --primary-orange: #ff6900;
    --primary-red: #e55a00;
    --secondary-blue: #667eea;
    --secondary-purple: #764ba2;
    --accent-green: #10b981;
    --accent-yellow: #fbbf24;
    --neutral-gray-50: #f9fafb;
    --neutral-gray-800: #1f2937;
    --neutral-black: #000000;
    --neutral-white: #ffffff;
} */

/* :root {
    --primary-orange: #2d7e9e;
    --primary-red: #0e8db8;
    --secondary-blue: #667eea;
    --secondary-purple: #764ba2;
    --accent-green: #10b981;
    --accent-yellow: #fbbf24;
    --neutral-gray-50: #f9fafb;
    --neutral-gray-800: #1f2937;
    --neutral-black: #000000;
    --neutral-white: #ffffff;
} */



:root {
    --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

.every-color{
    /* color: #3d5d8d; */
    background-color: #3d5d8d;
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
    /* padding-top: 40px; */
}

/* Typography */
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Custom Gradients */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-purple));
}

.gradient-text-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
header {
    position: fixed;
    top: 40px; /* Height of marquee */
    left: 0;
    right: 0;
    z-index: 49;
    transition: top 0.3s ease;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Button Styles */
.cta-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: var(--primary-orange);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Card Styles */
.service-card,
.pricing-card,
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

/* Counter Styles */
.counter-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.counter-card:hover {
    transform: scale(1.05);
    /* background: rgba(255, 255, 255, 0.15); */
}

/* Trust Logo Styles */
.trust-logo {
    transition: all 0.3s ease;
}

.trust-logo:hover {
    transform: scale(1.05);
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Styles */
#mobile-menu {
    backdrop-filter: blur(10px);
}

.mobile-nav-link {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mobile-nav-link:hover {
    background: rgba(255, 105, 0, 0.1);
    transform: translateX(5px);
}

/* <!-- Success Stories Preview --> */

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-infinite-scroll {
    animation: infinite-scroll 60s linear infinite;
    width: 200%;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* <!-- Multiple Locations Section --> */
/* <!-- Add CSS for hover effects --> */

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.more-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* <!-- Consultation Popup Modal --> */
/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    padding: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    margin-top: 75px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding-right: 40px;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #e74c3c;
    background: #f8f9fa;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin: 0 0 25px 0;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}

/* Form Styles */
.consultation-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group.half-width {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #95a5a6;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.consultation-form .form-row {
    margin-bottom: 20px;
}


/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

/* Add to your CSS file */
/* .modal-overlay {
    display: none;
}
.modal-overlay.active {
    display: block;
} */

/* Responsive Design */
@media (max-width: 768px) {
    /* body {
        padding-top: 35px; 
    } */
    
    .marquee-section {
        padding: 6px 0;
    }
    
    header {
        top: 35px;
    }
    
    .marquee-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 15px;
        align-items: flex-start;
    }

    .modal-container {
        margin-top: 30px;
        margin-bottom: 30px;
        max-height: none;
        max-width: 100%;
    }

    .modal-header {
        padding: 25px 20px 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
        padding-right: 45px;
    }

    .close-btn {
        right: 15px;
        top: 15px;
        font-size: 1.8rem;
        width: 32px;
        height: 32px;
    }

    .modal-body {
        padding: 25px 20px;
    }

    .modal-body p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group.half-width {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-container {
        border-radius: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .modal-header {
        padding: 20px 15px 15px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .close-btn {
        right: 10px;
        top: 10px;
        font-size: 1.6rem;
        width: 30px;
        height: 30px;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .consultation-form .form-row {
        margin-bottom: 0px;
    }



    .submit-btn {
        padding: 12px 25px;
        font-size: 15px;
        border-radius: 25px;
    }
}

/* Focus and validation styles */
.form-group input:required:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group textarea:required:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid {
    border-color: #27ae60;
}

.form-group textarea:valid {
    border-color: #27ae60;
}


/* <!-- Marquee with clickable word --> */

/* <!-- WhatsApp Floating Button --> */
/* Your existing WhatsApp CSS with bounce animation */
.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 48;
    animation: bounceFloat 3s infinite ease-in-out;
    text-decoration: none; /* Remove link underline */
}

.whatsapp_float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    text-decoration: none;
}

.whatsapp_float i {
    color: white;
    font-size: 28px;
}

/* Consultation floating icon */
.consultation_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 49;
    animation: bounceFloat 3s infinite ease-in-out;
    animation-delay: 1.5s; /* Offset animation */
    cursor: pointer;
}

.consultation_float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.consultation_float i {
    color: white;
    font-size: 24px;
}

/* Enhanced bounce animation */
@keyframes bounceFloat {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp_float,
    .consultation_float {
        width: 55px;
        height: 55px;
        right: 15px;
    }
    
    .consultation_float {
        bottom: 85px;
    }
    
    .whatsapp_float i {
        font-size: 24px;
    }
    
    .consultation_float i {
        font-size: 20px;
    }
}



/* <!-- WhatsApp Floating Button --> */



/* Main section styling */
.success-section-success {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 5rem 0;
}

/* Background container */
.background-container-success {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background-image-success {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
}

/* Dark overlay */
.overlay-success {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Content wrapper */
.content-wrapper-success {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header section */
.header-section-success {
    text-align: center;
    margin-bottom: 4rem;
}

.main-heading-success {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.subtitle-success {
    font-size: 1.25rem;
    color: white;
    max-width: 48rem;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Carousel container */
.carousel-container-success {
    position: relative;
    overflow: hidden;
}

.carousel-track-success {
    display: flex;
    animation: infinite-scroll-success 60s linear infinite;
}

/* Glass morphism card styling */
.glass-card-success {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card-success:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Testimonial card specific styling */
.testimonial-card-success {
    flex: none;
    width: 20rem;
    margin: 0 1rem;
    border-radius: 1rem;
    padding: 2rem;
}

/* Profile header */
.profile-header-success {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-success {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
}

.profile-info-success {
    margin-left: 1rem;
}

.name-success {
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.designation-success {
    color: rgb(229, 231, 235);
    font-size: 0.875rem;
}

/* Rating section */
.rating-section-success {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.star-success {
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(251, 191, 36);
    margin-right: 0.25rem;
}

/* Testimonial text */
.testimonial-text-success {
    color: rgb(229, 231, 235);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Stats grid */
.stats-grid-success {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item-success {
    padding: 0.5rem;
}

.stat-number-success {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label-success {
    font-size: 0.875rem;
    color: rgb(209, 213, 219);
}

/* CTA section */
.cta-section-success {
    text-align: center;
    margin-top: 3rem;
}

.cta-link-success {
    text-decoration: none;
}

/* Glass button styling */
.glass-button-success {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glass-button-success:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-icon-success {
    margin-left: 0.5rem;
}

/* Animation keyframes */
@keyframes infinite-scroll-success {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.carousel-track-success:hover {
    animation-play-state: paused;
}

/* Responsive design */
@media (max-width: 768px) {
    .success-section-success {
        padding: 3rem 0;
    }

    .main-heading-success {
        font-size: 2rem;
    }

    .subtitle-success {
        font-size: 1.125rem;
    }

    .testimonial-card-success {
        width: 18rem;
        padding: 1.5rem;
    }

    .glass-card-success {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .avatar-success {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }

    .glass-button-success {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper-success {
        padding: 0 1rem;
    }

    .testimonial-card-success {
        width: 16rem;
        margin: 0 0.5rem;
    }

    .stats-grid-success {
        gap: 0.5rem;
    }
}






/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .counter-card {
        padding: 1rem;
    }

    .service-card,
    .pricing-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .gradient-primary,
    .gradient-secondary {
        background: var(--neutral-black);
    }

    .text-gray-600 {
        color: var(--neutral-black);
    }
}

/* Print Styles */
@media print {

    .no-print,
    header,
    footer,
    #mobile-menu {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}