/* General Body Setting */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 90px;
}
/* 1. Hide ALL global response messages by default */
.wpcf7-response-output {
    display: none !important;
}

/* 1. Default state: Keep the response box completely hidden */
.wpcf7-form .wpcf7-response-output {
    display: none !important;
}

/* 2. Error/Success state: ONLY show and style the response message after submission */
.wpcf7-form.invalid .wpcf7-submit ~ .wpcf7-response-output,
.wpcf7-form.invalid > :last-child.wpcf7-response-output,
.wpcf7-form.sent .wpcf7-submit ~ .wpcf7-response-output,
.wpcf7-form.sent > :last-child.wpcf7-response-output {
    display: block !important;
    border: 2px solid #ff0000 !important; /* Solid red border */
    background-color: #ffe6e6 !important; /* Light red background */
    color: #cc0000 !important; /* Dark red text */
    padding: 10px !important;
    margin-top: 15px !important;
}

/* 3. Keep the individual field error messages visible under each specific field */
.wpcf7-not-valid-tip {
    display: block !important;
    color: #ff0000 !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}
.wpcf7 .screen-reader-response{
	display:none !important;
}
.wpcf7 .screen-reader-response p{display:none !important;}
/* Forcefully hide the screen reader response text block at the top */
div.wpcf7 .screen-reader-response {
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clipping: rect(1px, 1px, 1px, 1px) !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    display: none !important;
}



.wpcf7-not-valid-tip{
    display: flex !important;
    width: 100% !important;
    color:rgb(122, 17, 38) !important;
}
#wpcf7-f795-o1-ve-budget{
    display:none !important;
}
.screen-reader-response ul li{
    display:none !important;
}
a{
    text-decoration: none;
}
/* --- Hatke Header Style --- */
.custom-header {
    background:white;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    padding: 10px 0;
}

/* Logo Styling */
.logo-img {
    height: 80px; 
    transition: transform 0.3s;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.logo-img:hover {
    transform: scale(1.1) rotate(-2deg);
}

/* Nav Links Animation */
.nav-link {
    color: black !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0 10px;
    position: relative;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

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

.btn-contact-custom {
    background: #3b3e75;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px;               
    transition: 0.3s all ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: none;
}

.btn-contact-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(253, 29, 29, 0.3);
    color: #fff;
    background: #e3383b;
}

.btn-contact-custom i {
    font-size: 14px; 
}


@media (max-width: 576px) {
    .btn-contact-custom {
        padding: 8px 15px; 
        font-size: 14px;  
        gap: 8px;          
    }
}


@media (max-width: 991px) {
    .custom-offcanvas {
        background: white;
        width: 280px !important;
    }

    .offcanvas-body .nav-link {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 15px;
        text-align: left;
    }


    .logo-img {
        height: 60px;
    }

    .mobile-contact-icons {
        display: flex !important;
        margin-top: 0; 
    }
}

.custom-toggler {
    background-color: #000;
}

/* --- Unique Dropdown Style --- */


.dropdown-menu {
    background: rgba(251, 251, 251, 0.9); 
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin-top: 15px !important; 
    opacity: 0;
    visibility: hidden;
    display: block; 
    transform: translateY(20px); 
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-item {
    color: #333 !important;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.dropdown-item:hover {
    background: #3b3d76 !important;
    color: #ffffff !important;
    padding-left: 30px;
}


.dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); 
    color: #e3383b;
}


@media (max-width: 991px) {
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none; 
        transform: none;
        transition: none;
        margin-top: 0 !important;
    }
    
    .dropdown-item {
        color: #3b3d76 !important;
    }
    
    .show > .dropdown-menu {
        display: block;
    }
}

/* --- Premium Hero Section --- */
.revansh-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
    color: #fff;
}

/* Background Blur Shapes */
.hero-blur-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(131, 58, 180, 0.3), transparent);
    filter: blur(100px);
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: moveBg 10s infinite alternate;
}

@keyframes moveBg {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 100px); }
}

/* Typography */
.hero-subtitle-tag {
    color: rgb(59, 61, 118);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    font-weight: bold;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #3a3d74;
}

