
     /*top slider css*/
     
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        font-smooth: always;
        -webkit-font-smoothing: antialiased;
    }

    .swiper-container {
        width: 100%;
        height: 600px;
        position: relative;
        overflow: hidden;
    }

    .swiper-slide {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .slide-content {
        position: absolute;
        top: 57%;
        left: 3%;
        transform: translateY(-50%);
        text-align: left;
        width: 80%;
        max-width: 1200px;
        padding: 2rem;
        z-index: 10;
    }

    /* Modified Title Styles */
    .slide-title {
        font-family: "Roboto", Sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        line-height: 1.1;
        color: #d61822;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        letter-spacing: -1px;
        position: relative;
        display: inline-block;
        opacity: 0;
        transform: translateY(30px);
        padding-bottom: 10px;
        width: 100%;
    }
    
    /*.slide-title::before {*/
    /*    content: "";*/
    /*    position: absolute;*/
    /*    top: 0;*/
    /*    left: 0;*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    background: rgba(255, 255, 255, 0.3);*/
    /*    backdrop-filter: blur(10px);*/
    /*    -webkit-backdrop-filter: blur(10px);*/
    /*    border-radius: 8px;*/
    /*    z-index: -1;*/
    /*}*/

    .slide-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: #808080;
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: left;
    }

    /* Subtitle Styles */
    .slide-subtitle {
        /*font-size: 1.5rem;*/
        
        margin-top: 1.5rem;
        color: white;
        /*font-weight: 300;*/
        /*font-family: 'Roboto', sans-serif;*/
        line-height: 1.6;
        letter-spacing: 0.5px;
        max-width: 70%;
        opacity: 0;
        transform: translateY(20px);
        text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    /* Animations */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes underlineGrow {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }

   .slide-title.animated,.slide-subtitle.animated { animation: slideUp 0.4s ease-out forwards;
       
   }
    .slide-subtitle.animated {
        animation: slideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s forwards;
    }

    .slide-title.animated::after {
        animation: underlineGrow 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards;
    }

    /* Navigation Arrows */
    .swiper-button-next,
    .swiper-button-prev {
        color: white !important;
        background: rgba(255,255,255,0.2);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.1);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.5rem !important;
        font-weight: bold;
    }

    /* Pagination */
    .swiper-pagination-bullet {
        background-color: white !important;
        opacity: 0.6;
        width: 12px;
        height: 12px;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background-color: #FF416C !important;
        /*opacity: 1;*/
        transform: scale(1.2);
    }

    /* Responsive Design */
    @media(max-width: 992px) {
        .slide-content {
            left: 5%;
            width: 90%;
        }
        
        .slide-title {
            font-size: 3.5rem;
        }
        
        .slide-subtitle {
            /*font-size: 1.5rem;*/
            max-width: 90%;
        }
    }

    @media(max-width: 768px) {
        .swiper-container {
            height: 60vh;
            min-height: 400px;
            width:auto;
        }
        
        .slide-title {
            font-size: 2.5rem;
        }
        
        .slide-subtitle {
            /*font-size: 1.2rem;*/
            max-width: 100%;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
        }
    }

    @media(max-width: 480px) {
        .swiper-container {
            height: 50vh;
            min-height: 350px;
        }
        
        .slide-title {
            font-size: 2rem;
        }
        
        .slide-subtitle {
            font-size: 1rem;
        }
    }
        .custom-buttons {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    .red-button {
        background-color: rgba(236, 7, 7, 0.87);
        color: white;
        padding: 10px 20px;
        font-size: 14px;
        border: 1px solid red;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .red-button.active {
        background-color: red;
    }

    .red-button:hover {
        background-color: red;
    }
    .content-section {
        margin-top: 20px;
        font-size: 15px;
        color: #333;
        line-height: 1.6;
    }
    
    
    
    
    /*videoio slider*/
    
    
    
    
      .video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
        }
    
        .elementor-custom-embed-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            /*padding: 10px;*/
        }
    
        .elementor-widget-video {
            border: 1px solid grey;
            border-radius: 5px;
            padding: 5px;
            width: 100%;
            max-width: 800px;
        }
        .swiper-button-next,
        .swiper-button-prev {
            color: white;
        }
    
    
    
    
    
    
    /*chairman masage css*/
    
    
   :root {
                --primary: #2563eb;
                --primary-dark: #1d4ed8;
                --secondary: #10b981;
                --accent: #d97706;
                --light: #f8fafc;
                --dark: #1e293b;
                --gray: #64748b;
            }
            
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Roboto', sans-serif;
            }
    
            @font-face {
                font-family: 'Roboto';
                font-style: normal;
                font-weight: 300;
                src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
            }
            @font-face {
                font-family: 'Roboto';
                font-style: normal;
                font-weight: 400;
                src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
            }
            @font-face {
                font-family: 'Roboto';
                font-style: normal;
                font-weight: 600;
                src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
            }
            @font-face {
                font-family: 'Roboto';
                font-style: normal;
                font-weight: 700;
                src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
            }
    
            body {
                background-color: var(--light);
                color: var(--dark);
            }
    
            /* Main Section */
            .chairman-section {
                position: relative;
                padding: 60px 40px;
                overflow: hidden;
                background: linear-gradient(145deg, #ffffff 0%, #f1f7ff 100%);
            }
    
            .section-container {
                max-width: 95%;
                
                margin: 0 auto;
                display: flex;
                /*align-items: center;*/
                gap: 80px;
                position: relative;
                z-index: 10;
            }
    
            /* Decorative Elements */
            .decorative-shape {
                position: absolute;
                z-index: 1;
                opacity: 0.08;
            }
    
            .shape-1 {
                width: 600px;
                height: 600px;
                background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
                top: -300px;
                right: -300px;
                animation: pulse 15s infinite alternate;
            }
    
            .shape-2 {
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
                bottom: -200px;
                left: -200px;
                animation: pulse 12s 3s infinite alternate;
            }
    
            .medical-icon {
                position: absolute;
                color: rgba(37, 99, 235, 0.1);
                font-size: 28px;
                z-index: 2;
                animation: float 8s infinite ease-in-out;
            }
    
            /* Portrait Area */
            .portrait-area {
                flex: 1;
                min-width: 400px;
                position: relative;
                perspective: 1200px;
            }
    
            .portrait-wrapper {
                position: relative;
                width: 100%;
                height: 500px;
                transform-style: preserve-3d;
                transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
            }
    
            .portrait-card {
                position: relative;
                width: 100%;
                height: 100%;
                transform-style: preserve-3d;
                transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            }
    
            .portrait-card:hover {
                transform: rotateY(8deg) rotateX(2deg);
            }
    
            .portrait-front {
                position: absolute;
                width: 100%;
                height: 100%;
                backface-visibility: hidden;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.18);
                border: 12px solid white;
                transform: translateZ(40px);
            }
    
            .portrait-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            }
    
            .portrait-card:hover .portrait-img {
                transform: scale(1.05);
            }
    
            .portrait-badge {
                position: absolute;
                bottom: 40px;
                left: 40px;
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
                color: white;
                padding: 14px 28px;
                border-radius: 50px;
                font-weight: 600;
                box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.15);
                transform: translateY(30px);
                opacity: 0;
                transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
            }
    
            .portrait-card:hover .portrait-badge {
                transform: translateY(0);
                opacity: 1;
            }
    
            .portrait-decoration {
                position: absolute;
                width: 120px;
                height: 120px;
                border: 2px dashed rgba(37, 99, 235, 0.3);
                border-radius: 50%;
                top: -30px;
                right: -30px;
                animation: rotate 20s linear infinite;
            }
    
            /* Message Area */
            .message-area {
                flex: 1.5;
                position: relative;
                z-index: 5;
            }
    
            .section-subtitle {
                color: var(--primary);
                font-weight: 600;
                margin-bottom: 16px;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                font-size: 0.9rem;
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .section-title {
                font-size: 3rem;
                color: var(--dark);
                margin-bottom: 30px;
                line-height: 1.2;
                position: relative;
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .section-title::after {
                content: '';
                position: absolute;
                bottom: -16px;
                left: 0;
                width: 100px;
                height: 5px;
                /*background: linear-gradient(90deg, var(--primary), var(--secondary));*/
                border-radius: 3px;
            }
    
            .message-text {
                margin-bottom: 40px;
                line-height: 1.9;
                color: var(--gray);
                font-weight: 300;
                font-size: 1.05rem;
            }
    
            .message-text p {
                margin-bottom: 20px;
                opacity: 0;
                transform: translateY(20px);
            }
    
            .message-text p:nth-child(1) {
                animation: fadeInUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .message-text p:nth-child(2) {
                animation: fadeInUp 0.8s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .message-text p:nth-child(3) {
                animation: fadeInUp 0.8s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            /* Signature Area */
            .signature-area {
                display: flex;
                align-items: center;
                gap: 30px;
                margin-top: 50px;
            }
    
            .signature-img {
                height: 70px;
                opacity: 0;
                filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
                animation: fadeIn 1s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .chairman-info {
                opacity: 0;
                animation: fadeIn 1s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .chairman-name {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--dark);
                margin-bottom: 6px;
                letter-spacing: 0.5px;
            }
    
            .chairman-title {
                color: var(--gray);
                font-size: 0.95rem;
                letter-spacing: 1px;
                position: relative;
                display: inline-block;
            }
    
            .chairman-title::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 40px;
                height: 2px;
                background: var(--accent);
            }
    
            /* Stats Grid */
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                margin-top: 50px;
            }
    
            .stat-item {
                background: white;
                padding: 28px 20px;
                border-radius: 16px;
                box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
                text-align: center;
                position: relative;
                overflow: hidden;
                opacity: 0;
                transform: translateY(30px);
                transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            }
    
            .stat-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 4px;
                height: 100%;
                background: linear-gradient(to bottom, var(--primary), var(--secondary));
            }
    
            .stat-item:nth-child(1) {
                animation: fadeInUp 0.8s 1.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
            .stat-item:nth-child(2) {
                animation: fadeInUp 0.8s 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
            .stat-item:nth-child(3) {
                animation: fadeInUp 0.8s 2.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
    
            .stat-item:hover {
                transform: translateY(-10px);
            }
    
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 10px;
                background: linear-gradient(135deg, var(--primary), var(--secondary));
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
            }
    
            .stat-label {
                font-size: 0.9rem;
                color: var(--gray);
                letter-spacing: 1px;
                text-transform: uppercase;
            }
    
            /* Animations */
            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            @keyframes fadeIn {
                to {
                    opacity: 1;
                }
            }
    
            @keyframes float {
                0%, 100% {
                    transform: translateY(0) rotate(0deg);
                }
                50% {
                    transform: translateY(-20px) rotate(5deg);
                }
            }
    
            @keyframes pulse {
                0% {
                    transform: scale(1);
                    opacity: 0.08;
                }
                100% {
                    transform: scale(1.1);
                    opacity: 0.12;
                }
            }
    
            @keyframes rotate {
                to {
                    transform: rotate(360deg);
                }
            }
            .message-area {
                text-align: left;
            }
            /* Responsive Design */
            @media (max-width: 1200px) {
                .section-container {
                    gap: 50px;
                }
                
                .portrait-area {
                    min-width: 350px;
                }
                
                .portrait-wrapper {
                    height: 450px;
                }
            }
    
            @media (max-width: 1024px) {
                .section-container {
                    flex-direction: column;
                    gap: 50px;
                }
    
                .portrait-area {
                    width: 100%;
                    max-width: 500px;
                }
    
                .section-title {
                    font-size: 2.5rem;
                    text-align: center;
                }
    
                .section-title::after {
                    left: 50%;
                    transform: translateX(-50%);
                }
    
                .message-area {
                    text-align: left;
                }
    
                .signature-area {
                    justify-content: center;
                }
                
                .chairman-title::after {
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
    
           @media (max-width: 1024px) {
        .section-container {
            flex-direction: column;
            gap: 40px;
        }
        .portrait-area, .message-area {
            min-width: 100%;
        }
        .portrait-area {
            height: 400px;
        }
        .portrait-wrapper {
            height: 400px;
        }
        .section-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 600px) {
        .chairman-section {
            padding: 40px 20px;
        }
        .portrait-area {
            height: 300px;
        }
        .portrait-wrapper {
            height: 300px;
        }
        .section-title {
            font-size: 1.8rem;
        }
        .message-text {
            font-size: 1rem;
        }
        .signature-area {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }
        .signature-img {
            height: 50px;
        }
    }
            
    /*after chairman massage*/
    
    
    /* Base styles for all devices */
    .custom-swiper-container {
        padding: 0 20px;
        position: relative;
        width: 100%;
        overflow: hidden;
        margin: 30px 0;
    }

    .custom-swiper-container .swiper {
        width: 100%;
        padding: 20px 30px;
    }

    .custom-swiper-container .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: stretch;
        height: auto;
    }

    .custom-swiper-container .elementor-post {
        background: #fff;
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-swiper-container .swiper-slide:hover .elementor-post {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .custom-swiper-container .elementor-post__thumbnail {
        position: relative;
        overflow: hidden;
        border-radius: 12px 12px 0 0;
    }

    .custom-swiper-container .elementor-post__thumbnail iframe {
        width: 100%;
        height: 250px;
        border-radius: 12px 12px 0 0;
        display: block;
    }

    .custom-swiper-container .elementor-post__text {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .custom-swiper-container .elementor-post__title {
        margin: 0 0 15px 0;
        font-size: 18px;
        font-weight: 700;
        color: #333;
    }

    .custom-swiper-container .elementor-post__title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .custom-swiper-container .elementor-post__title a:hover {
        color: #e74c3c;
    }

    .custom-swiper-container .elementor-post__excerpt {
        margin-bottom: 20px;
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        flex-grow: 1;
    }

    /* Read More Button */
    .custom-swiper-container .elementor-post__read-more {
        margin-top: auto;
        padding: 10px 25px;
        font-size: 14px;
        font-weight: 600;
        background: #e74c3c;
        text-transform: uppercase;
        color: #fff;
        text-decoration: none;
        border-radius: 25px;
        display: inline-block;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        width: fit-content;
        align-self: center;
    }

    .custom-swiper-container .elementor-post__read-more:hover {
        background: #c0392b;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Navigation Buttons */
    .custom-swiper-container .swiper-button-next,
    .custom-swiper-container .swiper-button-prev {
        background: #e74c3c;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        top: 50%;
        margin-top: -20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .custom-swiper-container .swiper-button-next:hover,
    .custom-swiper-container .swiper-button-prev:hover {
        background: #c0392b;
        transform: scale(1.1);
    }

    .custom-swiper-container .swiper-button-next::after,
    .custom-swiper-container .swiper-button-prev::after {
        font-size: 18px;
        font-weight: bold;
    }

    .custom-swiper-container .swiper-button-prev {
        left: 0;
    }

    .custom-swiper-container .swiper-button-next {
        right: 0;
    }

    /* ========== MEDIA QUERIES ========== */
    
    /* Extra Small Devices (Phones < 375px) */
    @media (max-width: 374px) {
        .custom-swiper-container {
            padding: 0 8px;
        }
        
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 150px;
        }
        
        .custom-swiper-container .elementor-post__text {
            padding: 15px;
        }
        
        .custom-swiper-container .elementor-post__title {
            font-size: 15px;
            margin-bottom: 10px;
        }
        
        .custom-swiper-container .elementor-post__excerpt {
            font-size: 12px;
            margin-bottom: 15px;
        }
        
        .custom-swiper-container .elementor-post__read-more {
            padding: 8px 20px;
            font-size: 12px;
        }
        
        .custom-swiper-container .swiper-button-next,
        .custom-swiper-container .swiper-button-prev {
            width: 28px;
            height: 28px;
            font-size: 13px;
            margin-top: -14px;
        }
    }

    /* Small Devices (Phones 375px - 575px) */
    @media (min-width: 375px) and (max-width: 575px) {
        .custom-swiper-container {
            padding: 0 10px;
        }
        
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 170px;
        }
        
        .custom-swiper-container .elementor-post__title {
            font-size: 16px;
        }
        
        .custom-swiper-container .elementor-post__excerpt {
            font-size: 13px;
        }
        
        .custom-swiper-container .swiper-button-next,
        .custom-swiper-container .swiper-button-prev {
            width: 32px;
            height: 32px;
            font-size: 14px;
            margin-top: -16px;
        }
    }

    /* Medium Devices (Tablets 576px - 767px) */
    @media (min-width: 576px) and (max-width: 767px) {
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 190px;
        }
        
        .custom-swiper-container .elementor-post__title {
            font-size: 17px;
        }
        
        .custom-swiper-container .swiper-button-next,
        .custom-swiper-container .swiper-button-prev {
            width: 36px;
            height: 36px;
            font-size: 16px;
            margin-top: -18px;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 200px;
        }
        
        .custom-swiper-container .elementor-post__text {
            padding: 25px;
        }
    }

    /* Extra Large Devices (Desktops 992px - 1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 220px;
        }
    }

    /* XXL Devices (Large Desktops 1200px - 1599px) */
    @media (min-width: 1200px) and (max-width: 1599px) {
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 240px;
        }
        
        .custom-swiper-container .elementor-post__title {
            font-size: 20px;
        }
        
        .custom-swiper-container .elementor-post__excerpt {
            font-size: 15px;
        }
    }

    /* XXXL Devices (Extra Large Screens 1600px - 1799px) */
    @media (min-width: 1600px) and (max-width: 1799px) {
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 260px;
        }
        
        .custom-swiper-container {
            padding: 0 40px;
        }
        
        .custom-swiper-container .swiper-button-next,
        .custom-swiper-container .swiper-button-prev {
            width: 45px;
            height: 45px;
            font-size: 20px;
            margin-top: -22.5px;
        }
    }

    /* TV/4K Devices (1800px and above) */
    @media (min-width: 1800px) {
        .custom-swiper-container {
            padding: 0 60px;
            max-width: 1800px;
            margin: 40px auto;
        }
        
        .custom-swiper-container .elementor-post__thumbnail iframe {
            height: 300px;
        }
        
        .custom-swiper-container .elementor-post__title {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .custom-swiper-container .elementor-post__excerpt {
            font-size: 16px;
            margin-bottom: 25px;
        }
        
        .custom-swiper-container .elementor-post__read-more {
            padding: 12px 30px;
            font-size: 16px;
        }
        
        .custom-swiper-container .swiper-button-next,
        .custom-swiper-container .swiper-button-prev {
            width: 50px;
            height: 50px;
            font-size: 22px;
            margin-top: -25px;
        }
    }




  /*hospital history*/
  
  
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f0f4f8;
  }

  .ghurki-timeline {
    display: flex;
    justify-content: center;
    padding: 30px;
  }

  .timeline-container {
    position: relative;
    width: 600px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffffff, #e0ecf5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 15px solid white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: all 0.3s ease;
  }

  .center-logo:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }

  .center-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 2px dashed rgba(79, 138, 139, 0.3);
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .event {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #4f8a8b;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
    /* Keep position and scale centered */
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .event:hover {
    transform: translate(-50%, -50%) scale(1.9);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .event span {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .event div {
    font-size: 15px;
  }

  .event:hover span {
    font-size: 16px;
  }

  .event:hover div {
    font-size: 13px;
  }

  /* Circular Positions */
 .event1 { top: 0%; left: 50%; background: #8e44ad; }
.event2 { top: 20%; left: 85%; background: #3498db; }
.event3 { top: 50%; left: 100%; background: #16a085; }
.event4 { top: 80%; left: 85%; background: #f39c12; }
.event5 { top: 100%; left: 50%; background: #d35400; }
.event6 { top: 80%; left: 15%; background: #c0392b; }
.event7 { top: 50%; left: 0%; background: #27ae60; }
.event8 { top: 20%; left: 15%; background: #2980b9; }


  /* Mobile View */
  @media (max-width: 768px) {
    .timeline-container {
      position: static;
      width: 100%;
      height: auto;
      border-radius: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 20px;
      justify-items: center;
      align-items: center;
    }

    .center-logo {
      display: none;
    }

    .timeline-container::before {
      display: none;
    }

    .event {
      position: static !important;
      width: 140px;
      height: 140px;
      font-size: 12px;
      transform: none !important;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      margin: 0 auto;
    }

    .event:hover {
      transform: scale(1.8) !important;
      z-index: 100;
    }

    .event:hover span {
      font-size: 15px;
    }

    .event:hover div {
      font-size: 12px;
    }
  }

    /*awards slider*/
    
    
                    .awards-container {
                        overflow: hidden;
                        /*background-color: #f5f5f5;*/
                        padding: 30px 0;
                    }
            
                    .awards-slider {
                        display: flex;
                        animation: scroll 30s linear infinite;
                        width: max-content;
                    }
            
                    .awards-slider img {
                        max-height: 100px;
                        margin: 0 30px;
                        object-fit: contain;
                    }
            
                    @keyframes scroll {
                        0% { transform: translateX(0); }
                        100% { transform: translateX(-50%); }
                    }
            
                    /* Responsive adjustments */
                    @media (max-width: 768px) {
                        .awards-slider img {
                            max-height: 80px;
                            margin: 0 20px;
                        }
                    }
            
                    @media (max-width: 480px) {
                        .awards-slider img {
                            max-height: 60px;
                            margin: 0 10px;
                        }
                    }

    
    /*testimonilaaas*/
    
    .testimonials-section {
        background-color: #f1f7ff;
        padding: 60px 0;
        font-family: 'Roboto', sans-serif;
    }

    .testimonials-top-content {
        text-align: center;
        color: white;
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 10px;
    }

    .section-subheading {
        font-size: 18px;
        font-weight: 400;
        margin: 5px 0;
    }

    .testimonials-container {
        max-width: 1300px;
        margin: auto;
        overflow: hidden;
        padding: 0 20px;
    }

    .testimonials-marquee {
        display: flex;
        gap: 30px;
        animation: scrollLeft 40s linear infinite;
        width: max-content;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .testimonial-card {
        background-color: #1a1a1ac4;
        border-radius: 15px;
        color: white;
        width: 400px;
        height: 300px;
        padding: 30px 20px 20px;
        position: relative;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .avatar-wrap {
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background-color: white;
        border-bottom-left-radius: 100px;
        overflow: hidden;
    }

    .avatar-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .quote-icon {
        font-size: 100px;
        color: white;
        margin-top: 30px;
        margin-bottom: 10px;
        text-align: start;
        transform: translateX(-4px);
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        margin-top: 10px;
        text-align: start;
    }

    .author-info h4 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        text-align: start;
    }

    .author-info p {
        font-size: 16px;
        margin: 3px 0 0;
        color: #ccc;
        text-align: start;
    }

    /* Responsive Styles */

    @media (max-width: 992px) {
        .testimonial-card {
            width: 300px;
            height: 280px;
            padding: 25px 18px;
        }

        .avatar-wrap {
            width: 80px;
            height: 80px;
            border-bottom-left-radius: 80px;
        }

        .quote-icon {
            font-size: 80px;
            margin-top: 20px;
        }

        .testimonial-text {
            font-size: 13px;
        }

        .author-info h4,
        .author-info p {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .testimonial-card {
            width: 240px;
            height: 250px;
            padding: 20px 15px;
        }

        .avatar-wrap {
            width: 70px;
            height: 70px;
            border-bottom-left-radius: 70px;
        }

        .quote-icon {
            font-size: 60px;
            margin-top: 15px;
            margin-bottom: 5px;
        }

        .testimonial-text {
            font-size: 12px;
            margin-bottom: 10px;
        }

        .author-info h4,
        .author-info p {
            font-size: 12px;
        }
    }



  /*newz and event */
  
  
    /* Unique class for Swiper container */
    .unique-swiper-container {
        padding: 0 100px 50px;
        position: relative;
        width: 100%;
        overflow: hidden;
        background-color: #f8f9fa;
    }

    /* Swiper slide styling */
    .unique-swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 15px;
    }

    /* News event container */
    .unique-news-event-container {
        position: relative;
        width: 250px !important;
        height: 200px !important;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        background: #fff;
    }

    /* Hover effect for container - more pronounced */
    .unique-news-event-container:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    /* Image container with hover effect */
    .unique-news-event-image-container {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    /* Image styling */
    .unique-news-event-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    /* Image zoom and brightness effect on hover */
    .unique-news-event-container:hover .unique-news-event-image {
        transform: scale(1.15);
        filter: brightness(0.9);
    }

    /* Red gradient overlay */
    .unique-news-event-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, rgba(231, 76, 60, 0.7) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .unique-news-event-container:hover .unique-news-event-image-container::after {
        opacity: 1;
    }

    /* Text container - slide up animation */
    .unique-news-event-text {
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        text-align: center;
        padding: 25px 20px;
        position: absolute;
        bottom: -100%;
        left: 0;
        right: 0;
        transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 2;
        backdrop-filter: blur(5px);
        border-top: 3px solid #e74c3c;
    }

    /* Show text on hover with bounce effect */
    .unique-news-event-container:hover .unique-news-event-text {
        bottom: 0;
    }

    /* Title inside text */
    .unique-news-event-text h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #222;
        position: relative;
        padding-bottom: 12px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s ease 0.2s;
    }

    .unique-news-event-container:hover .unique-news-event-text h3 {
        transform: translateY(0);
        opacity: 1;
    }

    /* Title underline animation - red */
    .unique-news-event-text h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60px;
        height: 3px;
        background: #e74c3c;
        transition: transform 0.4s ease 0.3s;
        transform-origin: center;
    }

    .unique-news-event-container:hover .unique-news-event-text h3::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* Description inside text */
    .unique-news-event-text p {
        font-size: 14px;
        margin-bottom: 20px;
        color: #666;
        line-height: 1.5;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s ease 0.3s;
    }

    .unique-news-event-container:hover .unique-news-event-text p {
        transform: translateY(0);
        opacity: 1;
    }

    /* Read More button - red theme */
    .unique-news-event-read-more {
        display: inline-block;
        padding: 12px 28px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        background: #e74c3c;
        color: white;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s ease 0.4s;
    }

    .unique-news-event-container:hover .unique-news-event-read-more {
        transform: translateY(0);
        opacity: 1;
    }

    /* Button hover effect - darker red */
    .unique-news-event-read-more:hover {
        background: #c0392b;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    }

    /* Arrow effect on read more */
    .unique-news-event-read-more::after {
        content: "→";
        margin-left: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .unique-news-event-read-more:hover::after {
        margin-left: 12px;
        transform: rotate(45deg);
    }

    /* Date badge - red theme */
    .unique-news-event-date {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(231, 76, 60, 0.9);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.5s ease;
    }

    .unique-news-event-container:hover .unique-news-event-date {
        transform: translateY(0);
        opacity: 1;
    }

    /* Swiper navigation buttons - red theme */
    .unique-swiper-container .swiper-button-next,
    .unique-swiper-container .swiper-button-prev {
        background: #e74c3c;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }

    /* Position navigation buttons */
    .unique-swiper-container .swiper-button-next {
        right: 30px;
    }

    .unique-swiper-container .swiper-button-prev {
        left: 30px;
    }

    /* Hover effect for buttons */
    .unique-swiper-container .swiper-button-next:hover,
    .unique-swiper-container .swiper-button-prev:hover {
        background: #c0392b;
        transform: scale(1.1);
    }

    .unique-swiper-container .swiper-button-next::after,
    .unique-swiper-container .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }

    /* Pagination styling - red theme */
    .unique-swiper-container .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #ddd;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .unique-swiper-container .swiper-pagination-bullet-active {
        background: #e74c3c;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }

    /* Title styling */
    .elementor-heading-title {
        position: relative;
        display: inline-block;
    }

    .elementor-heading-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #e74c3c;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s ease;
    }

    .elementor-heading-title:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* Responsive adjustments */
    @media (max-width: 1800px) {
        .unique-swiper-container {
            padding: 0 80px 40px;
        }
    }

    @media (max-width: 1440px) {
        .unique-swiper-container {
            padding: 0 60px 30px;
        }
    }

    @media (max-width: 1200px) {
        .unique-swiper-container {
            padding: 0 40px 20px;
        }
        
        .unique-news-event-image-container {
            height: 220px;
        }
    }

    @media (max-width: 768px) {
        .unique-swiper-container {
            padding: 0 30px 15px;
        }
        
        .unique-news-event-image-container {
            height: 200px;
        }
        
        .unique-swiper-container .swiper-button-next,
        .unique-swiper-container .swiper-button-prev {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .unique-swiper-container {
            padding: 0 20px 10px;
        }
        
        .unique-news-event-image-container {
            height: 180px;
        }
        
        .unique-news-event-text {
            padding: 15px;
        }
        
        .unique-news-event-text h3 {
            font-size: 16px;
        }
        
        .unique-news-event-text p {
            font-size: 13px;
        }
    }
    
    
    /*map fo donators*/
    body {
      font-family: Robot, sans-serif;
      text-align: center;
      margin: 0;
      background: #f4f4f4;
    }

    .map-container {
      position: relative;
      width: 100%;
      margin-top: 20px;
      background-color: white;
      padding-top: 20px;
    }

    .map-image {
      width: 100%;
      height: auto;
      display: block;
    }

    .location {
      position: absolute;
      background: #d61822;
      color: white;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 4px;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      font-weight: bold;
      cursor: pointer;
    }

    /* Animation timing for strict one-by-one movement */
    .usa {
      top: 44%; left: 32%;
      animation: usaMove 4s linear infinite;
    }
    .uk {
      top: 34%; left: 51%;
      animation: ukMove 4s linear infinite;
    }
    .pakistan {
      top: 47%; left: 65%;
      animation: pakistanMove 4s linear infinite;
    }
    .australia {
      top: 70%; left: 75%;
      animation: australiaMove 4s linear infinite;
    }
    .newzeland {
      top: 81%; left: 84%;
      animation: newzealandMove 4s linear infinite;
    }

    @keyframes usaMove {
      0%, 20% { transform: translate(-50%, -50%); }
      5% { transform: translate(-50%, -50%) translateX(3px); }
      10% { transform: translate(-50%, -50%) translateX(-3px); }
      15% { transform: translate(-50%, -50%) translateX(3px); }
      20%, 100% { transform: translate(-50%, -50%); }
    }

    @keyframes ukMove {
      0%, 20% { transform: translate(-50%, -50%); }
      20%, 40% { transform: translate(-50%, -50%); }
      25% { transform: translate(-50%, -50%) translateX(3px); }
      30% { transform: translate(-50%, -50%) translateX(-3px); }
      35% { transform: translate(-50%, -50%) translateX(3px); }
      40%, 100% { transform: translate(-50%, -50%); }
    }

    @keyframes pakistanMove {
      0%, 40% { transform: translate(-50%, -50%); }
      40%, 60% { transform: translate(-50%, -50%); }
      45% { transform: translate(-50%, -50%) translateX(3px); }
      50% { transform: translate(-50%, -50%) translateX(-3px); }
      55% { transform: translate(-50%, -50%) translateX(3px); }
      60%, 100% { transform: translate(-50%, -50%); }
    }

    @keyframes australiaMove {
      0%, 60% { transform: translate(-50%, -50%); }
      60%, 80% { transform: translate(-50%, -50%); }
      65% { transform: translate(-50%, -50%) translateX(3px); }
      70% { transform: translate(-50%, -50%) translateX(-3px); }
      75% { transform: translate(-50%, -50%) translateX(3px); }
      80%, 100% { transform: translate(-50%, -50%); }
    }

    @keyframes newzealandMove {
      0%, 80% { transform: translate(-50%, -50%); }
      80%, 100% { transform: translate(-50%, -50%); }
      85% { transform: translate(-50%, -50%) translateX(3px); }
      90% { transform: translate(-50%, -50%) translateX(-3px); }
      95% { transform: translate(-50%, -50%) translateX(3px); }
      100% { transform: translate(-50%, -50%); }
    }

    .location:hover {
      background: rgba(200, 0, 0, 0.9);
      transform: translate(-50%, -50%) scale(1.2);
      z-index: 10;
      animation-play-state: paused;
    }


/*newz and events111111111111111111111111111*/

    * {
      box-sizing: border-box;
    }
    body {
      font-family: Roboto, sans-serif;
      margin: 0;
      padding: 0;
    }
    .news-section {
      padding: 2px 0;
      background-color: #f9f9f9;
    }

    /* Wrapper to control side spacing */
    .news-slider-wrapper {
      max-width: 1200px;
      margin: auto;
      padding: 10 20px;
    }

    .news-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
    }

    .news-slider {
      display: flex;
      gap: 30px; /* increased gap */
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 20px;
    }
    .news-card {
      min-width: 280px;
      background: #fff;
      border-radius: 10px;
      border: 1px solid #ccc;
      box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
      overflow: hidden;
      flex: 0 0 calc(30% - 20px); /* reduced width */
      transition: transform 0.2s ease;
    }
    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
    }
    .news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .news-card-body {
      padding: 15px;
    }
    .news-card-date {
      font-size: 0.9em;
      color: gray;
    }
    .news-card-desc {
      margin: 10px 0;
    }
    .read-more {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
    }
    .read-more:hover {
      text-decoration: underline;
    }

    .pagination-dots {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #ccc;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
      cursor: pointer;
    }

    .dot.active {
      background-color: red;
    }

    @media (max-width: 992px) {
      .news-card {
        flex: 0 0 calc(50% - 30px);
      }
    }
    @media (max-width: 768px) {
      .news-slider-wrapper {
        padding: 0 15px;
      }
      .news-card {
        flex: 0 0 100%;
      }
    }

    .news-slider::-webkit-scrollbar {
      display: none;
    }
    .news-slider {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    
    
    /*sliderrrrrrkr*/
    .slide-content {
        position: absolute;
        top: 57%;
        left: 3%;
        transform: translateY(-50%);
        text-align: left;
        width: 40%;
        max-width: 1200px;
        padding: 2rem;
        z-index: 3;
        background-color: rgba(255, 255, 255, 0.6); 
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  
    }

    /* Title Styles (keeping your existing red color) */
    .slide-title {
        font-family: "Roboto", Sans-serif;
        font-size: 2.5rem;
        font-weight: 1500;
        margin: 0 0 0.5rem 0;
        line-height: 1.1;
        color: #d61822; 
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        letter-spacing: -1px;
        position: relative;
        display: inline-block;
        opacity: 0;
        transform: translateY(30px);
        padding-bottom: 10px;
        width: 100%;
    }

    /* Subtitle Styles (keeping your existing white color) */
    .slide-subtitle {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        color: black; /* Your existing white color */
        /*font-weight: 300;*/
        font-family: 'Roboto', sans-serif;
        line-height: 1.3;
        letter-spacing: 0.5px;
        max-width: 70%;
        opacity: 0;
        transform: translateY(20px);
        text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
    /* Underline Style (keeping your existing grey line) */
    .slide-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: #808080; /* Your existing grey color */
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: left;
    }

    /* Responsive Adjustments */
    @media(max-width: 992px) {
        .slide-content {
            left: 5%;
            width: 90%;
            padding: 1.5rem;
        }
        
        .slide-title {
            font-size: 2rem;
        }
        
        .slide-subtitle {
            /*font-size: 1.2rem;*/
            max-width: 90%;
        }
    }

@media(max-width: 768px) {
    .slide-content {
        padding: 1rem;
        backdrop-filter: none; /* Better performance on mobile */
        -webkit-backdrop-filter: none;
        bottom: 5%;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-subtitle {
        /*font-size: 1rem;*/
    }
}

/* Mobile view */
@media(max-width: 480px) {
    .slide-content {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.8rem;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-subtitle {
        /*font-size: 0.9rem;*/
    }
}


/*service ssssi*/


body {
    background: #262b3e;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 93%;
    margin: 0 auto;
}

/* Service box */
/* Now static uses darker colors (previous hover) */
.service-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 180px;
    width: 32%;
    min-width: 280px;
    background: linear-gradient(
        135deg,
        #3b486a 59%,
        #3b486ad4 59%,
        #3b486aff 66%
    );


        padding: 20px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        flex-shrink: 0;
        border: 1px solid #1c1d21;
    }

/* Hover */
/* Hover now uses lighter colors (previous static) */
.service-box:hover {
    background: linear-gradient(135deg,
        rgb(235,27,35) 0%, 
        #ff6f61 60%,
        #f5f5f5 100%
    );
    box-shadow: 0 8px 30px rgba(235,27,35, 0.85);
    border-color: rgb(235,27,35);
}

/* Shine effect */
.service-box span {
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    transition: 0.5s;
    transform: skewX(12deg);
}
.service-box:hover span {
    left: 110%;
}

/* Border animation */
.service-box:before,
.service-box:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border: 3px solid #fff;
    opacity: 0;
    transition: 0.5s;
    box-sizing: border-box;
}
.service-box:before {
    top: 0;
    left: 0;
    border-top-left-radius: 12px;
}
.service-box:after {
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 12px;
}
.service-box:hover:before,
.service-box:hover:after {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition-delay: 0.3s;
}

/* Left part: icon + title */
.service-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

/* Icon circle */
.service-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -17px;
    /*box-shadow: 0 0 12px rgba(235,27,35, 0.7);*/
}

.service-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Title */
.service-left h3 {
    font-size: 18px;
    color: #fff;
    margin: 31px !important;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    /*text-shadow: 0 0 6px rgba(235,27,35, 0.8);*/
}

/* Right part: description */
.service-right {
    flex: 2;
    padding-left: 15px;
}

.service-right p {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}

/* Responsive layout */

/* Tablets: 2 boxes per row */
@media (max-width: 1024px) {
    .service-box {
        width: 45%;
    }
}

/* Mobiles: stack vertically */
@media (max-width: 767px) {
    .service-box {
        flex-direction: column;
        width: 90%;
        text-align: center;
    }

    .service-right {
        padding-left: 0;
        margin-top: 10px;
    }
}



/*counters*/



        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            overflow-x: hidden;
        }

               .counter-up {
            background: url('{{ asset('front/assets/images/steptodown.com913817 (1).jpg') }}') no-repeat center center/cover;
            min-height: 100vh;
            padding: 40px 5%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            z-index: 1;
            overflow: hidden;
        }
        
        .counter-up::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(214, 24, 34, 0.8); /* Red with 40% opacity */
            z-index: -1;
        }
        .section-heading {
            width: 100%;
            text-align: center;
            padding: 20px 0;
        }

        .section-heading h1 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .content {
            width: 100%;
            max-width: 1200px;
            margin: 30px auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .box {
            width: calc(25% - 30px);
            min-width: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            perspective: 1000px;
        }

        .card-container {
            position: relative;
            width: 100%;
            height: 220px;
            margin-bottom: 25px;
            transform-style: preserve-3d;
            transition: transform 0.8s;
        }

        .box:hover .card-container {
            transform: rotateY(180deg);
        }

        .card {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border: 2px dashed rgba(255,255,255,0.4);
            border-radius: 8px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .card-front {
            background:#3b486a;
        }

        .card-back {
            background: #1d284a;
            transform: rotateY(180deg);
            text-align: center;
        }

        .icon {
            font-size: 50px;
            color: #fff;
            margin-bottom: 20px;
        }

        .text {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            text-align: center;
        }

        .back-text {
            color: #fff;
            font-size: 18px;
            line-height: 1.5;
        }

        .counter {
            font-size: 60px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            margin-top: 15px;
            width: 100%;
            font-family: 'Roboto', sans-serif;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        @media (max-width: 1100px) {
            .box {
                width: calc(50% - 30px);
            }
            
            .content {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .counter-up {
                padding: 30px 5%;
            }
            
            .section-heading h1 {
                font-size: 24px;
            }
            
            .box {
                width: 100%;
                max-width: 350px;
            }
            
            .card-container {
                height: 200px;
            }
            
            .counter {
                font-size: 50px;
            }
        }

        @media (max-width: 480px) {
            .section-heading h1 {
                font-size: 22px;
            }
            
            .card {
                padding: 20px;
            }
            
            .icon {
                font-size: 40px;
                margin-bottom: 15px;
            }
            
            .text {
                font-size: 18px;
            }
            
            .back-text {
                font-size: 16px;
            }
        }
        
        
        
        /*coustum swiper*/
        

/* Navigation Button Styles */
.custom-swiper-button-next,
.custom-swiper-button-prev {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-swiper-button-next {
    right: 0;
}

.custom-swiper-button-prev {
    left: 0;
}

/* SVG Arrow Styles */
.custom-swiper-button-next svg,
.custom-swiper-button-prev svg {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-swiper-container {
        padding: 0 30px;
    }
    
    .custom-swiper-button-next,
    .custom-swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}


/*readmore button*/


.read-more-btn {
    display: inline-block;
    padding: 5px 8px;
    color: rgb(177,32,42);
    text-decoration: none;
    font-weight: 300;
    border: 1px solid rgb(219,52,61);
    border-radius: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background-color: white;
}

.read-more-btn:hover {
    color: white;
    background-color: rgb(177,32,42);
    transform: translateY(-2px);
}

.service-right {
    position: relative;
    overflow: visible;
    padding-bottom: 12px;
}

.service-box {
    position: relative;
    z-index: 1;
}

.counter-label {
    font-size: 0.5em;    
    /*margin-left: 2px;      */
    vertical-align: middle; 
    color: inherit;         
    font-weight: normal;    
}


/*departments slider*/

@media (max-width: 767px) {
    /* Increase height of the whole card container */
    .elementor-12462 .elementor-element.elementor-element-782ea588 {
        min-height: 550px !important; /* adjust as needed */
        flex-direction: column;
    }

    /* Allow content section to grow and not cut text */
    .elementor-12462 .elementor-element.elementor-element-4445ed57 {
        flex-grow: 1;
        overflow: visible;
    }

    /* Make sure image section doesn’t shrink the rest */
    .elementor-12462 .elementor-element.elementor-element-1f74f874 {
        flex-shrink: 0;
    }

    /* Button spacing fix */
    .elementor-12462 .elementor-element.elementor-element-69cc6450 {
        margin-top: 10px;
    }

    .elementor-12462 .elementor-element.elementor-element-69cc6450 .elementor-button {
        font-size: 14px;
        padding: 8px 14px;
    }
}



  /*new*/
  
  .amenity-static {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.amenity-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.amenity-content-wrapper.even {
  flex-direction: row-reverse;
}

.amenity-image {
  flex: 1;
  max-width: 600px;
  height: 420px;
  position: relative;
}

.amenity-image .swiper,
.amenity-image .swiper-wrapper,
.amenity-image .swiper-slide {
  width: 100%;
  height: 100%;
}

.amenity-image .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.amenity-text {
  flex: 1;
  padding: 10px;
}

.amenity-text h2 {
  color: #004080;
  font-size: 28px;
  margin-bottom: 15px;
}

.amenity-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.divider-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.divider-line {
  flex: 1;
  height: 2px;
  background-color: #ccc;
  margin: 0 10px;
}

.divider-icon img {
  width: 40px;
  height: 40px;
  animation: zoom 3s ease-in-out infinite;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
  
  
  .zoom-animation {
  animation: zoom 2s infinite;
}

}

@media (max-width: 768px) {
  .amenity-content-wrapper {
    flex-direction: column;
  }

  .divider-icon img {
    width: 30px;
    height: 30px;
  }

  .amenity-image {
    height: 250px;
  }
}

/*xxx*/

/*circ;el*/

#hope-chart-isolated {
    all: initial;
    display: block;
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

#hope-chart-isolated .hope-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

#hope-chart-isolated .hope-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
            #3b873e 0deg 45deg,
            #45c1d3 45deg 90deg,
            #328dd3 90deg 135deg,
            #1d2b5f 135deg 180deg,
            #9b1d2a 180deg 225deg,
            #c5362e 225deg 270deg,
            #f58922 270deg 315deg,
            #f1c40f 315deg 360deg
        );
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#hope-chart-isolated .hope-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 40%;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#hope-chart-isolated .hope-label {
    position: absolute;
    width: 150px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.4;
}

#hope-chart-isolated .hope-label1 {
    top: 14%;
    left: 64%;
    transform: translateX(-50%);
    color: #fff;
}

#hope-chart-isolated .hope-label2 {
    top: 34%;
    left: 85%;
    transform: translateX(-50%);
    color: #fff;
}

#hope-chart-isolated .hope-label3 {
    top: 63%;
    left: 85%;
    transform: translate(-50%, -50%);
    color: #fff;
}

#hope-chart-isolated .hope-label4 {
    bottom: 10%;
    left: 65%;
    transform: translateX(-50%);
    color: #fff;
}

#hope-chart-isolated .hope-label5 {
    bottom: 10%;
    left: 37%;
    transform: translateX(-50%);
    color: #fff;
}

#hope-chart-isolated .hope-label6 {
    bottom: 32%;
    left: 18%;
    transform: translateX(-50%);
    color: #fff;
}

#hope-chart-isolated .hope-label7 {
    top: 38%;
    left: 16%;
    transform: translate(-50%, -50%);
    color: #fff;
}

#hope-chart-isolated .hope-label8 {
    top: 15%;
    left: 36%;
    transform: translateX(-50%);
    color: #fff;
}

@media (max-width: 991px) {
    #hope-chart-isolated {
        margin: 0 auto;
        width: 80% !important;
        max-width: 350px;
    }
}
               
                    /*journey */
                    
                    
                    
                    
.journey-section {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 60px;

  padding: 0 20px;

  max-width: 92%;

  margin: 0 auto 80px auto;

}



.journey {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 40px;

  flex-wrap: nowrap;

  width: 100%;

}



.journey.reverse {

  flex-direction: row-reverse;

}



.journey-image {

  width: 450px;

  height: 350px;

  overflow: hidden;

  border-radius: 12px;

  flex-shrink: 0;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}



.journey-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 12px;

   margin-top: 40px; 

}



.journey-content {

  max-width: 650px;

  flex: 1;

  padding: 0;

  background-color:

  border-radius: 0; 

  box-shadow: none; 

  display: flex;

  flex-direction: column;


}



.journey-content h2 {

  font-size: 28px;

  margin-bottom: 15px;

  color: #003366;

}



.journey-content p {
   text-align: justify;
  font-size: 16px;

  line-height: 1.8;

  color: #444;

}



/* Divider Style */

.divider-with-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin: 40px 0;

  width: 100%;

}



.divider-line {

  height: 2px;

  background: #ccc;

  flex-grow: 1;

}
.divider-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease-in-out;
}

.divider-icon img:hover {
  transform: scale(1.2);
}

/* ✅ Responsive */

@media (max-width: 768px) {

  .journey {

    flex-direction: column !important;

    text-align: center;

    gap: 25px;

  }



  .journey-image {
    width: 100%;
    height: 220px;

  }



  .journey-content {

    width: 100%;

    padding: 20px;

    margin: 0;

    text-align: center;

  }

}

