@charset "utf-8";
/* CSS Document */
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
            color: #2c3e50;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

         /* Hero Section with Image and Slider */
        .hero-section {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            background: white;
            border-radius: 20px;
            padding: 30px;
			padding-top: 180px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .hero-left {
            width: 30%;
        }

        .hero-left img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .hero-left img:hover {
            transform: translateY(-5px);
        }

        .hero-right {
            width: 70%;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .slider {
            position: relative;
            height: 450px;
            overflow: hidden;
            border-radius: 15px;
        }

        .slide {
            position: absolute;
            min-width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .slider-controls {
            position: absolute;
            bottom: 00px;
			left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
			background: #ec1d24;
			border-radius: 10px;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .slider-dot.active {
            background: white;
            width: 40px;
            border-radius: 7px;
        }

        /* App Download Section */
        .app-download {
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5em;
            color: #1a365d;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ec1d24 0%, #b91419 100%);
            border-radius: 2px;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .app-btn {
            display: block;
            text-decoration: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .app-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(236, 29, 36, 0.3);
        }

        .app-btn img {

            width: 300px;
            height: 80px;
            object-fit: cover;
            display: block;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .app-btn:hover img {
            filter: brightness(1.1);
        }

        /* Two Column Info Section */
        .info-section-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
        }

        .info-left {
            width: 70%;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .info-right {
            width: 30%;
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            min-height: 400px;
        }



        .info-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5em;
            color: #1a365d;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ec1d24;
        }

        .info-content {
            max-height: 150px;
            overflow: hidden;
            transition: max-height 0.5s ease;
            position: relative;
        }

        .info-content.expanded {
            max-height: 2000px;
        }

        .info-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, transparent, white);
            transition: opacity 0.3s ease;
        }

        .info-content.expanded::after {
            opacity: 0;
        }

        .info-toggle-btn {
            display: block;
            margin: 20px auto 0;
            padding: 12px 35px;
            background: #ec1d24;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1em;
        }

        .info-toggle-btn:hover {
            background: #b91419;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(236, 29, 36, 0.4);
        }

        .toggle-content {
            max-height: 150px;
            overflow: hidden;
            transition: max-height 0.5s ease;
            position: relative;
        }

        .toggle-content.expanded {
            max-height: 2000px;
        }

        .toggle-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, transparent, white);
            transition: opacity 0.3s ease;
        }

        .toggle-content.expanded::after {
            opacity: 0;
        }

        .toggle-btn {
            display: block;
            margin: 20px auto 0;
            padding: 12px 35px;
            background: linear-gradient(135deg, #ec1d24 0%, #b91419 100%);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .toggle-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(236, 29, 36, 0.4);
        }

        /* Image Links Grid */
        .image-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .image-link-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 280px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .image-link-item img {

            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-link-item:hover img {
            transform: scale(1.1);
        }

        .image-link-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(236, 29, 36, 0.95), rgba(185, 20, 25, 0.95));
            color: white;
            padding: 25px;
            transition: bottom 0.4s ease;
        }

        .image-link-item:hover .image-link-overlay {
            bottom: 0;
        }

        .image-link-overlay h3 {
            font-size: 1.4em;
            margin-bottom: 10px;
        }

        /* YouTube Videos Section */
        .youtube-section {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            margin-bottom: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .video-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .video-item:hover {
            transform: translateY(-8px);
        }

        .video-item.playing {
            opacity: 0;
            transition: opacity 0.5s ease-out;
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
        }

        .video-player.active {
            display: block;
        }

        .video-player iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 5;
        }

        .video-item:hover .play-button {
            background: #ec1d24;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #333;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .video-item:hover .play-button::after {
            border-left-color: white;
        }

        .video-title {
            padding: 20px 15px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            font-weight: 600;
            font-size: 1.05em;
            color: #2c3e50;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 3px solid #e8f0f7;
        }

        .video-item:hover .video-title {
            background: linear-gradient(135deg, #ec1d24 0%, #b91419 100%);
            color: white;
            border-top-color: #ec1d24;
        }

        /* Video Modal */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .video-modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .modal-close-btn {
            position: absolute;
            top: -50px;
            right: 0;
            background: white;
            color: #333;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
            font-weight: bold;
        }

        .modal-close-btn:hover {
            background: #ec1d24;
            color: white;
            transform: rotate(90deg);
        }

        .modal-youtube-btn {
            position: absolute;
            top: -50px;
            right: 60px;
            background: #ec1d24;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .modal-youtube-btn:hover {
            background: #b91419;
            transform: translateY(-3px);
        }

        .youtube-link {
            text-align: center;
            margin-top: 20px;
        }

        .youtube-link a {
            display: inline-block;
            padding: 15px 40px;
            background: #ec1d24;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .youtube-link a:hover {
            background: #b91419;
            transform: scale(1.05);
        }

        /* Three Column Section */
        .three-column-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .column {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8em;
            color: #1a365d;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ec1d24;
        }

        .blog-post {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .blog-post:last-child {
            border-bottom: none;
        }

        .blog-post:hover {
            transform: translateX(5px);
        }

        .blog-post-title {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.05em;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .blog-post:hover .blog-post-title {
            color: #ec1d24;
        }

        .blog-post-date {
            color: #7f8c8d;
            font-size: 0.85em;
            font-weight: 400;
        }

        .blog-loading {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
            font-style: italic;
        }

        .blog-error {
            text-align: center;
            padding: 20px;
            color: #ec1d24;
            font-size: 0.9em;
        }

        .page-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .page-link {
            padding: 18px 25px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
            border-radius: 12px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 4px solid #ec1d24;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .page-link:hover {
            background: linear-gradient(135deg, #ec1d24 0%, #b91419 100%);
            color: white;
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(236, 29, 36, 0.3);
        }

        .page-link::before {
            content: '→';
            font-size: 1.2em;
            font-weight: bold;
        }

       /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-section {
                flex-direction: column;
                padding-top: 30px;
            }

            .hero-left, .hero-right {
                width: 100%;
            }

            .slider {
                height: 350px;
            }

            .info-section-wrapper {
                flex-direction: column;
            }

            .info-left, .info-right {
                width: 100%;
            }

            .image-links-grid,
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .three-column-section {
                grid-template-columns: 1fr;
            }

            .app-btn img {
                width: 250px;
                height: 70px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .hero-section {
                padding: 20px;
                padding-top: 20px;
                margin-bottom: 30px;
            }

            .slider {
                height: 250px;
            }

            .section-title {
                font-size: 1.8em;
                margin-bottom: 25px;
            }

            .app-download {
                padding: 25px 15px;
            }

            .app-buttons {
                gap: 15px;
            }

            .app-btn {
                width: 100%;
                max-width: 100%;
            }

            .app-btn img {
                width: 100%;
                max-width: 300px;
                height: auto;
                margin: 0 auto;
            }

            .info-left, .info-right, .column {
                padding: 25px;
            }

            .info-title, .column h3 {
                font-size: 1.4em;
            }

            .image-links-grid,
            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .image-link-item {
                height: 250px;
            }

            .youtube-section {
                padding: 30px 20px;
            }

            .video-modal-content {
                width: 95%;
            }

            .modal-close-btn {
                top: -45px;
                width: 40px;
                height: 40px;
            }

            .modal-youtube-btn {
                top: -45px;
                right: 50px;
                padding: 10px 20px;
                font-size: 12px;
            }

            .play-button {
                width: 60px;
                height: 60px;
            }

            .play-button::after {
                border-left: 16px solid #333;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }

            .slider-controls {
                bottom: 15px;
                gap: 8px;
            }

            .slider-dot {
                width: 12px;
                height: 12px;
            }

            .slider-dot.active {
                width: 30px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5em;
            }

            .hero-section {
                padding: 15px;
            }

            .slider {
                height: 200px;
            }

            .app-btn img {
                max-width: 100%;
                height: auto;
            }

            .info-left, .info-right, .column {
                padding: 20px;
            }

            .image-link-item {
                height: 200px;
            }

            .image-link-overlay {
                padding: 15px;
            }

            .image-link-overlay h3 {
                font-size: 1.2em;
            }

            .image-link-overlay p {
                font-size: 0.9em;
            }

            .video-title {
                padding: 15px 10px;
                font-size: 0.95em;
            }

            .page-link {
                padding: 15px 20px;
                font-size: 0.95em;
            }

            .modal-youtube-btn {
                display: none;
            }

            .modal-close-btn {
                top: -40px;
                right: 5px;
            }
        }