.gradient-text{
    background: #e53538;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s infinite linear;
}
/* --- Smooth Word Rotator --- */
.rotator-box {
    display: flex;
    gap: 10px;
    font-size: 22px;
    margin-top: 25px;
    color: #3b3d76;
}

.dynamic-words {
    height: 32px;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #ffd700;
    min-width: 200px;
}

.dynamic-words li {
    height: 32px;
    animation: slideWords 12s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes slideWords {
    0%, 15% { transform: translateY(0); }
    20%, 35% { transform: translateY(-32px); }
    40%, 55% { transform: translateY(-64px); }
    60%, 75% { transform: translateY(-96px); }
    80%, 95% { transform: translateY(-128px); }
    100% { transform: translateY(0); }
}


.dynamic-words li:nth-child(1) { color: #3b3d76; }
.dynamic-words li:nth-child(2) { color: #3b3d76; }
.dynamic-words li:nth-child(3) { color: #3b3d76; }
.dynamic-words li:nth-child(4) { color: #3b3d76; }
.dynamic-words li:nth-child(5) { color: #3b3d76; }
/* Buttons */
.hero-btns-group {
    margin-top: 45px;
    display: flex;
    gap: 20px;
}

.btn-fill {
    background: #42437c;
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(253, 29, 29, 0.3);
    transition: 0.3s ease;
}

.btn-border {
    background: #e53538;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-fill:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(253, 29, 29, 0.5); color: #fff; }

/* --- Glassmorphism Slider --- */
.services-slider-wrapper {
    position: relative;
    z-index: 1;
}

.service-card-glass {
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 20px;
    transition: 0.5s;
    overflow: hidden;
    background-color: #3a3d74;
}

.service-card-glass img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.card-content {
    padding-top: 20px;
    text-align: center;
    color: rgb(255, 255, 255);
}

.card-content h3 {
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; text-align: center; }
    .rotator-box { justify-content: center; font-size: 16px; }
    .hero-btns-group { flex-direction: column; align-items: center; }
    .hero-left { text-align: center; }
    .service-card-glass img { height: 250px; }
}

@media (max-width: 991px) {
    .rotator-box {
        flex-direction: column; 
        gap: 5px;
        font-size: 18px;
        text-align: center;
    }
    
    .dynamic-words {
        height: 30px; 
        min-width: 100%; 
    }
    
    .dynamic-words li {
        height: 30px;
        font-size: 20px; 
        display: flex;
        justify-content: center;
        align-items: center;
    }

   
    @keyframes slideWords {
        0%, 15% { transform: translateY(0); }
        20%, 35% { transform: translateY(-30px); }
        40%, 55% { transform: translateY(-60px); }
        60%, 75% { transform: translateY(-90px); }
        80%, 95% { transform: translateY(-120px); }
        100% { transform: translateY(0); }
    }
}


#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; 
    pointer-events: all;
}

.revansh-hero {
    position: relative;
    overflow: hidden;
}

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



/* --- Premium About Section --- */
.premium-about {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Badge Style */
.about-badge {
    color: #833AB4;
    background: rgba(131, 58, 180, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}


.main-para {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #FD1D1D;
}

.services-mini-list div {
    font-weight: 600;
    color: #555;
    font-size: 15px;
}

.fw-bold {
    color: #444480;
}

.txt-gradient {
    background:#e73f40;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s infinite linear;
}

/* --- Premium Button (Hatke) --- */
.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #444480;
    color: #fff;
    padding: 14px 35px;
    border-radius: 4px; /* Sharp & Clean Look */
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    margin-top: 20px;
}

.premium-btn:hover {
    background:#e73f40;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Image Section with Custom Shape --- */
.about-image-holder {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.custom-shaped-img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    /* Unique Shape: Top-Left and Bottom-Right Rounded */
    border-radius: 150px 20px 150px 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

.rotating-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed #833AB4;
    border-radius: 150px 20px 150px 20px;
    animation: rotateShape 10s infinite linear;
    z-index: 1;
}

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

/* Mobile Adjustments */
@media (max-width: 991px) {
    .premium-about { text-align: center; }
    .main-para { border-left: none; border-top: 4px solid #FD1D1D; padding: 20px 0 0 0; }
    .premium-btn { justify-content: center; }
    .custom-shaped-img { height: 350px; border-radius: 80px 20px 80px 20px; }
}
/* --- Services Section Styling --- */
.service-main-container {
    background: #ffffff;
    border: 1px solid #eee;
}



/* Tabs Styling */
.custom-tabs .nav-link {
    color: #444;
    font-weight: 600;
    text-align: left;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 5px;
    transition: 0.3s;
    border: none;
}

/* --- Hatke Services Section --- */
.hatke-services {
    background: #ffffff;
}

.badge-custom {
    color: #3A3D74;
    background: rgba(58, 61, 116, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}


/* Tabs Styling - Floating Cards લુક */
.custom-pill-tabs .nav-link {
    color:black !important;
    background: rgba(255, 255, 255, 0.05); /* Light Glass background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    width: 100%;
}

.icon-tab {
    font-size: 18px;
    transition: transform 0.3s;
}

.arrow-icon {
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    transform: translateX(-10px);
}

.btn-book-instant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3a3d74;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(58, 61, 116, 0.2);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-book-instant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(58, 61, 116, 0.4);
    background: #e31e24; 
}

.btn-book-instant i {
    font-size: 1rem;
    transition: 0.3s ease;
}

.btn-book-instant:hover i {
    transform: translateX(5px) translateY(-5px); 
}


.custom-pill-tabs .nav-link.active {
    color: #fcfbff !important;
    border-color: rgb(0 0 0);
    box-shadow: 0 5px 20px rgb(0 0 0);
    transform: translateY(-3px);
    background-color: #3e4079;
}

.custom-pill-tabs .nav-link.active .icon-tab {
    color: white;
    transform: scale(1.1);
}

.custom-pill-tabs .nav-link.active .arrow-icon {
    opacity: 1;
    color: #000000;
    transform: translateX(0);
}

.custom-pill-tabs .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #000000 !important;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Glassmorphism Content Panel */
.glass-content-panel {
    background:white;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 100%;
}

.row .sub-service-grid{
    background: #F9F9F9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}
.text-light {
    font-size: 17px;
    line-height: 1.8;
}

/* View More Button */
.view-btn {
    width: 50px;
    height: 50px;
    background: #3a3d74;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.view-btn:hover {
    background: #e3383b;
    color: white;
    transform: scale(1.1);
}

/* Mini Cards (Glass style) */
.mini-card {
    background: rgb(0 0 0 / 3%);
    border: 1px solid rgb(0 0 0 / 10%);
    padding: 15px;
    border-radius: 50px;
    color: #000000;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.mini-card:hover {
    background: rgb(58 61 116 / 84%);
    color:white;
    border-color: rgb(255, 255, 255);
    transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .services-wrapper { border-radius: 20px !important; }
    .custom-pill-tabs { flex-direction: row !important; overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; padding-bottom: 10px; }
    .custom-pill-tabs .nav-link { margin-right: 10px; padding: 12px 18px; width: auto !important; }
    .custom-pill-tabs .nav-link.active { transform: none; }
    .arrow-icon { display: none; }
}


/* --- Why Choose Us Custom Style --- */
.why-choose-section {
    background-color: #f8f9fa;
}

.sub-heading {
    color: #FD1D1D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
}


/* Main Left Card */
.feature-main-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.img-container {
    overflow: hidden;
    height: 250px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.feature-main-card:hover .img-container img {
    transform: scale(1.1);
}

.icon-circle-main {
    width: 50px;
    height: 50px;
    background: rgba(131, 58, 180, 0.1);
    color: #833AB4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Right Side Feature Cards */
.feature-item-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.feature-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #FD1D1D;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-box.blue { background: rgba(0, 123, 255, 0.1); color: #007bff; }
.icon-box.green { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.icon-box.orange { background: rgba(255, 123, 0, 0.1); color: #ff7b00; }
.icon-box.purple { background: rgba(131, 58, 180, 0.1); color: #833AB4; }

.feature-item-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.feature-item-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .main-heading { font-size: 1.8rem; }
    .feature-main-card { margin-bottom: 30px; }
}

/* --- Premium Counter Styling --- */
.premium-counter {
    background: #ffffff;
    overflow: hidden;
}

.mini-badge {
    background: rgba(111, 180, 78, 0.1);
    color: #FD1D1D;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
}

/* Custom Green Button */
.custom-green-btn {
    background: #3a3d74;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.arrow-circle {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.custom-green-btn:hover {
    transform: translateY(-5px);
    background: #e3383b;
    color: #fff;
}

/* Stats Master Card */
.stats-master-card {
    background: #f1f4f8;
    border-radius: 40px;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.stat-glass-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 25px;
    transition: 0.4s;
}

.stat-glass-item:hover {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.counter {
    display: inline-block;
    font-size: 45px;
    font-weight: 900;
    color: #3a3d74;
}

.symbol {
    font-size: 30px;
    font-weight: 800;
    color: #3a3d74;
}

.stat-glass-item p {
    margin: 0;
    font-weight: 600;
    color: #3a3d74;
    font-size: 15px;
}
.stat-glass-item p:hover {
    color: #e3383b;
    transform: translateY(-3px);
    transition: 0.3s;
}

.person-wrapper {
    position: absolute;
    bottom: 0;
    right: -50px; 
    height: 100%;
    width: 40%;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.floating-person {
    max-height: 115%;
    width: auto;
    object-fit: contain;
    animation: floatAnim 4s infinite ease-in-out;
}
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@media (max-width: 991px) {
    .stats-master-card { padding: 40px 20px; }
    .person-wrapper { display: none; }
    .counter { font-size: 35px; }
    .container { max-width: 95% !important; } 
}


/* --- Logo Slider Styling --- */
.logo-slider-wrapper {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border: 1px solid #eee;
}


.logo-track {
    display: flex;
    width: calc(200px * 14); 
    animation: scrollLogos 25s linear infinite;
}
.logo-item {
    width: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}
.logo-item img {
    max-width: 150px;
    height: auto;

    filter: none !important; 

    opacity: 1 !important; 
    transition: 0.4s ease;
    object-fit: contain;
}

.logo-item img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.1));
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); }
}




@media (max-width: 768px) {
    .logo-item {
        width: 150px;
    }
    .logo-track {
        width: calc(150px * 14);
    }
    @keyframes scrollLogos {
        100% {
            transform: translateX(calc(-150px * 7));
        }
    }
}

.testimonial-final-section { background-color: #fff; padding: 60px 0; }

/* Main Grey Card */
.ss-grey-card {
    background-color: #f6f8f9;
    border-radius: 35px;
    padding: 25px;
    height: 100%; 
}

/* White Box inside Grey Card */
.ss-white-msg-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 25px;
    min-height: 200px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ss-white-msg-box p { font-size: 15px; color: #444; margin: 0; line-height: 1.6; }

/* Profile Area */
.ss-profile-wrap { display: flex; align-items: center; margin-top: 25px; padding-left: 10px; }

.ss-img-ring {
    width: 65px; height: 65px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ss-img-ring img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; }

.ss-user-meta { margin-left: 15px; }
.ss-user-meta h6 { font-weight: 700; margin: 0; color: #1a1a1a; }
.ss-user-meta p { font-size: 13px; color: #777; margin: 0; }

/* Navigation & View All Buttons */
.swiper-button-prev-custom, .swiper-button-next-custom {
    width: 50px; height: 50px; background: #fff; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.05); color: #888;
}

.ss-view-all-btn {
    background: #3a3d74; color: #fff; padding: 12px 30px; border-radius: 50px;
    text-decoration: none; font-weight: 600; display: flex; align-items: center;
}

.ss-view-all-btn:hover {    background: #e3383b; color: #fff; padding: 12px 30px; border-radius: 50px;
    text-decoration: none; font-weight: 600; display: flex; align-items: center; transform: translateY(-3px); }


/* --- Modern Insights Styling --- */
.insights-modern { background: #fff; }

.sub-tag { color: #833AB4; font-weight: 800; letter-spacing: 2px; font-size: 13px; }



/* --- Card Styling --- */
.insight-card {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.card-body-custom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(120px); 
    transition: 0.5s ease-in-out;
}

.category {
    background: #3b3e75;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1.1px;
}

.title { color: #fff; font-weight: 800; margin-bottom: 15px; }

.summary { color: rgba(255,255,255,0.8); font-size: 14px; opacity: 0; transition: 0.4s; }

.btn-read {
    color: #fff; text-decoration: none; font-weight: 700;
    border-bottom: 2px solid #FD1D1D; padding-bottom: 5px;
    display: inline-block; margin-top: 15px; opacity: 0;
}


.insight-card:hover, .insight-card.active {
    transform: scale(0.98);
}

.insight-card:hover .card-body-custom, .insight-card.active .card-body-custom {
    transform: translateY(0);
}

.insight-card:hover .summary, .insight-card:hover .btn-read,
.insight-card.active .summary, .insight-card.active .btn-read {
    opacity: 1;
}

.insight-card:hover .card-bg {
    transform: scale(1.1);
}

/* --- More Insights Center Button --- */
.btn-more-inside {
    background: #3a3d74;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-more-inside:hover {
    background: #e52d30;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(58, 61, 116, 0.3);
}

.btn-more-inside i {
    background: #fff;
    color: #000;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}

/* --- View All Posts Button --- */
.btn-all-posts {
    display: inline-flex;
    align-items: center;
    background: #3a3d74; 
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-all-posts i {
    transition: transform 0.3s ease;
}

.btn-all-posts:hover {
    background: #e43538;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 61, 116, 0.3);
}


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


@media (max-width: 767px) {
    .text-md-end {
        text-align: center !important;
        margin-top: 20px;
    }
}


.contact-cards-section {
    background-color: #f9fbff;
}

/* Main Card Style */
.contact-custom-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 25px;
    height: 100%;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.contact-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Icon Boxes */
.icon-box-blue, .icon-box-blue-light {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.icon-box-blue {
    background-color: #e8f0ff;
    color: #0066ff;
}

.icon-box-blue-light {
    background-color: #e8f0ff;
    color: #0066ff;
}

/* Typography */
.contact-card-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.contact-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 35px;
}

.contact-card-desc strong {
    color: #333;
    font-weight: 700;
}

/* --- Buttons Styling --- */

/* Full Blue Button */
.btn-book-now {
    background-color: #3a3d74;
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-book-now:hover {
    background-color: #e3383b;
    color: #fff;
}

/* Outline Blue Button */
.btn-enquiry-outline {
    background-color: transparent;
    color: #0066ff;
    padding: 14px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid #0066ff70; /* Light blue border */
}

.btn-enquiry-outline:hover {
    background-color: #0066ff0a;
    border-color: #0066ff;
    color: #0066ff;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .contact-custom-card {
        padding: 30px;
    }
    .contact-card-title {
        font-size: 26px;
    }
}

/* Contact Header Styling */
.contact-sub-tag {
    color: #3a3d74;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #3a3d74;
    margin-bottom: 15px;
}


/* Mobile Responsive Title */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2.2rem;
    }
}




/* --- Modern Footer Styling --- */
.modern-footer {
    background: #3A3D74;
    background: linear-gradient(90deg, rgba(58, 61, 116, 1));
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px; 
}

/* Footer Logo */
.footer-logo {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Links List */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 30px; height: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
}
.footer-list li { margin-bottom: 12px; }
.footer-list li a {
    color: #d1d1d1;
    text-decoration: none !important;
    transition: 0.3s;
    font-size: 15px;
    border: none !important;
}
.footer-list li a:hover {
    text-decoration: none !important;
    padding-left: 5px;
}

/* Contact Card (Glass Effect) */
.footer-contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-item .icon {
    width: 40px; height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px;
}
.contact-item .text span { font-size: 12px; color: #888; display: block; }
.contact-item .text p { margin: 0; font-weight: 600; font-size: 14px; }

/* Awards */
.award-img {
    max-height: 40px;
}
.award-img:hover { opacity: 1; transform: scale(1.1); }

/* Social Icons */
.footer-social-modern a {
    width: 35px; height: 35px;
    background: rgba(255,255,255,0.05);
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}
.footer-social-modern a:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}

/* Bottom Bar */
.bottom-bar {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .modern-footer { text-align: center; margin-bottom: 55px; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .contact-item { justify-content: center; }
}

/* --- Footer Logo Image Styling --- */
.footer-logo-img img {
    max-width: 150px; 
    height: auto;
    display: block;
    transition: 0.3s ease;
    margin-bottom: 10px;
}


.footer-logo-img img:hover {
    transform: scale(1.05);
}


@media (max-width: 991px) {
    .footer-logo-img img {
        margin: 0 auto 20px; 
    }
}
/* --- Sticky Footer Bar Style --- */
.sticky-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    height: 60px;
}

.num-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px; 
    color: #333;
    margin-left: 30px;
}

.num-item img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-btns-wrap {
    display: flex;
}


.wa-float-btn {
    width: 60px;
    height: 60px;
    background-color: #3a3d74;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    transition: 0.3s;
}


.quote-btn {
    background-color: rgb(229 51 54);
    color: white;
    height: 60px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}


@media (max-width: 768px) {
    .contact-numbers {
        display: none !important;
    }
    
    .sticky-footer-bar {
        height: 55px; 
    }

    .footer-btns-wrap {
        width: 100%; 
    }

    .wa-float-btn {
        width: 30%;
        height: 55px;
    }

    .quote-btn {
        width: 70%;
        height: 55px;
        flex: 1;
        justify-content: center;
        padding: 0; 
        font-size: 15px;
    }
    .call-btn {
        display: flex !important; 
    }
}



.call-btn {
    width: 60px;
    height: 60px;
    background-color: #007bff; 
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}



/* --- Right Fixed Appointment Tab --- */
.right-fixed-appointment {
    position: fixed;
    right: 0;
    top: 35%;
    transform: translateY(-50%) rotate(-90deg); 
    transform-origin: right bottom; 
    
    background:rgb(229 51 54);
    color: #fff;
    padding: 12px 25px;
    border-radius: 15px 15px 0 0; 
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    transition: 0.3s ease;
}


.right-fixed-appointment:hover {
    padding-right: 35px;
    color: #fff;
    box-shadow: -8px 0 20px rgba(253, 29, 29, 0.4);
}


.right-fixed-appointment i {
    transform: rotate(90deg);
    display: inline-block;
}


@media (max-width: 768px) {
    .right-fixed-appointment, 
    .left-social-sidebar {
        display: none !important;
    }
}

/* --- Left Social Sidebar Styling --- */
.left-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.share-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px;
    width: 45px; 
    overflow: hidden;
    color: #fff;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
    margin-bottom: 2px;
}

.share-item i {
    font-size: 20px;
    min-width: 25px;
    text-align: center;
}

.share-item span {
    margin-left: 15px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}


.share-item:hover {
    width: 150px;
}

.share-item:hover span {
    opacity: 1;
}


.facebook { background-color: #3b5998; }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.youtube { background-color: #ff0000; }
.linkedin { background-color: #0077b5; }
.twitter { background-color: #1da1f2; }
.pinterest { background-color: #bd081c; }


/* --- Premium Back to Top Button --- */
.back-to-top-btn {
    position: fixed;
    right: 25px;
    bottom: 150px;
    width: 55px;
    height: 55px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}


.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* --- Premium Hover Effects --- */
.back-to-top-btn:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #833AB4, #FD1D1D); 
    color: #fff;
    box-shadow: 0 15px 30px rgba(253, 29, 29, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}


.back-to-top-btn:hover i {
    animation: arrowUp 0.6s infinite alternate;
}

@keyframes arrowUp {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}


.back-to-top-btn::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
}

.back-to-top-btn:hover::after {
    top: 100%;
    left: 100%;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        right: 15px;
        bottom: 120px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}


/* Breadcrumb Header (Image 2 logic) */
.about-breadcrumb {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/breadcrum1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0 0px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb-item.active { color: #fff; }


