
/*========== Theam Css =========*/


:root {
  /*--primary-color: #f91942;*/
  --primary-color: #F9197C;
    font-family: Partyvillas LarkenItalic Ck, Inter, sans-serif !important;
}

.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-primary:hover {
  background-color: #d5163a;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 0.3s ease-in-out;
}

@media (hover: none), (pointer: coarse) {
  *:hover {
    
    border-color: inherit !important;
    box-shadow: none !important;
    /*transform: none !important;*/
  }
}



/*========== Contact Card Css =========*/

/* Contact Card Section */
.contact-card-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d5163a 50%, #b91c3c 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(249, 25, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Left Side Content */
.contact-content {
    flex: 1;
    color: white;
    z-index: 2;
    position: relative;
}

.contact-title {
    font-size: 2rem;
    /* font-weight: 800; */
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 400;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-phone-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
    font-size: 1rem;
}

.contact-phone-number {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone-number:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

/* Right Side Action */
.contact-action {
    z-index: 2;
    position: relative;
}

.contact-enquiry-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-enquiry-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

.contact-enquiry-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-enquiry-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-enquiry-btn:hover i {
    transform: translateX(3px);
}

/* Enquiry Modal */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.enquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.enquiry-modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enquiry-modal-header {
    background: linear-gradient(135deg, var(--primary-color), #d5163a);
    color: white;
    padding: 24px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enquiry-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.enquiry-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Enquiry Form */
.enquiry-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-input {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

textarea.form-input {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.enquiry-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #d5163a);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 25, 66, 0.3);
}

.enquiry-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 30px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .contact-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .contact-phone {
        justify-content: center;
        font-size: 1.1rem;
    }

    .contact-enquiry-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .enquiry-modal-content {
        margin: 10px;
        max-width: none;
    }

    .enquiry-form {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-text {
        font-size: 0.95rem;
    }

    .contact-enquiry-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .enquiry-modal-header {
        padding: 20px 24px;
    }

    .enquiry-modal-header h3 {
        font-size: 1.3rem;
    }
}




/*================= Custom CSS =================*/

/* Primary Color Variables */
:root {
  /*--primary-color: #f91942;*/
  --primary-color: #F9197C;
}

/* Primary Color Classes */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary\/90 {
  background-color: rgba(249, 25, 66, 0.9) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.bg-pink-50 {
  background-color: #fdf2f8 !important;
}

/* Disable scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}




/*=============== Global CSS ==================*/

/* Global Form Styles */
.form-container {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #64748b;
}

/* Form Fields */
.form-field {
    margin-bottom: 20px;
}

.form-field-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.form-label-inline {
    width: 35%;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    flex-shrink: 0;
}

.form-input-wrapper {
    width: 65%;
}

.form-input-wrapper-full {
    width: 100%;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Event Type Selection */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.event-type-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.event-type-card:hover {
    border-color: var(--primary-color);
    background: rgba(249, 25, 66, 0.05);
    transform: translateY(-2px);
}

.event-type-card.selected {
    border-color: var(--primary-color);
    background: rgba(249, 25, 66, 0.1);
    box-shadow: 0 4px 12px rgba(249, 25, 66, 0.2);
}

.event-type-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    display: block;
}

.event-type-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #d5163a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 25, 66, 0.3);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #4b5563;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.btn-full {
    width: 100%;
}

.btn-loading {
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Steps */
.form-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.form-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    margin: 0 4px;
}

.form-step.active {
    background: var(--primary-color);
    color: white;
}

.form-step.completed {
    background: #10b981;
    color: white;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.form-actions-center {
    justify-content: center;
}

.form-actions-end {
    justify-content: flex-end;
}

/* Error States */
.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-input.error, .form-select.error, .form-textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.error:focus, .form-select.error:focus, .form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success States */
.form-success {
    color: #10b981;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-input.success, .form-select.success, .form-textarea.success {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: #10b981;
}

.toast.error {
    background: #ef4444;
}

.toast.info {
    background: var(--primary-color);
}

.toast.warning {
    background: #f59e0b;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
        border-radius: 12px;
    }
    
    .form-field-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    
    .form-label-inline {
        width: 100%;
    }
    
    .form-input-wrapper {
        width: 100%;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .event-type-grid {
        gap: 8px;
    }
    
    .event-type-card {
        padding: 12px 8px;
    }
    
    .event-type-icon {
        width: 32px;
        height: 32px;
    }
    
    .event-type-title {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 16px;
        margin: 10px;
    }
    
    .event-type-icon {
        width: 28px;
        height: 28px;
    }
    
    .event-type-title {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/*========== Footer Css =========*/


/* Footer Main Container */
.crazy-footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

/* Animated Background */
.footer-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), rgba(249, 25, 66, 0.3));
    animation: float-around 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 20s;
    animation-direction: reverse;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
    animation-delay: -20s;
    animation-duration: 40s;
}

@keyframes float-around {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateX(100px) translateY(-50px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateX(200px) translateY(0) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateX(100px) translateY(50px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Main Footer Content */
.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    color: white;
}

/* Brand Section */
.footer-brand {
    animation: slideInLeft 1s ease-out;
}

.brand-logo {
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(45deg, white, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--social-color);
    transform: translateY(-5px) rotate(360deg) scale(1.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer Sections */
.footer-section {
    animation: slideInUp 1s ease-out;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Newsletter Section */
.footer-newsletter {
    animation: slideInRight 1s ease-out;
}

.newsletter-text {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    margin-bottom: 30px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #d5163a;
    transform: scale(1.1);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(249, 25, 66, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #d5163a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(249, 25, 66, 0.6);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 45px;
        border-radius: 10px;
    }
}



/*============== Home Page Css ==================*/

/* Services Section */
.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 430px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Container (40% height) */
.image-container {
    position: relative;
    height: 60%;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

/* Content Container (60% height) */
.content-container {
    position: relative;
    height: 50%;
    padding: 24px 20px 20px;
    background: white;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    z-index: 2;
}

/* Service Title */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

/* Features Grid (50/50 layout) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: calc(100% - 60px);
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #4b5563;
    padding: 4px 0;
}

.feature-item i {
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
}

/* Hover Effects */
.service-card:hover .feature-item {
    color: #374151;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        height: 360px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .content-container {
        padding: 20px 16px 16px;
        border-radius: 16px 16px 0 0;
        margin-top: -16px;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 14px;
        text-align: center;
    }

    .features-grid {
        gap: 10px;
        height: calc(100% - 55px);
    }

    .features-column {
        gap: 8px;
    }

    .feature-item {
        font-size: 0.875rem;
        gap: 8px;
        padding: 4px 0;
        line-height: 1.3;
        display: flex;
        align-items: flex-start;
    }

    .feature-item i {
        font-size: 0.875rem;
        width: 16px;
        margin-top: 1px;
        flex-shrink: 0;
    }

    .feature-item span {
        flex: 1;
        word-wrap: break-word;
    }
}

@media (max-width: 640px) {
    .service-card {
        height: 380px;
    }

    .content-container {
        padding: 20px 16px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        height: calc(100% - 50px);
    }

    .features-column {
        gap: 8px;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 4px 0;
        line-height: 1.3;
        display: flex;
        align-items: flex-start;
        gap: 6px;
    }

    .feature-item i {
        font-size: 0.75rem;
        width: 12px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .feature-item span {
        flex: 1;
        word-wrap: break-word;
        line-height: 1.3;
        font-size: 16px;
    }
}

/* Mobile specific improvements */
@media (max-width: 480px) {
    .service-card {
        height: 380px;
        margin-bottom: 20px;
    }

    .content-container {
        padding: 18px 14px 14px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        height: calc(100% - 48px);
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 3px 0;
        gap: 6px;
        line-height: 1.2;
        min-height: 20px;
        display: flex;
        align-items: flex-start;
    }

    .feature-item i {
        font-size: 0.7rem;
        width: 10px;
        margin-top: 1px;
        flex-shrink: 0;
    }

    .feature-item span {
        flex: 1;
        word-break: break-word;
        hyphens: auto;
        font-size: 16px;
        line-height: 1.2;
    }
}

/* Animation for cards appearing */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header Styles */
.services-section h2 {
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Loading Animation */
.service-card.loading {
    opacity: 0.7;
}

.service-card.loading .service-image {
    filter: blur(2px);
}

/* Accessibility */
.service-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.service-card:focus:not(:focus-visible) {
    outline: none;
}

/* Categories Section */
.category-card {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 120px;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: #f1f5f9;
}

.category-content {
    display: flex;
    height: 100%;
    position: relative;
}

/* Content Area (70%) */
.content-area {
    width: 60%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.category-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
}

/* Image Area (30%) */
.image-area {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 120%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    right: -20%;
    /* border-radius: 0 16px 0 50px; */
    transition: all 0.4s ease;
    z-index: 1;
    clip-path: ellipse(99% 145px at 100% 50%);
}

.category-card:hover .category-image {
    transform: scale(1.05);
    right: -15%;
}

/* Hover Effects */
.category-card:hover .category-title {
    color: var(--primary-color);
}

.category-card:hover .category-description {
    color: #475569;
}

/* Responsive Design for Categories */
@media (max-width: 768px) {
    .category-card {
        height: 120px;
        margin-bottom: 16px;
    }

    .content-area {
        padding: 20px 16px;
    }

    .category-title {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .category-description {
        font-size: 16px;
        line-height: 1.4;
    }

    .category-image {
        border-radius: 0 12px 0 40px;
    }
}

@media (max-width: 640px) {
    .category-card {
        height: 120px;
        border-radius: 12px;
    }

    .content-area {
        padding: 16px 14px;
    }

    .category-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .category-description {
        font-size: 16px;
        line-height: 1.3;
    }

    .category-image {
        border-radius: 0 12px 0 30px;
        width: 110%;
        height: 110%;
        top: -5%;
        right: -10%;
    }

    .category-card:hover .category-image {
        right: -8%;
    }
}

@media (max-width: 480px) {
    .category-card {
        height: 120px;
    }

    .content-area {
        padding: 14px 12px;
    }

    .category-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .category-description {
        font-size: 16px;
        line-height: 1.2;
    }

    .category-image {
        border-radius: 0 10px 0 25px;
    }
}

/* Category Animation */
.category-card {
    opacity: 0;
    transform: translateY(20px);
    animation: categoryFadeIn 0.6s ease forwards;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.category-card:nth-child(5) {
    animation-delay: 0.5s;
}

.category-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes categoryFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {

    .service-card,
    .category-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .service-card:hover,
    .category-card:hover {
        transform: none;
    }
}

