
/*** Enhanced Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

.spinner-grow {
    color: white !important;
}
/*** Enhanced Spinner End ***/

/* ==========================================
   HERO SECTION STYLES - MOVED FROM INLINE
   ========================================== */

/* Enhanced Hero Section Styles */
.gov-hero-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.gov-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(211, 191, 151, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(211, 191, 151, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: white !important;
    border: 1px solid rgba(211, 191, 151, 0.3);
    box-shadow: 0 4px 15px rgba(211, 191, 151, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 191, 151, 0.3);
    background: linear-gradient(135deg, #E0CB9F, #D3BF97);
}

.hero-badge span {
    color: white !important;
    font-weight: 500;
}

/* Layout */
.text-column {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    min-height: 100vh;
    z-index: 2;
}

.text-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(211, 191, 151, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(211, 191, 151, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.image-column {
    flex: 0 0 58%;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.image-overlay {
    position: relative;
    height: 100%;
}

.img-full {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02) contrast(1.02);
}

.img-full:hover {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

/* Floating Card Animation */
.floating-card {
    position: absolute;
    bottom: 90px;
    left: 50px;
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 18px;
    animation: float 3s ease-in-out infinite;
    max-width: 300px;
    border: 1px solid rgba(211, 191, 151, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Text Styling */
.text-wrapper {
    padding: 60px 40px;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.headline1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.15;
    margin: 8px 0;
    text-shadow: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.headline1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D3BF97, #C4A975);
    transition: width 0.6s ease;
}

.headline1:hover::after {
    width: 60px;
}

.description {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 30px 0;
    opacity: 0.9;
    max-width: 90%;
    font-weight: 400;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(211, 191, 151, 0.15);
}

.trust-item {
    text-align: center;
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: default;
    padding: 10px;
    border-radius: 8px;
}

.trust-item:hover {
    transform: translateY(-3px);
    background: rgba(211, 191, 151, 0.05);
    box-shadow: 0 5px 15px rgba(211, 191, 151, 0.1);
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ==========================================
   CONSULTATION SECTION STYLES - MOVED FROM INLINE
   ========================================== */

.hero-alwadha {
    background-color: #057560;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    min-height: 600px;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-text {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #057560;
    min-height: 600px;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-image {
    flex: 0 0 60%;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-img-full {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-text-wrapper {
    padding: 40px;
    max-width: 620px;
}

.hero-title11 .hero-subline11,
.hero-title11 .hero-headline11 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-top: 20px;
}

/* Consultation Section Responsive */
@media (min-width: 992px) {
    .hero-title11 .hero-subline11,
    .hero-title11 .hero-headline11 {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 1400px) {
    .hero-title11 .hero-subline11,
    .hero-title11 .hero-headline11 {
        font-size: 4rem;
    }
    .hero-description {
        font-size: 1.3rem;
    }
}

@media (min-width: 1920px) {
    .hero-title11 .hero-subline11,
    .hero-title11 .hero-headline11 {
        font-size: 4.4rem;
    }
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (min-width: 2560px) {
    .hero-title11 .hero-subline11,
    .hero-title11 .hero-headline11 {
        font-size: 5.1rem;
        line-height: 1.3;
    }
    .hero-description {
        font-size: 1.8rem;
        line-height: 1.8;
    }
}

@media (max-width: 992px) {
    .hero-text,
    .hero-image {
        flex: 0 0 100%;
    }
    .hero-text-wrapper {
        padding: 24px;
        text-align: center;
    }
    .hero-image {
        margin-top: 20px;
    }
    .hero-img-full {
        height: auto;
        object-fit: contain;
    }
}

/* ==========================================
   MISSING STYLES FROM INLINE CSS
   ========================================== */

/* Enhanced Button Styling */
.btn-container {
    margin-top: 30px;
    padding-top: 10px;
    height: 95px;
    perspective: 1200px;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.btn-action {
    display: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #CF2F2F, #B82626);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(207, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-action::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;
}

.btn-action:hover::before {
    left: 100%;
}

.btn-action.active {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Fixed Navbar Enhancement */
.navbar.fixed-top {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1030;
}

.contact-now-btn {
    background: linear-gradient(135deg, #000, #333) !important;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}

.contact-now-btn:hover {
    background: linear-gradient(135deg, #D3BF97, #C4A975) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   ENHANCED RESPONSIVE DESIGN IMPROVEMENTS
   ========================================== */

/* Mobile-first improvements */
@media (max-width: 576px) {
    /* Hero Section Mobile */
    .gov-hero-modern {
        padding-top: 80px;
        min-height: 75vh;
    }

    .headline1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }

    .text-wrapper {
        padding: 30px 20px;
        text-align: center;
    }

    .description {
        font-size: 1rem !important;
        margin-top: 20px;
    }

    /* Consultation Section Mobile */
    .hero-title11 .hero-subline11,
    .hero-title11 .hero-headline11 {
        font-size: 1.8rem !important;
    }

    .hero-description {
        font-size: 0.9rem !important;
    }

    .hero-text-wrapper {
        padding: 20px 15px;
    }

    /* Partners Section Mobile */
    .partner-logos {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .logo-carousel-wrapper {
        height: 100px;
    }

    .logo-item {
        width: 100px;
        height: 80px;
        padding: 10px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 40px 0;
    }

    .service-carousel-card {
        flex: 0 0 140px;
        padding: 20px 15px;
    }

    .service-carousel-card h4 {
        font-size: 1rem;
    }

    .service-carousel-card p {
        font-size: 0.8rem;
    }

    /* Trust Indicators Mobile */
    .trust-indicators {
        gap: 15px;
        margin-top: 30px;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    /* Button Container Mobile */
    .btn-container {
        height: 80px;
        margin-top: 25px;
    }

    .btn-action {
        font-size: 1rem;
        padding: 12px 20px;
    }

    /* Navbar Mobile */
    .navbar-brand img {
        height: 80px !important;
    }

    .contact-now-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Tablet improvements */
@media (min-width: 577px) and (max-width: 991px) {
    .headline1 {
        font-size: 2.8rem !important;
    }

    .hero-title11 .hero-subline11,
    .hero-title11 .hero-headline11 {
        font-size: 2rem !important;
    }

    .service-carousel-card {
        flex: 0 0 180px;
    }

    .logo-item {
        width: 140px;
        height: 100px;
    }
}

/* Large screen optimizations */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

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

    .logo-item {
        width: 180px;
        height: 140px;
    }

    .service-carousel-card {
        flex: 0 0 280px;
        padding: 35px 25px;
    }

    .trust-number {
        font-size: 2.2rem;
    }
}

/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .logo-carousel-track,
    .services-carousel-track {
        animation: none !important;
    }

    .floating-card {
        animation: none !important;
    }

    .btn-action {
        animation: none !important;
    }
}

/* Simplified hardware acceleration - removed aggressive transforms */
.logo-carousel-track,
.services-carousel-track {
    will-change: transform;
}

/* Lazy loading optimization */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Intersection Observer optimization */
.observe-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.observe-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================== */

/* Focus management */
*:focus {
    outline: 2px solid #D3BF97;
    outline-offset: 2px;
}

/* Skip links for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
    z-index: 100000;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-action {
        border: 2px solid;
    }

    .logo-item {
        border: 2px solid #000;
    }

    .floating-card {
        border: 2px solid #000;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Touch target improvements for mobile */
.btn-action,
.contact-now-btn,
.logo-item {
    min-height: 44px;
    min-width: 44px;
}

/* ==========================================
   FINAL CLEANUP AND FIXES
   ========================================== */

/* Remove redundant styles and fix flex issues */
.services-carousel-container {
    -webkit-flex-direction: row;
    flex-direction: row;
}

/* Ensure consistent box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Optimize loading states */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Global Typography */
html, body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

/* Enhanced Utility Classes */
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

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

/* Smooth Animations */
.wow,
.animated {
    animation-duration: 1s !important;
    animation-fill-mode: both;
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #C4A975, #B8935F);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.back-to-top i {
    color: white;
    font-size: 16px;
}





















/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
/* .footer {
  background-color: #000 !important;
  color: #fff;
}


.footer .footer-item a.text-white:hover {
    color: var(--bs-primary) !important;
} */
/*** Footer End ***/












/* Enhanced Footer Section */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.9)), url('../img/bg7.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0 30px 0;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 191, 151, 0.1), rgba(196, 169, 117, 0.1));
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Footer Item Styling */
.footer-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.footer-item img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-item h4 {
    color: #D3BF97;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
}

.footer-item h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    border-radius: 2px;
}

/* Enhanced Footer Links */
.footer-item a {
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-item a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #D3BF97;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-item a:hover {
    color: #D3BF97 !important;
    transform: translateX(5px);
}

.footer-item a:hover::before {
    transform: translateX(3px);
}

/* Enhanced Social Media Icons */
.btn-sm-square {
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    color: white !important;
    border: none;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

.btn-sm-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-sm-square:hover::before {
    left: 100%;
}

.btn-sm-square:hover {
    color: white !important;
    background: linear-gradient(135deg, #C4A975, #B8935F);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(211, 191, 151, 0.4);
}

/* Specific Social Media Colors on Hover */
.btn-sm-square:hover .fa-facebook-f {
    color: white !important;
}

.btn-sm-square:hover .fa-instagram {
    color: white !important;
}

.btn-sm-square:hover .fa-linkedin-in {
    color: white !important;
}

.btn-sm-square:hover .fa-whatsapp {
    color: white !important;
}

/* Footer Contact Info Enhancement */
.footer-contact-info {
    background: rgba(211, 191, 151, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #D3BF97;
    margin-bottom: 20px;
}

.footer-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact-info i {
    color: #D3BF97;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Footer Copyright */
.footer-copyright {
    border-top: 1px solid rgba(211, 191, 151, 0.3);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #ccc;
}

.footer-logo {
    font-size: 24px;
    color: #D3BF97;
    font-weight: 700;
    margin-bottom: 15px;
}















/* Enhanced Modal Styling */
.modal-request-input::placeholder {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.modal-request-input {
    height: auto;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.modal-request-input:focus {
    border-color: #D3BF97;
    box-shadow: 0 0 0 0.2rem rgba(211, 191, 151, 0.25);
    outline: none;
}

.modal-request-header {
    background: linear-gradient(135deg, #D3BF97, #C4A975) !important;
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-request-title {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.modal-request-content {
    border-radius: 0 0 10px 10px !important;
    padding: 2rem !important;
    background: #fafafa;
}

.modal-request-header .btn-close {
    display: none !important;
}

.modal-request-footer .btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-request-btn-cancel {
    background: #6c757d;
    color: white;
    border: none;
}

.modal-request-btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}

.modal-request-btn-submit {
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    color: white;
    border: none;
}

.modal-request-btn-submit:hover {
    background: linear-gradient(135deg, #C4A975, #B8935F);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 191, 151, 0.4);
}




give me the social meida scation not hover need give me static type also hover then show need only icon the social media icon show static type 



/* MUSAFIR ADDED */

/* Use Roboto font globally */
body {
  font-family: 'Roboto', sans-serif;
}

/* Navbar */
.navbar {
  font-family: 'Roboto', sans-serif;
  background-color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

.navbar-brand img {
  height: 120px; /* ← Increased for better visibility */
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0rem;
}


/* Mobile view adjustment */
/* Default (base) */
.navbar-brand img {
  height: 120px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}


.navbar-toggler {
    width: 35px;
    height: 35px;
    padding: 0.25rem;
    position: relative;  /* for positioning */
  }
  
  .navbar-toggler-icon {
    background-size: 20px 20px;   /* smaller icon size */
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;      /* explicitly set width */
    height: 20px;     /* explicitly set height */
    display: block;
    margin: auto;     /* centers inside the button */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: space-between;
  }
  

@media (min-width: 992px) {
  .row.g-0 {
    min-height: 732px;
  }
}
.object-fit-cover {
  object-fit: cover;
}


/* Extra Small Devices (phones) */
@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 60px;
  }
}

/* Small Devices (portrait tablets and large phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand img {
    height: 70px;
  }
}

/* Medium Devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand img {
    height: 100px;

  }

}

/* Large Devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-brand img {
    height: 90px;
  }
}

/* Extra Large Devices (large desktops) */
@media (min-width: 1200px) and (max-width: 1919.98px) {
  .navbar-brand img {
    height: 100px;
  }
}

/* Ultra-Wide Screens (e.g., 2560px monitors) */
@media (min-width: 1920px) {
  .navbar-brand img {
    height: 120px;
  }
}







/* Nav Link with green underline hover + active */
.nav-link {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.5px;
  margin-right: 1.2rem;
  color: #333 !important;
  transition: color 0.4s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #28a745;
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: #28a745 !important;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #28a745 !important;
  font-weight: 800;
}

.nav-link.active::after {
  width: 100%;
}

/* Contact Button */
.btn-contact {
  padding: 0.5rem 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 50px;
  background-color: #000000;
  color: white;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Mobile nav style */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
  }
}





  
















  @media (max-width: 991px) {
    .navbar-collapse {
      background-color: #f8f9fa;
      padding: 1rem;
      border-radius: 0.5rem;
    }
  
    .navbar-nav .nav-link {
      margin-right: 0 !important;
      padding: 0.5rem 1rem;
    }
  
    .navbar {
      padding: 1rem;
    }
  }
  

  /* pasted  */
/* ===== YOUR ORIGINAL STYLE - PRESERVED ===== */
.stroke-icon {
    font-size: 2.5rem;
    color: goldenrod;
    background-color: white;
    border-radius: 50%;
    padding: 0.75rem;
    border: 2px solid goldenrod;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    transition: color 0.3s ease-in-out, transform 0.3s ease;
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.card:hover .stroke-icon {
    color: white;
    background-color: goldenrod;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.card-body {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}
.card .overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: goldenrod;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    transition: left 0.4s ease-in-out;
}
.card:hover .overlay {
    left: 0;
}
.card .overlay p {
    margin-bottom: 1rem;
    opacity: 1;
    transition: opacity 0.2s ease-in-out 0.2s;
}
.card .overlay .btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out 0.3s;
}
.card:hover .overlay .btn {
    opacity: 1;
}

/* ===== MINIMAL FIXES FOR BROWSER ISSUES ===== */
/* 1. Ensure equal height cards */
.card {
    height: 100%;
    display: flex; /* Added only this */
}

/* 2. Fix Safari flexbox rendering */
@supports (-webkit-touch-callout: none) {
    .card {
        -webkit-flex-direction: column;
    }
}

/* 3. Make columns flex containers */


/* 4. Your original media queries - unchanged */
@media (min-width: 576px) {
    .col-6.col-md-4.col-lg-3 {
        flex: 1 0 48%;
        max-width: 48%;
    }
}
@media (min-width: 1200px) {
    .col-6.col-md-4.col-lg-3 {
        flex: 1 0 18%;
        max-width: 18%;
    }
}
  
  /* corosal css for images in index.html */

.partner-logos {
    background-image: url('../img/bg2.jpg'); /* Fixed correct path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: rgb(0, 0, 0);
    font-size: 2.5rem;
    font-weight: 700; /* Changed from 300 to 500 (Medium) */
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.logo-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 150px;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    display: flex;
    align-items: center;
}

.logo-carousel-track {
    animation: scroll 60s linear infinite;
    animation-play-state: running; /* Always running - no scroll trigger needed */
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
    min-width: 100%;
}

/* Initially pause services section animations until hero image triggers them */
.services-carousel-track {
    animation-play-state: paused !important;
}

.services-section.animate-triggered .services-carousel-track {
    animation-play-state: running !important;
}

/* Also control services section carousel in HTML inline styles */
.services-section:not(.animate-triggered) .services-carousel-track {
    animation-play-state: paused !important;
}

/* Control other section animations with scroll trigger */
.animate-triggered {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Initially hide sections until triggered */
.services-section:not(.animate-triggered) {
    opacity: 0.3;
    transform: translateY(20px);
}

/* Smooth transition for triggered sections */
.services-section {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Additional sections that should wait for hero trigger */
.mission-section:not(.animate-triggered) {
    opacity: 0.3;
    transform: translateY(20px);
}

.mission-section {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Ensure partners section is always fully visible and static */
.partner-logos {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

/* Stagger section animations for smooth user experience */
.services-section.animate-triggered {
    animation-delay: 0.2s;
}

.mission-section.animate-triggered {
    animation-delay: 0.4s;
}

.logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    background: white;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 1.4s ease;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Center zoom effect */
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 140px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* z-index removed for normal document flow */
}

.logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* z-index removed for normal document flow */
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-item {
        width: 140px;
        height: 100px;
        padding: 15px;
    }
    
    .logo-carousel-track {
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-item.center-zoom {
        transform: scale(1.2);
    }
  }

  

/* NAVBAR TOGGLER ICON */




/*** About Section Font Styles ***/
/*** Font Definitions ***/
/* From Google Fonts import in HTML */
body {
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.display-4 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

/*** About Section Styles ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}
.mission-vision-modern {
background: linear-gradient(145deg, #ffffff, #ced0d6);

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mv-glass-card {
  background: #ffffff; /* white background */
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.mv-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mv-glass-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.bg-breadcrumb .breadcrumb {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
    font-family: "Inter", sans-serif;
}

.bg-breadcrumb .display-4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: white;
}

/* Main About Content */
.about h4.text-primary {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.about .display-4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about .row.g-4.mb-4 a {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.about .row.g-4.mb-4 a h4 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: var(--bs-dark);
}

.about p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.about .text-dark.mb-4 p.fs-5 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Stats Box */
.about .bg-primary.p-4 h4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.about .bg-primary.p-4 p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

/* Banner Section */
.banner h4.text-white {
    font-family: "Jost", sans-serif;
    font-weight: 600;
}
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg6.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .display-4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}


/* FAQ Section */
.faq-section {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.faq-section h4.text-primary {
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.faq-section .display-4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
}

.faq-section .accordion-button {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-section .accordion-body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

/* Team Section */
.team h4.text-primary {
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.team .display-4 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
}

.team .team-content h4 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.team .team-content p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

/*** Animations ***/
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wow.fadeInLeft {
    animation: fadeInLeft 1s;
}

.wow.fadeInRight {
    animation: fadeInRight 1s;
}

/*** Responsive Adjustments ***/
@media (max-width: 768px) {
    .about .display-4 {
        font-size: 2rem;
    }
    
    .banner .display-4 {
        font-size: 2rem;
    }
    
    .projects .display-4 {
        font-size: 2rem;
    }
    
    .faq-section .display-4 {
        font-size: 2rem;
    }
    
    .team .display-4 {
        font-size: 2rem;
    }
}


/* /////service//// */
.alert-header {
  background: url('../img/bg6.jpg') center center / cover no-repeat;
  min-height: 360px;
  position: relative;
  z-index: 0;
}

.alert-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.alert-header > .container {
  position: relative;
  z-index: 2;
}

  body {
    font-family: 'Inter', sans-serif;
  }

  .modal-service-content {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #8d5a5a;
  }

  .modal-service-header {

    color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 1rem 1.25rem;
    text-align: center;
    position: relative;
  }

  .modal-service-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 auto;
    width: 100%;
    text-transform: uppercase;
  }

  .modal-service-body {
    padding: 1.5rem;
  }

  .modal-service-footer {
    border-top: 1px solid #eee;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: center;
  }

  .modal-service-input,
  .modal-service-textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    padding: 0.6rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
  }

  .modal-service-textarea {
    resize: vertical;
    height: 100px;
  }

  .modal-service-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border: none;
    background-color: #d4a762;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
  }

  .modal-service-btn:hover {
    background-color: #b88736;
  }

  #modal-status-msg {
    font-size: 0.9rem;
    text-align: center;
    color: green;
    margin-top: 0.5rem;
  }


  /*** Projects Section Start ***/
.projects {
    background: var(--bs-light);
    padding: 5rem 0;
}

.projects h4.text-primary {
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Jost', sans-serif;
}

.projects h1.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Jost', sans-serif;
}


.projects p.mb-5 {
    margin-bottom: 3rem !important;
    color: #666;
    font-family: 'Inter', sans-serif;
}

/* Navigation Tabs */
.projects .nav {
    flex-direction: column;
}

.projects .nav-item {
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
    transition: all 0.3s ease;
    border-radius: 5px;
    overflow: hidden;
    background: var(--bs-white);
}

.projects .nav-item:hover {
    transform: translateY(-5px);
}

.projects .nav-item a {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

/* Projects Icon */
.projects .projects-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-white) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}

/* Projects Content */
.projects .tab-content {
    height: 100%;
}

.projects-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.projects-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.projects-item:hover img {
    transform: scale(1.05);
}

.projects-content {
    background: white;
    padding: 1.5rem;
}

.projects-content h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bs-dark);
    font-family: 'Jost', sans-serif;
}

.projects-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.projects-content .btn-primary {
  
    background: var(--bs-primary);
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
        color: white !important; /* Force white text */
}

.projects-content .btn-primary:hover {
  
    background: var(--bs-dark);
}

/* Animation */
.wow.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 1s;
}

.wow.fadeInRight {
    animation-name: fadeInRight;
    animation-duration: 1s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .projects .row {
        flex-direction: column;
    }
    
    .projects .col-lg-5,
    .projects .col-lg-7 {
        width: 100%;
        max-width: 100%;
    }
    
    .projects .nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .projects .nav-item {
        width: calc(50% - 0.5rem);
        margin: 0.25rem;
    }
}

@media (max-width: 767.98px) {
    .projects .nav-item {
        width: 100%;
    }
    
    .projects h1.display-4 {
        font-size: 2rem;
    }
}
/*** Projects Section End ***/

/* ==========================================
   MODERN SERVICES SECTION FROM V2
   ========================================== */

/* Services Section */
.services-section {
    padding: 20px 0 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Removed ::before overlay that was causing parallax effect */

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(211, 191, 151, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    border-radius: 20px 20px 0 0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
    font-size: 15px;
}

.service-features i {
    color: #D3BF97;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    gap: 10px;
}

.service-btn:hover {
    background: linear-gradient(135deg, #C4A975, #B8974F);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 169, 117, 0.3);
}

.service-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-title {
        font-size: 20px;
    }
}

/* Modern Footer Styles from V2 */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
    margin: 0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #D3BF97, #C4A975);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #D3BF97;
    text-decoration: none;
}

.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.contact-info i {
    color: #D3BF97;
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0 0 0;
    margin: 0 !important;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #D3BF97;
    text-decoration: none;
}

/* Responsive Footer Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* End Modern Footer Styles */

/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    z-index: 99999 !important;
    transform: none !important;
}

.whatsapp-btn {
    display: flex !important;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative !important;
    transform: none !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-text {
    font-size: 14px;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 16px;
        left: 16px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
}

/* ===========================================
   ENHANCED ANIMATIONS & UI IMPROVEMENTS
   =========================================== */

/* Enhanced Smooth Animations with Layout Stability */
.wow,
.animated {
    animation-duration: 0.8s !important;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Prevent layout shifts during animations */
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

/* Prevent initial flash and layout shifts */
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Page load stability */
.page-container {
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-container.loaded {
    opacity: 1;
}

/* Prevent content jumping during load */
.container,
.container-fluid {
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden;
}

/* Animation States for Staggered Effects with Layout Stability */
.trust-item,
.service-carousel-card {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Prevent layout shifts */
    backface-visibility: hidden;
    will-change: transform, opacity;
    /* Reserve space to prevent jumping */
    min-height: 80px;
}

.animated .trust-item,
.animated .service-carousel-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Fix for scroll-triggered elements */
.scroll-element {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}

/* Prevent jumping during WOW.js animations */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* Fix for hero section layout stability */
/* Removed transform and z-index to fix parallax effect */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

.animate__animated {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    will-change: transform, opacity;
}

/* Enhanced Navbar with Scroll Effects */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar Brand Animation */
.navbar-brand {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Enhanced Dynamic Button Section */
.btn-container {
    margin-top: 30px;
    padding-top: 10px;
    position: relative;
    overflow: hidden;
    height: 95px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Enhanced Robust Button Styles with Premium Curves */
.btn-action {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    padding: 22px 40px;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px) rotateX(15deg);
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.15);
    min-width: 350px;
    text-align: left;
    background-clip: padding-box;
}

/* Enhanced Button Categories with Premium Gradients */
.btn-action.primary-btn {
    background: linear-gradient(145deg,
        #FF7B7B 0%,
        #FF6B6B 15%,
        #EE5A52 30%,
        #E04848 45%,
        #CF2F2F 60%,
        #B82626 75%,
        #A01E1E 90%,
        #8B1A1A 100%
    );
    box-shadow:
        0 20px 40px rgba(207, 47, 47, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 107, 0.2);
    border: 3px solid rgba(255, 123, 123, 0.3);
}

.btn-action.secondary-btn {
    background: linear-gradient(145deg,
        #7DEBA1 0%,
        #66D9A5 15%,
        #52C93F 30%,
        #42B883 45%,
        #2E8B57 60%,
        #228B22 75%,
        #1F7A1F 90%,
        #1A6B1A 100%
    );
    box-shadow:
        0 20px 40px rgba(46, 139, 87, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(102, 217, 165, 0.2);
    border: 3px solid rgba(125, 235, 161, 0.3);
}

.btn-action.tertiary-btn {
    background: linear-gradient(145deg,
        #9B8EFF 0%,
        #7B68EE 15%,
        #6A5ACD 30%,
        #5B4FE6 45%,
        #4169E1 60%,
        #1E90FF 75%,
        #0066CC 90%,
        #0056B3 100%
    );
    box-shadow:
        0 20px 40px rgba(65, 105, 225, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(123, 104, 238, 0.2);
    border: 3px solid rgba(155, 142, 255, 0.3);
}

/* Active Button State */
.btn-action.active {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
    animation: dynamicPulse 4s infinite ease-in-out;
}

/* Enhanced Button Structure */
.btn-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
    margin-right: 4px;
    transform-origin: center;
}

.btn-text {
    flex: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto', sans-serif;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: inherit;
    z-index: -1;
}

/* Advanced Premium Animations */
@keyframes dynamicPulse {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) scale(1);
        box-shadow:
            0 20px 40px rgba(207, 47, 47, 0.5),
            0 10px 20px rgba(0, 0, 0, 0.15),
            inset 0 2px 0 rgba(255, 255, 255, 0.25),
            inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    }
    25% {
        transform: translateY(-4px) rotateX(-3deg) scale(1.015);
        box-shadow:
            0 25px 50px rgba(207, 47, 47, 0.6),
            0 12px 25px rgba(0, 0, 0, 0.18),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.18);
    }
    50% {
        transform: translateY(-6px) rotateX(0deg) scale(1.02);
        box-shadow:
            0 30px 60px rgba(207, 47, 47, 0.7),
            0 15px 30px rgba(0, 0, 0, 0.2),
            inset 0 3px 0 rgba(255, 255, 255, 0.35),
            inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    }
    75% {
        transform: translateY(-4px) rotateX(3deg) scale(1.015);
        box-shadow:
            0 25px 50px rgba(207, 47, 47, 0.6),
            0 12px 25px rgba(0, 0, 0, 0.18),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.18);
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-2deg); }
    50% { transform: translateY(-4px) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(2deg); }
}

/* Enhanced Premium Hover Effects */
.btn-action:hover {
    transform: translateY(-12px) rotateX(-8deg) scale(1.08);
    text-decoration: none;
    color: #fff;
    border-width: 4px;
}

.btn-action.primary-btn:hover {
    background: linear-gradient(145deg,
        #FF8A8A 0%,
        #FF7575 15%,
        #FF6666 30%,
        #F55555 45%,
        #E04848 60%,
        #D63636 75%,
        #C72626 90%,
        #B01E1E 100%
    );
    box-shadow:
        0 30px 70px rgba(207, 47, 47, 0.8),
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 138, 138, 0.4);
    border-color: rgba(255, 138, 138, 0.5);
}

.btn-action.secondary-btn:hover {
    background: linear-gradient(145deg,
        #8BFAAB 0%,
        #7DEBA1 15%,
        #70E096 30%,
        #5DD685 45%,
        #42B883 60%,
        #32A373 75%,
        #268B22 90%,
        #1F7A1F 100%
    );
    box-shadow:
        0 30px 70px rgba(46, 139, 87, 0.8),
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(139, 250, 171, 0.4);
    border-color: rgba(139, 250, 171, 0.5);
}

.btn-action.tertiary-btn:hover {
    background: linear-gradient(145deg,
        #ABA1FF 0%,
        #9B8EFF 15%,
        #8A7DFF 30%,
        #7A6EF0 45%,
        #6A5ACD 60%,
        #5A4ABD 75%,
        #4A3AAD 90%,
        #3A2A9D 100%
    );
    box-shadow:
        0 30px 70px rgba(65, 105, 225, 0.8),
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(171, 161, 255, 0.4);
    border-color: rgba(171, 161, 255, 0.5);
}

.btn-action:hover .btn-glow {
    left: 100%;
}

.btn-action:hover .btn-icon {
    animation: iconBounce 0.6s ease;
    transform: scale(1.2) rotate(10deg);
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.3) rotate(-5deg); }
}

/* Entry Animations */
.btn-action.entering {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.btn-action.exiting {
    animation: slideOutToLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%) translateY(0) rotateX(15deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0) translateY(0) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%) translateY(0) rotateX(-15deg);
        opacity: 0;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .btn-container {
        height: 85px;
        perspective: 800px;
    }

    .btn-action {
        font-size: 1rem;
        padding: 18px 25px;
        min-width: 280px;
        border-radius: 22px;
        border-width: 2px;
    }

    .btn-icon {
        font-size: 1.2em;
    }

    .btn-text {
        letter-spacing: 0.3px;
    }

    /* Reduced animations for mobile */
    .btn-action:hover {
        transform: translateY(-6px) rotateX(-3deg) scale(1.04);
    }
}

@media (max-width: 480px) {
    .btn-container {
        height: 75px;
    }

    .btn-action {
        font-size: 0.95rem;
        padding: 16px 22px;
        min-width: 250px;
        border-radius: 20px;
    }

    .btn-icon {
        font-size: 1.1em;
    }
}

/* Enhanced Icons Visibility */
.bi, .fa, .fas, .fab {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon hover effects */
.service-icon-wrapper i,
.card-icon,
.trust-item i,
.footer-item i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-wrapper:hover i,
.card-icon:hover,
.trust-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Service Cards Animations */
.services-carousel-track {
    animation: scrollServices 30s linear infinite;
}

.services-carousel-track:hover {
    animation-play-state: paused;
}

/* Partner Logo Section - Simplified and Fixed */

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* Prevent broken image icons */
    background: transparent;
}

/* Fallback for missing images */
.logo-item img[src=""],
.logo-item img:not([src]),
.logo-item img[src*="placeholder"] {
    display: none;
}

.logo-item:empty,
.logo-item:has(img[src=""]),
.logo-item:has(img:not([src])) {
    display: none;
}

/* Alternative: Show placeholder for broken images */
.logo-item img {
    position: relative;
}

.logo-item img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    z-index: -1;
}

/* Placeholder content for empty logo items */
.logo-item:empty::before {
    content: 'Partner Logo';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
}

.logo-item:hover {
    transform: translate3d(0, 0, 0) scale(1.05);
    /* z-index removed for normal document flow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure only one keyframe animation exists */
/* The scroll animation is already defined above, removing duplicate */

/* Duplicate logos for seamless loop */
.logo-carousel-track::after {
    content: '';
    display: block;
    width: 100%;
}

/* Services Carousel Stability */
.services-carousel-track {
    animation: scrollServices 30s linear infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}

.services-carousel-track:hover {
    animation-play-state: paused;
}

/* Enhanced Floating Card */
.floating-card {
    animation: smoothFloat 4s ease-in-out infinite;
}

@keyframes smoothFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Enhanced Contact Button */
.contact-now-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    border-radius: 10px !important;
}

.contact-now-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mission & Vision Cards */
.mv-glass-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mv-glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Form Elements */
.form-control:focus,
.form-floating input:focus,
.form-floating textarea:focus {
    border-color: #D3BF97;
    box-shadow: 0 0 0 0.2rem rgba(211, 191, 151, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Social Media Icons */
.social-link:hover,
.btn-sm-square:hover {
    transform: translateY(-3px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Loading States with Glitch Prevention */
body.loading {
    overflow: hidden;
}

body.loading * {
    animation-play-state: paused !important;
    transition-duration: 0s !important;
}

body.page-loaded {
    overflow-x: hidden;
    overflow-y: auto;
}

body.page-loaded * {
    animation-play-state: running;
}

/* Prevent flash of unstyled content */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* Image loading stability */
img {
    display: block;
    max-width: 100%;
    height: auto;
    /* Prevent image jumping during load */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Carousel stability during load */
.owl-carousel {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Enhanced Section Spacing for Better Visual Flow */
section,
.container-fluid {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Add generous spacing between major sections */
.partner-logos,
.services-section,
.trust-indicators-section,
.about-section,
.hero-section,
.floating-card-section {
    margin-bottom: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer {
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 30px;
}

/* Ensure WOW.js animated elements are visible by default */
.wow {
    visibility: visible !important;
    animation-name: none !important;
}

/* Re-enable animations only when wow class is properly initialized */
.wow.animated {
    visibility: visible !important;
    animation-name: fadeInUp, fadeIn !important;
}

/* Hero section spacing */
/* Removed extra padding that was causing overlap */

/* Services section enhanced spacing */
.services-section {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 80px;
    margin-bottom: 100px;
}

/* Trust indicators section */
.trust-indicators-section {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Partner logos section */
.partner-logos {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Floating card section */
.floating-card-section {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Container padding enhancements */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Enhanced spacing for content blocks */
.content-block {
    margin-bottom: 60px;
}

.content-block + .content-block {
    margin-top: 80px;
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
        transform: translate3d(-468px, 0, 0);
    }
    100% {
        background-position: 468px 0;
        transform: translate3d(468px, 0, 0);
    }
}

/* Enhanced Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .services-carousel-track,
    .logo-carousel-track {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-action {
        border: 2px solid #fff;
    }

    .service-card {
        border: 2px solid #000;
    }
}

/* Focus Improvements for Keyboard Navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #D3BF97;
    outline-offset: 2px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .btn-action {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .floating-card {
        position: relative;
        transform: none;
        animation: none;
        margin: 20px 0;
    }

    .services-carousel-track {
        animation-duration: 25s;
    }

    .logo-carousel-track {
        animation-duration: 35s;
    }
}

/* Browser-Specific Glitch Fixes */
* {
    /* Prevent webkit flickering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Improve text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent selection glitches */
    -webkit-tap-highlight-color: transparent;
}

/* Force hardware acceleration for critical elements */
.hero-section,
.services-section,
.trust-indicators,
.partner-logos,
.navbar,
.btn-action {
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix for Safari rendering issues */
@supports (-webkit-appearance: none) {
    body {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Fix for Chrome rendering glitches */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .animate__animated {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
}

/* Fix for Firefox rendering issues */
@-moz-document url-prefix() {
    .wow, .animate__animated {
        backface-visibility: visible;
    }
}

/* Prevent layout shifts on font load */
body {
    font-display: swap;
    text-rendering: optimizeSpeed;
}

/* Critical resource hints for smooth loading */
.critical-resource {
    will-change: transform, opacity;
    contain: layout style paint;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .services-carousel-track,
    .logo-carousel-track {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .back-to-top,
    .whatsapp-chat,
    .floating-card,
    .navbar,
    #spinner {
        display: none !important;
    }

    .animate__animated,
    .wow {
        animation: none !important;
    }
}

/* Enhanced Mobile Spacing and Responsive Adjustments */
@media (max-width: 768px) {
    /* Mobile spacing adjustments for better visual flow */
    .partner-logos,
    .services-section,
    .trust-indicators-section {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .gov-hero-modern {
        padding-top: 80px;
        padding-bottom: 100px;
        margin-bottom: 80px;
    }

    /* Mobile logo carousel adjustments */
    .logo-carousel-track {
        animation-duration: 35s;
        flex-wrap: nowrap;
    }

    .logo-item {
        margin: 0 15px;
        min-width: 80px;
    }

    /* Mobile container spacing */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    /* Compact spacing for small screens */
    .partner-logos,
    .services-section,
    .trust-indicators-section {
        padding-top: 60px;
        padding-bottom: 60px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .gov-hero-modern {
        padding-top: 60px;
        padding-bottom: 80px;
        margin-bottom: 60px;
    }

    .logo-item {
        margin: 0 10px;
        min-width: 60px;
    }

    /* Ensure floating elements don't interfere on mobile */
    .floating-card {
        position: relative !important;
        transform: none !important;
        animation: none !important;
        margin: 20px 0 !important;
    }
}