        /* ===================== BACK TO TOP BUTTON ===================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #FF6417;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(255, 100, 23, 0.4);
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .back-to-top:hover {
            background: white;
            color: #FF6417;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 100, 23, 0.5);
            border-color: #FF6417;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .back-to-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.3rem;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f5f5f5;
            overflow-x: hidden;
        }

        /* ===================== LOADER STYLES ===================== */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-wrapper.hide {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(231, 231, 231, 0.3);
            border-top: 5px solid #FF6417;
            border-radius: 50%;
            animation: rotation_51512 1.2s infinite cubic-bezier(0.785, 0.135, 0.15, 0.86);
        }

        @keyframes rotation_51512 {
            0% {
                transform: rotate(0deg);
            }
            70% {
                box-shadow: 0px 0px 10px 15px rgba(255, 100, 23, 0.3);
            }
            90% {
                box-shadow: 0px 0px 10px 15px rgba(255, 100, 23, 0.05);
            }
            100% {
                transform: rotate(360deg);
                opacity: 0.8;
            }
        }

        /* Optional: Add a second loader ring for extra effect */
        .loader-wrapper .loader-ring {
            position: absolute;
            width: 120px;
            height: 120px;
            border: 2px solid rgba(255, 100, 23, 0.2);
            border-radius: 50%;
            animation: pulse 1.5s infinite ease-in-out;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }
        
        .header {
            background-color: rgba(255, 255, 255, 0.8);
            padding: 10px 40px;
            border-radius: 50px;
            margin: 20px;
            box-shadow: 10px 10px 10px rgba(174, 174, 192, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-height: 70px;
            background-image: url('../Images/header_pattren/network-pattern.png');
            background-repeat: no-repeat;
            background-size: 100% 100%;
            background-position: top center;
            background-attachment: scroll;
        }

            .header::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: url('../Images/header_pattren/network-pattern.png');
                background-repeat: no-repeat;
                background-size: 100% 100%;
                background-position: top center;
                z-index: -1;
                border-radius: 50px;
            }

        .header-content {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo {
            width: 100px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
        }

            .logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .nav-menu {
            display: flex;
            gap: 15px;
            list-style: none;
        }

            .nav-menu li a {
                text-decoration: none;
                color: #333;
                font-weight: 500;
                transition: all 0.3s ease;
                padding: 8px 12px;
                border-radius: 5px;
                position: relative;
                display: inline-block;
                font-size: 14px;
            }

                .nav-menu li a::after {
                    content: '';
                    position: absolute;
                    width: 0;
                    height: 2px;
                    bottom: 0;
                    left: 50%;
                    background-color: #FF6417;
                    transition: all 0.3s ease;
                    transform: translateX(-50%);
                }

                .nav-menu li a:hover::after {
                    width: 100%;
                }

                .nav-menu li a:hover {
                    color: #FF6417;
                }

        .header-btn {
            background-color: #FF6417;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(255, 100, 23, 0.3);
        }

            .header-btn:hover {
                background-color: white;
                color: #FF6417;
                box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417;
                transform: translateY(-2px);
            }

        .banner {
            width: 100%;
            height: 100vh;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

            .banner-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

        .banner-text {
            position: absolute;
            top: 75%;
            left: 70%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 45%;
            max-width: 900px;
        }

        .banner-title {
            font-size: 2rem;
            font-style: italic;
            font-weight: 500;
            margin-bottom: 10px;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
            line-height: 1.2;
            opacity: 0;
            transform: translateY(100px) scale(0.8);
            animation: elegantReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
        }

        .banner-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUp 1.2s ease-out 1.2s forwards;
            letter-spacing: 2px;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient( 135deg, rgba(255, 100, 23, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 100, 23, 0.1) 100% );
            z-index: 1;
            opacity: 0;
            animation: overlayFade 2s ease-out 0.2s forwards;
        }

        /* ============ SINGLE PAGE BANNER BREADCRUMB ============= */
        .singl-banner {
            width: 100%;
            height: 70vh;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .singl-banner-image {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .singl-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .singl-banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 45%;
            max-width: 900px;
        }

        .singl-banner-title {
            font-size: 4rem;
            font-weight: 500;
            margin-bottom: 10px;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
            line-height: 1.2;
            opacity: 0;
            transform: translateY(100px) scale(0.8);
            animation: elegantReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
        }

        .singl-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 100, 23, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 100, 23, 0.1) 100%);
            z-index: 1;
            opacity: 0;
            animation: overlayFade 2s ease-out 0.2s forwards;
        }

        .singl-banner-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.2rem;
            margin-top: 15px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1s ease-out 1.5s forwards;
        }

        .breadcrumb-home {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-home:hover {
            color: #FF6417;
        }

        .breadcrumb-divider {
            color: #FF6417;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .breadcrumb-current {
            color: white;
            font-weight: 500;
        }

        /* END */

        /* Content Section */
        .content-section-1 {
            min-height: 100vh;
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .content-container-1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .content-image {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

            .content-image.reveal {
                opacity: 1;
                transform: translateX(0);
            }

        .content-text {
            opacity: 0;
            transform: translateX(100px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        }

            .content-text.reveal {
                opacity: 1;
                transform: translateX(0);
            }

        .content-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* About Us Section Styles */
.about-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(200, 200, 200, 0.92), rgba(200, 200, 200, 0.92));
    background-size: cover;
    background-position: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6417;
    text-align: center;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    color: #FF6417;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6417;
    margin-bottom: 20px;
}

.value-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}


        /* UPDATED: Values grid now stacks vertically */
        .value-2-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .value-2-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: left; 
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .value-2-card:hover {
            transform: translateY(-10px);
        }

        .value-2-icon {
            font-size: 3rem;
            color: #FF6417;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-align: center; /* UPDATED: Icons centered */
            display: block; /* UPDATED: Ensure proper centering */
        }

        .value-2-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #FF6417;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-align: center; /* UPDATED: Orange titles centered */
        }

        .value-2-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            position: relative;
            z-index: 2;
            text-align: left; /* Description text remains left-aligned */
        }

/* Core Values Card - Background will come from HTML */
.value-card.core-value-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

/* Dark overlay for better text readability on Core Values card */
.value-card.core-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 185, 185, 0.342);
    z-index: 1;
    border-radius: 20px;
}

.value-card.core-value-card:hover::before {
    background: rgba(207, 207, 207, 0.493);
}

.value-card.core-value-card .value-icon,
.value-card.core-value-card .value-title,
.value-card.core-value-card .value-description {
    position: relative;
    z-index: 2;
    color: #FF6417;
}

        /* Services Section - Updated with overlay text and no gaps */
        .services-section {
            padding: 100px 0;
            background: white;
        }

        .services-container {
            max-width: 100%; /* Full width */
            margin: -50 auto;
            padding: 0; /* No padding */
        }

        .services-title {
            font-size: 3rem;
            font-weight: 700;
            color: #FF6417;
            text-align: center;
            margin-bottom: 3px;
            padding: 0 10px;
        }

        .services-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 60px;
            color: #666;
            padding: 0 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
            gap: 0; /* No gap between containers */
        }

        .service-card {
            position: relative;
            overflow: hidden;
            height: 500px; /* Increased height */
            transition: all 0.4s ease;
        }

            .service-card:hover {
                transform: scale(1.05);
                z-index: 10;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            }

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

            .service-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.4s ease;
            }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100% );
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-overlay {
            background: linear-gradient( to bottom, rgba(255, 100, 23, 0.1) 0%, rgba(255, 100, 23, 0.8) 100% );
        }
        /* When hovering over one card, all cards scale slightly together */
        .services-grid:hover .service-card {
            transform: scale(1.03);
            transition: all 0.4s ease;
        }

        /* But the hovered one grows a bit more for focus */
        .services-grid .service-card:hover {
            transform: scale(1.08);
            z-index: 10;
        }

        .service-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            opacity: 0.9;
        }

        .service-btn {
            background-color: #FF6417;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            width: fit-content;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

            .service-btn:hover {
                background-color: white;
                color: #FF6417;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(255, 100, 23, 0.4);
            }
        /* === BLOG SECTION === */
        .blog-section {
            background: #fafafa;
            padding: 100px 0;
            position: relative;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .blog-title {
            font-size: 3rem;
            font-weight: 700;
            color: #FF6417;
            margin-bottom: 10px;
        }

        .blog-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 60px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        /* BLOG CARD */
        .blog-card {
            background: #fff;
            border-radius: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

            .blog-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(255, 100, 23, 0.3);
            }

        /* BLOG IMAGE */
        .blog-image {
            width: 100%;
            height: 230px;
            overflow: hidden;
        }

            .blog-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.6s ease;
            }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        /* BLOG CONTENT */
        .blog-content {
            padding: 25px 30px 35px;
            text-align: left;
        }

        .blog-date {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .blog-heading {
            font-size: 1.4rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-heading {
            color: #FF6417;
        }

        .blog-text {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* READ MORE BUTTON (same style as Our Services) */
        .blog-btn {
            display: inline-block;
            padding: 10px 30px;
            background-color: #FF6417;
            color: #fff;
            align-items: center;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 100, 23, 0.3);
        }

            .blog-btn:hover {
                background-color: white;
                color: #FF6417;
                box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417;
                transform: translateY(-2px);
            }
            
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .blog-title {
                font-size: 2.4rem;
            }

            .blog-subtitle {
                font-size: 1.1rem;
            }

            .blog-image {
                height: 200px;
            }
        }
        
              .more-blogs-wrapper {
          margin: 50px auto;
          position: relative;
          left: 135%;
          transform: translateX(-50%);
          width: fit-content;
      }
        
        /* === NEWSLETTER SECTION === */
        .newsletter-section {
            background: linear-gradient(135deg, #fffaf5, #fdf6f0);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Container Animation */
        .newsletter-container {
            background: #ffffff;
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(40px);
        }

            /* NEWSLETTER SCROLL ANIMATION */
            .newsletter-container.reveal {
                opacity: 0;
                transform: translateY(40px);
                transition: all 1s ease;
            }

                .newsletter-container.reveal.active {
                    opacity: 1;
                    transform: translateY(0);
                }

        .newsletter-heading {
            font-size: 2.2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.2s;
        }

            .newsletter-heading.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .newsletter-subtext {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 35px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.4s;
        }

            .newsletter-subtext.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .newsletter-form {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.6s;
        }

            .newsletter-form.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

            .newsletter-form input {
                padding: 14px 20px;
                font-size: 1rem;
                border-radius: 30px;
                border: 1px solid #ccc;
                outline: none;
                width: 300px;
                transition: all 0.3s ease;
            }

                .newsletter-form input:focus {
                    border-color: #ff6200;
                    box-shadow: 0 0 8px rgba(255, 98, 0, 0.3);
                }

            .newsletter-form button {
                background: linear-gradient(90deg, #ff6200, #ff944d);
                color: #fff;
                font-weight: 700;
                border: none;
                border-radius: 30px;
                padding: 14px 35px;
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .newsletter-form button:hover {
                    background: linear-gradient(90deg, #ff944d, #ff6200);
                    transform: scale(1.05);
                    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4);
                }

        /* Social Icons */
        .newsletter-socials {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.8s;
        }

            .newsletter-socials.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

            .newsletter-socials img {
                width: 40px;
                height: 40px;
                object-fit: contain;
                transition: all 0.3s ease;
                filter: brightness(0.8);
            }

                .newsletter-socials img:hover {
                    transform: scale(1.25);
                    filter: brightness(1);
                }

        /* === FOOTER SECTION === */
        .footer {
            background: #fff;
            color: #333;
            padding: 70px 0 30px;
            position: relative;
            border-top: 1px solid #eee;
        }

        .footer-container {
            max-width: 1200px;
            margin: 10% auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 5px;
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

            .footer-logo.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

            .footer-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .footer-tagline {
            color: #666;
            line-height: 1.6rem;
            margin-bottom: 15px;
            font-size: 1rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

            .footer-tagline.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .footer-socials {
            display: flex;
            gap: 15px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
        }

            .footer-socials.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .footer-social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #333;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
        }

            .footer-social-icon:hover {
                background: #FF6417;
                color: white;
                transform: translateY(-5px);
                box-shadow: 0 6px 20px rgba(255, 100, 23, 0.4);
                border-color: #FF6417;
            }

        .footer-heading {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #333;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

            .footer-heading.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

            .footer-heading::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 40px;
                height: 2px;
                background: #FF6417;
            }

        .footer-contact-list {
            list-style: none;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

            .footer-contact-list.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

            .footer-contact-list li {
                margin-bottom: 12px;
                color: #666;
                font-size: 0.95rem;
                line-height: 1.5;
                transition: all 0.3s ease;
            }

                .footer-contact-list li:hover {
                    color: #FF6417;
                    padding-left: 5px;
                }

        .footer-links {
            list-style: none;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

            .footer-links.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

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

            .footer-links a {
                color: #666;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 0.95rem;
            }

                .footer-links a:hover {
                    color: #FF6417;
                    padding-left: 5px;
                }

        .footer-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

            .footer-text.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .footer-btn {
            background-color: #FF6417;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(255, 100, 23, 0.3);
            width: fit-content;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

            .footer-btn.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

            .footer-btn:hover {
                background-color: white;
                color: #FF6417;
                box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417;
                transform: translateY(-2px);
                text-decoration: none;
            }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 0;
            text-align: center;
            border-top: 1px solid #eee;
            margin-top: 60px;
            opacity: 1 !important;
            transform: translateY(0);
        }

            .footer-bottom.reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .footer-bottom-text {
            color: #000000;
            font-size: 0.9rem;
            font-weight: normal;
            text-align: center;
            line-height: 1.5;
            letter-spacing: normal;
            text-transform: none;
            margin-top: -10;
            padding: 0;
        }

        /* Responsive Footer */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-column {
                text-align: center;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-btn {
                margin: 0 auto;
            }
        }

        /* Elegant Animations */
        @keyframes elegantReveal {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
                filter: blur(10px);
            }

            50% {
                opacity: 0.8;
                filter: blur(5px);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes overlayFade {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        /* Scroll reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(100px);
            transition: all 1s ease;
        }

            .reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        .reveal-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s ease;
        }

            .reveal-left.active {
                opacity: 1;
                transform: translateX(0);
            }

        .reveal-right {
            opacity: 0;
            transform: translateX(100px);
            transition: all 1s ease;
        }

            .reveal-right.active {
                opacity: 1;
                transform: translateX(0);
            }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s ease;
        }

            .reveal-scale.active {
                opacity: 1;
                transform: scale(1);
            }

        /* Center alignment for navigation */
        .center-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
            }

            .service-card {
                height: 450px;
            }
        }

        @media (max-width: 1024px) {
            .banner-title {
                font-size: 3rem;
            }

            .banner-subtitle {
                font-size: 1.3rem;
            }

            .content-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-text, .content-image {
                text-align: center;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .about-main-title {
                font-size: 2.5rem;
            }

            .about-section {
                background-attachment: scroll;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 12px 20px;
                margin: 15px;
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
            }

            .nav-menu {
                gap: 15px;
            }

                .nav-menu li a {
                    font-size: 14px;
                    padding: 6px 8px;
                }

            .header-btn {
                padding: 10px 18px;
                font-size: 12px;
            }

            .banner {
                height: 100vh;
            }

            .banner-title {
                font-size: 2.2rem;
                padding: 0 20px;
            }

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

            .about-main-title {
                font-size: 2rem;
            }

            .about-subtitle {
                font-size: 1.5rem;
            }

            .value-card {
                padding: 30px 20px;
            }

            .services-title {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr; /* 1 column on mobile */
            }

            .service-card {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .banner-title {
                font-size: 1.8rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

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

            .about-main-title {
                font-size: 1.8rem;
            }

            .about-subtitle {
                font-size: 1.3rem;
            }

            .services-title {
                font-size: 2rem;
            }

            .services-subtitle {
                font-size: 1.2rem;
            }
        }
        /* Hamburger Icon Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
            z-index: 1001;
        }

            .hamburger span {
                display: block;
                width: 100%;
                height: 3px;
                background-color: #333;
                transition: all 0.3s ease;
            }

            /* Hamburger Animation for Open/Close */
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 500%;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            padding: 80px 20px 20px;
            transition: right 0.3s ease-in-out;
            z-index: 1000;
        }

            .mobile-menu.active {
                right: 0; /* Slide in when active */
            }

        .mobile-nav-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

            .mobile-nav-menu li a {
                text-decoration: none;
                color: #333;
                font-weight: 500;
                font-size: 16px;
                transition: color 0.3s ease;
            }

                .mobile-nav-menu li a:hover {
                    color: #FF6417;
                }

        .mobile-btn {
            margin-top: 20px;
            align-self: center;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav, .desktop-btn {
                display: none; /* Hide desktop navigation and button on mobile */
            }

            .hamburger {
                display: flex; /* Show hamburger icon on mobile */
            }

            .header-content {
                justify-content: space-between;
                align-items: center;
            }

            .header {
                padding: 12px 20px;
                margin: 15px;
            }
        }

        /* Ensure desktop layout remains unchanged */
        @media (min-width: 769px) {
            .hamburger, .mobile-menu {
                display: none; /* Hide hamburger and mobile menu on desktop */
            }
        }

        /* Fix for right gap */
        html, body {
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        * {
            max-width: 100%;
            box-sizing: border-box;
        }

        /* ============== corporate-training page =========== */
        /* Service Detail Section */
        .content-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .content-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-detail-card {
            background: #fff;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

            .service-detail-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            }

        .service-detail-heading {
            color: #FF6417;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-main-heading {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .service-description {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .program-categories {
            margin-top: 50px;
        }

        .program-heading {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 25px;
            text-align: center;
        }

        .category-section {
            margin-bottom: 40px;
        }

        .category-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #FF6417;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
        }

        .topics-list {
            list-style-type: none;
            padding-left: 0;
        }

        .topics-list li {
            padding: 8px 0;
            font-size: 1rem;
            color: #555;
            position: relative;
            padding-left: 20px;
        }

        .topics-list li:before {
            content: "•";
            color: #FF6417;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Enhanced Circle Section - FIXED CENTERING */
        .circle-container {
            margin-top: 30px;
            padding: 0;
            overflow-x: auto;
            width: 100%;
        }

        .circle-section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .circle-section-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .circle-section-header p {
           color: #666;
            font-size: 1rem;
        }

        /* FIXED: Centered grid with auto margins */
        .circle-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            justify-items: center;
            align-items: center;
            padding: 20px 0;
            width: 100%;
            margin: 0 auto;
        }

        .circle-item {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            text-align: center;
            padding: 15px;
            line-height: 1.3;
            position: relative;
            overflow: hidden;
            word-break: break-word;
            margin: 0 auto;
        }

        .circle-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
            border-radius: 50%;
            z-index: 1;
        }

        .circle-item::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .circle-item:hover::after {
            opacity: 1;
        }

        .circle-item a {
            color: inherit;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        /* Custom Color Sequence for 28 Circles */
        .circle-item:nth-child(1) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }

        .circle-item:nth-child(2) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(3) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(4) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(5) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(6) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(7) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(8) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(9) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(10) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(11) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(12) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(13) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(14) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(15) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(16) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(17) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(18) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(19) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(20) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(21) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(22) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(23) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(24) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(25) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(26) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .circle-item:nth-child(27) {
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            box-shadow: 0 8px 20px rgba(255, 100, 23, 0.3);
        }
        .circle-item:nth-child(28) {
            background: linear-gradient(135deg, #D3D3D3 0%, #A9A9A9 100%);
            color: #333;
        }

        .circle-item:hover {
            transform: scale(1.1);
            z-index: 10;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        
        /* Content container for text and download icon */
        .circle-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
        }
        
        /* Text moves up on hover */
        .circle-item:hover .circle-content {
            transform: translateY(-15px);
        }
        
        /* Download icon - hidden by default */
        .circle-item .download-icon {
            position: absolute;
            bottom: 10px;
            background: rgba(255, 255, 255, 0.9);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .circle-item:hover .download-icon {
            opacity: 1;
            transform: translateY(0);
        }
        
        .circle-item .download-icon i {
            color: #333;
            font-size: 14px;
        }
        
        
        /* === MOBILE RESPONSIVE ADJUSTMENTS - FIXED CENTERING === */
        
        /* Tablet view (3 columns) */
        @media (max-width: 992px) {
            .circle-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .circle-item {
                width: 140px;
                height: 140px;
                font-size: 0.9rem;
            }
        }
        
        /* Mobile view (2 columns) */
        @media (max-width: 768px) {
            .content-container {
                padding: 0 15px;
            }
            
            .service-detail-card {
                padding: 30px 20px;
            }
            
            .circle-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                justify-items: center;
            }
            
            .circle-item {
                width: 130px;
                height: 130px;
                font-size: 0.85rem;
                padding: 10px;
           }
            
            .circle-item .download-icon {
                width: 28px;
                height: 28px;
                bottom: 8px;
            }
            
        .circle-item .download-icon i {
                font-size: 12px;
            }
            
            .circle-item:hover {
                transform: scale(1.08);
            }
            
            .circle-item:hover .circle-content {
                transform: translateY(-10px);
            }
            
            .contact-info {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            
            .contact-item {
                justify-content: center;
                font-size: 0.95rem;
            }
    
            .contact-section {
                margin-top: 40px;
                padding-top: 30px;
            }
            
            .contact-title {
               font-size: 1.5rem;
            }
    
            .service-main-heading {
                font-size: 1.8rem;
            }
    
            .program-heading {
                font-size: 1.5rem;
            }
        }

        /* Small mobile view */
        @media (max-width: 480px) {
            .circle-grid {
                gap: 12px;
            }
    
            .circle-item {
                width: 110px;
                height: 110px;
                font-size: 0.75rem;
                padding: 8px;
            }
    
            .circle-item:hover {
                transform: scale(1.05);
            }
    
            .circle-item .download-icon {
                width: 24px;
                height: 24px;
                bottom: 5px;
            }
            
            .circle-item .download-icon i {
                font-size: 10px;
            }
        }

        /* Extra small screens */
        @media (max-width: 360px) {
            .circle-grid {
                gap: 10px;
            }
            
            .circle-item {
                width: 100px;
                height: 100px;
                font-size: 0.7rem;
                padding: 6px;
            }
    
            .contact-title {
                font-size: 1.3rem;
            }
    
            .contact-item {
                font-size: 0.85rem;
            }
        }
/* END */

        /* === CIRCLE ITEMS (2nd Page / coaching Page) === */
.circle-item {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 15px;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
}

.circle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
    border-radius: 50%;
    z-index: 1;
}

.circle-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.circle-item:hover::after {
    opacity: 1;
}

.circle-item:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* === CONTACT FORM SECTION === */
.contact-form-section {
    margin: 70px 0 50px;
    padding: 45px 40px;
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.92rem;
}

.form-group label.required::after {
    content: " *";
    color: #FF6417;
}

.form-group input,
.form-group select {
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6417;
    box-shadow: 0 0 0 3px rgba(255, 100, 23, 0.15);
}

/* Submit Button - Matching Footer Style */
.form-submit-btn {
    background-color: #FF6417;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 100, 23, 0.35);
    width: fit-content;
    display: block;
    margin: 35px auto 0;
}

.form-submit-btn:hover {
    background-color: white;
    color: #FF6417;
    box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417;
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .circle-item-2nd-page {
        width: 165px;
        height: 165px;
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .circle-grid {
        gap: 20px;
    }
    .circle-item-2nd-page {
        width: 150px;
        height: 150px;
        font-size: 0.98rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-form-section {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .circle-item-2nd-page {
        width: 135px;
        height: 135px;
        font-size: 0.9rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .contact-form-section {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .circle-item-2nd-page {
        width: 120px;
        height: 120px;
        font-size: 0.85rem;
        padding: 10px;
    }
    .contact-form-section {
        padding: 25px 20px;
    }
    .form-submit-btn {
        padding: 13px 28px;
        font-size: 14px;
    }
}


/* === THERAPY PAGE SERVICE DETAIL SECTION === */

/* Description Styling */
.service-description-1 {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 40px;
}

.service-description-1 p {
    margin-bottom: 18px;
}

.service-description-1 strong {
    color: #222;
}


/* Session Info */
.session-info-1 {
    background: #fff9f0;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #ffe6c2;
    margin: 30px 0;
    font-weight: 500;
    color: #333;
}

/* Contact Section */
.contact-section-1 {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.contact-title-1 {
    font-size: 1.75rem;
    color: #FF6417;
    margin-bottom: 20px;
}

.contact-info-1 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #444;
}

.contact-item-1 i {
    color: #FF6417;
    font-size: 1.3rem;
}

        /* Contact Page Specific Styles */
        .contact-main-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .contact-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-section {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .contact-info-title {
            color: #FF6417;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }

            .contact-info-title::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 60px;
                height: 3px;
                background: #FF6417;
                border-radius: 2px;
            }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

            .contact-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF6417 0%, #FF8C42 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-value {
            color: #666;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #333;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
        }

            .social-link:hover {
                background: #FF6417;
                color: white;
                transform: translateY(-5px);
                box-shadow: 0 6px 20px rgba(255, 100, 23, 0.4);
                border-color: #FF6417;
            }

        /* Contact Form Styling */
        .contact-form-section {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .form-title {
            color: #FF6417;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }

            .form-title::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 60px;
                height: 3px;
                background: #FF6417;
                border-radius: 2px;
            }

        .contact-form {
            max-width: 100%;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

            .form-group.full-width {
                grid-column: 1 / -1;
            }

            .form-group label {
                margin-bottom: 8px;
                font-weight: 500;
                color: #333;
                font-size: 0.9rem;
            }

                .form-group label.required::after {
                    content: " *";
                    color: #FF6417;
                }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 15px;
                border: 1px solid #ddd;
                border-radius: 8px;
                font-size: 1rem;
                transition: all 0.3s ease;
                background: white;
                resize: vertical;
            }

            .form-group textarea {
                min-height: 120px;
            }

                .form-group input:focus,
                .form-group select:focus,
                .form-group textarea:focus {
                    outline: none;
                    border-color: #FF6417;
                    box-shadow: 0 0 0 2px rgba(255, 100, 23, 0.2);
                }

        .form-submit-btn {
            background-color: #FF6417;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(255, 100, 23, 0.3);
            width: fit-content;
            display: block;
            margin: 30px auto 0;
        }

            .form-submit-btn:hover {
                background-color: white;
                color: #FF6417;
                box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417;
                transform: translateY(-2px);
            }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .contact-info-section,
            .contact-form-section {
                padding: 25px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .social-links {
                justify-content: center;
            }

            .banner-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 12px 20px;
                margin: 15px;
            }

            .banner-title {
                font-size: 2rem;
            }
        }

        /* Captcha Styles */
        .captcha-container {
            margin: 25px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .captcha-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            font-weight: 600;
            color: #ff7d00;
        }

        #captchaQuestion {
            font-size: 18px;
            font-weight: 700;
            color: #FF6417;
            background-color: #fff;
            padding: 8px 16px;
            border-radius: 6px;
            border: 2px dashed #FF6417;
            min-width: 120px;
            text-align: center;
        }

        .refresh-captcha {
            background-color: #FF6417;
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

            .refresh-captcha:hover {
                background-color: #ff7d00;
                transform: rotate(90deg);
            }

        .captcha-input-group {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 15px;
        }

        #captcha {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ff6417c1;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

            #captcha:focus {
                outline: none;
                border-color: #FF6417;
                box-shadow: 0 0 0 3px rgb(219, 154, 52, 0.20);
            }

        .captcha-hint {
            margin-top: 8px;
            font-size: 14px;
            color: #ff64178e;
            font-style: italic;
        }

        /* Validation styles */
        #captcha.error {
            border-color: #e74c3c;
            background-color: #fff5f5;
        }

        #captcha.valid {
            border-color: #2ecc71;
            background-color: #f0fff4;
        }

        /* HYPNOTHERAPY CERTIFICATION PAGE */
                /* SIMPLE Video Section Styles */
        .video-section {
            margin: 40px 0 60px;
            text-align: center;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

            .video-wrapper iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
            }

        /* Two Column Layout (Video Left + Timezone Right) */
        .two-column-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin: 70px 0;
            align-items: start;
        }

        /* Compact & Beautiful Timezone Card */
        .timezone-card {
            background: white;
            padding: 15px 15px;
            border-radius: 18px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            height: 100%;
            font-size: 0.95rem;
        }

            .timezone-card h3 {
                margin: 0 0 18px 0 !important;
                font-size: 1.5rem !important;
            }

        /* Labels chhote aur tight */
        .timezone-container label {
            font-weight: 600;
            color: #333;
            margin: 14px 0 6px 0;
            display: block;
            font-size: 0.95rem;
        }

        /* Inputs/selects chhote aur compact */
        .timezone-container select,
        .timezone-container input {
            width: 100% !important; /* 80% se 100% kiya taake neat lage */
            padding: 11px 10px !important;
            border: 1.4px solid #ddd;
            border-radius: 10px;
            font-size: 14.5px !important;
            margin-bottom: 9px;
        }

        /* Date-Time row compact */
        .date-time-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            margin-bottom: 10px;
        }

        /* Updated Buttons Style - Exactly like "Contact Us" button */
        .buttons {
            display: flex;
            gap: 12px;
            margin-top: 18px;
            justify-content: center;
        }

            .buttons button {
                padding: 12px 110px !important;
                border: none;
                border-radius: 10px !important;
                font-weight: 600;
                font-size: 15px !important;
                cursor: pointer;
                transition: all 0.4s ease;
                box-shadow: 0 4px 15px rgba(255, 100, 23, 0.3);
                min-width: 130px;
            }

                /* Reset Button - Grey (like secondary) */
                .buttons button:first-child {
                    background-color: #95a5a6;
                    color: white;
                }

                    .buttons button:first-child:hover {
                        background-color: #7f8c8d;
                        transform: translateY(-3px);
                        box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
                    }

                /* Convert Time Button - Orange (exactly like Contact Us) */
                .buttons button:last-child {
                    background-color: #FF6417;
                    color: white;
                }

                    .buttons button:last-child:hover {
                        background-color: white !important;
                        color: #FF6417 !important;
                        box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417 !important;
                        transform: translateY(-3px);
                    }

        /* Result box chhota aur elegant */
        .result {
            margin-top: 18px;
            padding: 16px;
            background: #fff8f0;
            border: 2px solid #FF6417;
            border-radius: 12px;
            text-align: center;
            font-size: 1.35rem;
            font-weight: 600;
            color: #333;
            display: none;
            line-height: 1.4;
        }

        /* MOBILE VIEW - 100% FIXED & BEAUTIFUL */
        @media (max-width: 992px) {
            .two-column-section {
                grid-template-columns: 1fr !important; /* Ek ke neeche ek */
                gap: 50px;
            }

            /* Timezone converter mobile pe thoda chhota aur clean */
            .timezone-card {
                padding: 22px 20px !important;
                border-radius: 18px;
            }

                .timezone-card h3 {
                    font-size: 1.6rem !important;
                    margin-bottom: 18px !important;
                }

            .date-time-row {
                grid-template-columns: 1fr 1fr !important;
                gap: 10px;
            }

                .date-time-row + input[type="date"] {
                    grid-column: 1 / -1;
                    margin-top: 10px;
                }

            .timezone-container select,
            .timezone-container input {
                padding: 12px 10px !important;
                font-size: 15px !important;
            }

            /* Buttons mobile pe full width aur perfect */
            .buttons {
                flex-direction: column;
                gap: 14px !important;
                margin-top: 20px;
            }

                .buttons button {
                    width: 100% !important;
                    padding: 14px 20px !important;
                    font-size: 16px !important;
                    border-radius: 50px !important;
                    box-shadow: 0 5px 18px rgba(255, 100, 23, 0.35);
                }

                    /* Orange button hover effect mobile pe bhi glow */
                    .buttons button:last-child:hover {
                        background: white !important;
                        color: #FF6417 !important;
                        box-shadow: 0 0 25px #FF6417 !important;
                        transform: translateY(-3px);
                    }

                    .buttons button:first-child:hover {
                        background: #7f8c8d !important;
                        box-shadow: 0 8px 25px rgba(127, 140, 141, 0.4);
                    }

            /* Result box mobile pe bada aur clear */
            .result {
                padding: 20px !important;
                font-size: 1.5rem !important;
                margin-top: 20px;
            }
        }

        /* Extra small mobile (iPhone etc) */
        @media (max-width: 480px) {
            .timezone-card {
                padding: 20px 18px !important;
            }

                .timezone-card h3 {
                    font-size: 1.5rem !important;
                }

            .buttons button {
                padding: 14px !important;
                font-size: 15.5px !important;
            }

            .date-time-row {
                gap: 8px;
            }
        }

        /* ================= NLP BASIC PRACTITONER PAGE ============================= */
        
             h3 {
                 font-size: 2.4rem;
                 color: #000;
                 text-align: center;
                 margin-bottom: 40px;
             }

             h4 {
                 font-size: 2rem;
                 color: #FF6417;
                 text-align: center;
                 margin: 40px 0 20px;
             }

             h5 {
                 font-size: 1.8rem;
                 color: #333;
                 font-weight: 600;
                 margin-bottom: 40px;
                 text-align: center;
             }

             /* ============ TEXT STYLING ============ */
             p {
                 font-size: 1.15rem;
                 line-height: 1.9;
                 color: #444;
             }

             /* ============ PRICING BOX ============ */
             .pricing-box {
                 background: #fff8f0;
                 padding: 50px 30px;
                 border-radius: 20px;
                 text-align: center;
                 margin: 70px 0;
             }

                 .pricing-box p {
                     font-size: 1.6rem;
                     margin: 15px 0;
                 }

             .early-bird {
                 color: #FF6417;
                 font-size: 1.9rem;
                 font-weight: 700;
             }

             .register-btns {
                 display: flex;
                 gap: 25px;
                 justify-content: center;
                 flex-wrap: wrap;
                 margin-top: 40px;
             }

                 .register-btns a {
                     padding: 16px 40px;
                     border-radius: 50px;
                     font-size: 1.3rem;
                     font-weight: 600;
                     transition: all 0.4s;
                     box-shadow: 0 8px 25px rgba(0,0,0,0.2);
                 }

             .btn-early {
                 background: #FF6417;
                 color: #fff;
             }

                 .btn-early:hover {
                     background: #e55a13;
                     transform: translateY(-5px);
                 }

             .btn-regular {
                 background: #333;
                 color: #fff;
             }

                 .btn-regular:hover {
                     background: #111;
                     transform: translateY(-5px);
                 }

             /* ============ INSTRUCTOR & CONTACT ============ */
             .instructor-section {
                 background: #fff;
                 padding: 60px 40px;
                 border-radius: 20px;
                 box-shadow: 0 15px 40px rgba(0,0,0,0.1);
                 margin: 90px 0;
                 text-align: center;
             }

             /* Calendar Grid */
             .calendar-grid {
                 display: grid;
                 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                 gap: 50px;
                 max-width: 1200px;
                 margin: 60px auto;
             }

             .calendar-item img {
                 border-radius: 20px;
                 border: 8px solid #fff;
                 box-shadow: 0 25px 60px rgba(0,0,0,0.2);
                 transition: transform 0.4s;
             }

                 .calendar-item img:hover {
                     transform: scale(1.03);
                 }

             .calendar-item p {
                 margin-top: 20px;
                 font-size: 1.4rem;
                 text-align: center;
                 font-weight: 500;
             }

             /* Pricing Box */
             .pricing-box {
                 background: #fff8f0;
                 padding: 60px 40px;
                 border-radius: 24px;
                 text-align: center;
                 margin: 80px 0;
             }

                 .pricing-box p {
                     font-size: 1.7rem;
                     margin: 18px 0;
                 }

             .early-bird {
                 font-size: 2.1rem !important;
                 color: #FF6417 !important;
                 font-weight: 800 !important;
             }

             .register-btns {
                 display: flex;
                 gap: 25px;
                 justify-content: center;
                 flex-wrap: wrap;
                 margin-top: 50px;
             }

                 .register-btns a {
                     padding: 18px 48px;
                     border-radius: 50px;
                     font-size: 1.35rem;
                     font-weight: 700;
                     transition: all 0.4s;
                     box-shadow: 0 10px 30px rgba(0,0,0,0.2);
                     min-width: 280px;
                 }

             .btn-early {
                 background: #FF6417;
                 color: #fff;
             }

                 .btn-early:hover {
                     background: #e55a13;
                     transform: translateY(-6px);
                 }

             .btn-regular {
                 background: #333;
                 color: #fff;
             }

                 .btn-regular:hover {
                     background: #111;
                     transform: translateY(-6px);
                 }


                 /* ================================= HYPNO PARENTING PAGE ================================ */
                 

             /* ─────── Calendar Section ─────── */
             .calendar-section h4 {
                 color: #FF6417;
                 font-size: 2.4rem;
                 text-align: left;
                 margin-bottom: 40px;
             }

             .calendar-grid {
                 display: grid;
                 grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
                 gap: 50px;
             }

             .calendar-card {
                 text-align: center;
             }

                 .calendar-card h5 {
                     font-size: 1.6rem;
                     color: #333;
                     margin-bottom: 10px;
                 }

             .tagline {
                 color: #FF6417;
                 font-weight: 600;
                 margin-bottom: 20px;
             }

                 .tagline.popular {
                     color: #d35400;
                 }

             .calendar-card img {
                 width: 50%;
                 border-radius: 20px;
                 border: 6px solid #fff;
                 box-shadow: 0 20px 50px rgba(0,0,0,0.2);
             }

             .dates {
                 margin-top: 25px;
                 color: #666;
                 font-size: 1.05rem;
                 line-height: 1.6;
             }

             /* ─────── Pricing Section ─────── */
             .pricing-section h3 {
                 color: #FF6417;
                 font-size: 2.4rem;
                 margin-bottom: 25px;
             }

             .price-details p {
                 font-size: 1.2rem;
                 margin: 10px 0;
             }

             .early-bird {
                 color: #FF6417;
                 font-weight: 700;
                 font-size: 1.3rem;
                 margin-top: 20px;
             }

             .circle-arrow {
                 display: inline-flex;
                 justify-content: center;
                 align-items: center;
                 width: 30px;
                 height: 30px;
                 background: #FF6417;
                 color: white;
                 border-radius: 50%;
                 font-size: 12px;
                 margin-right: 8px;
             }

             .register-btn {
                 display: inline-block;
                 margin-top: 30px;
                 background: #FF6417;
                 color: white;
                 padding: 16px 50px;
                 border-radius: 50px;
                 text-decoration: none;
                 font-size: 1.3rem;
                 box-shadow: 0 10px 30px rgba(255,100,23,0.3);
                 transition: all 0.3s;
             }

                 .register-btn:hover {
                     background: #e55a00;
                     transform: translateY(-3px);
                 }

             /* ─────── Learning Lists ─────── */
             .learning-list,
             .format-list,
             .completion-list {
                 list-style: none;
                 padding-left: 0;
                 max-width: 1000px;
                 line-height: 2.3;
             }

                 .learning-list li,
                 .format-list li,
                 .completion-list li {
                     position: relative;
                     padding-left: 40px;
                     margin-bottom: 18px;
                     font-size: 1.07rem;
                     color: #333;
                 }

                     .learning-list li:before,
                     .completion-list li:before {
                         content: "•";
                         color: #FF6417;
                         font-weight: bold;
                         position: absolute;
                         left: 0;
                         font-size: 1.6rem;
                         top: -2px;
                     }

                     .format-list li:before {
                         content: "*";
                         color: #FF6417;
                         font-weight: bold;
                         position: absolute;
                         left: 0;
                         font-size: 1.6rem;
                         top: -2px;
                     }

             /* ─────── Format Box ─────── */
             .format-box {
                 background: #fff8f0;
                 padding: 40px;
                 border-radius: 20px;
             }

             /* ─────── Certificate Section ─────── */
             .certificate-section {
                 text-align: center;
             }

             .certificate-card img {
                 width: 50%;
                 max-width: 400px;
                 border-radius: 20px;
                 border: 7px solid #fff;
                 box-shadow: 0 20px 50px rgba(0,0,0,0.22);
                 margin: 30px 0;
             }

             .certificate-card p {
                 font-size: 1.35rem;
                 font-weight: 600;
             }

             .certificate-card span {
                 color: #FF6417;
                 font-size: 1.1rem;
             }

             /* ============================== MINDFULNESS AND WELLBEING ===============================*/
             
             /* Course Objectives Box */
             .objectives-box {
                 background: linear-gradient(135deg, #fff8f5 0%, #fff1ec 100%);
                 border: 2px solid #FF6417;
                 border-radius: 16px;
                 padding: 30px 25px;
                 margin: 25px 0;
                 box-shadow: 0 10px 30px rgba(255, 100, 23, 0.08);
             }

             .objectives-list {
                 list-style: none;
                 padding: 0;
                 margin: 0;
                 font-size: 17px;
                 line-height: 1.8;
                 color: #333;
             }

                 .objectives-list li {
                     position: relative;
                     padding-left: 32px;
                     margin-bottom: 14px;
                 }

                     .objectives-list li:before {
                         content: "✔";
                         position: absolute;
                         left: 0;
                         top: 2px;
                         color: #FF6417;
                         font-weight: bold;
                         font-size: 18px;
                     }

             /* Course Content Lists */
             .content-list {
                 background: #f9f9f9;
                 border-left: 5px solid #FF6417;
                 padding: 25px 30px;
                 border-radius: 0 12px 12px 0;
                 margin: 25px 0;
                 font-size: 16.5px;
                 line-height: 1.7;
             }

                 .content-list li {
                     margin-bottom: 12px;
                 }

                 .content-list ul {
                     margin: 12px 0 18px 20px;
                     list-style: disc;
                     color: #555;
                 }

                 .content-list strong {
                     color: #FF6417;
                     font-size: 18px;
                 }

             /* Methodology Text */
             .methodology-text {
                 background: #fffbf0;
                 border: 1px dashed #FF6417;
                 padding: 25px;
                 border-radius: 12px;
                 font-size: 17.5px;
                 line-height: 1.8;
                 color: #333;
                 font-style: italic;
             }

             /* Delegates List */
             .delegates-list {
                 margin-top: 30px;
             }

             .delegates-list {
                 list-style: none;
                 padding: 0;
             }

                 .delegates-list li {
                     background: #fff;
                     border: 1px solid #ffe0d0;
                     padding: 18px 22px;
                     margin-bottom: 15px;
                     border-radius: 12px;
                     font-size: 17px;
                     box-shadow: 0 4px 15px rgba(255, 100, 23, 0.07);
                     position: relative;
                     padding-left: 50px;
                 }

                     .delegates-list li:before {
                         content: "★";
                         position: absolute;
                         left: 18px;
                         top: 18px;
                         color: #FF6417;
                         font-size: 20px;
                     }

             /* Duration Info Box (bottom) */
             .duration-info {
                 background: linear-gradient(135deg, #FF6417, #ff8533);
                 color: white;
                 padding: 25px;
                 border-radius: 14px;
                 text-align: center;
                 font-size: 18px;
                 margin-top: 40px;
                 box-shadow: 0 10px 25px rgba(255, 100, 23, 0.2);
             }

                 .duration-info strong {
                     font-size: 20px;
                 }

             .format-list li:before {
                 content: "*";
                 color: #FF6417;
                 font-weight: bold;
                 position: absolute;
                 left: 0;
                 font-size: 1.6rem;
                 top: -2px;
             }

             /* ========================== BUSINESS COACHING ===============================*/
             
        /* Service Detail Section */
        .content-section-5 {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .content-container-5 {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-detail-card-5 {
            display: flex;
            gap: 50px;
            align-items: center;
            background: #fff;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

            .service-detail-card-5:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            }

        .service-detail-image-5 {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

            .service-detail-image-5 img {
                width: 100%;
                height: auto;
                display: block;
                transition: transform 0.5s ease;
            }

            .service-detail-image-5:hover img {
                transform: scale(1.05);
            }

        .service-detail-content-5 {
            flex: 1;
        }

        .service-detail-heading-5 {
            color: #FF6417;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-main-heading-5 {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .service-description-5 {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        
        /* Gallery Section with Swiper */
        .gallery-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-heading {
            color: #FF6417;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .gallery-title {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .gallery-description {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Swiper Container */
        .swiper {
            width: 100%;
            padding: 60px 0;
        }

        .swiper-slide {
            background: #fff;
            width: 300px;
            height: 380px;
            border-radius: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

            .swiper-slide:hover {
                transform: scale(1.08);
            }

            .swiper-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
                transition: transform 0.4s ease;
            }

        /* Navigation buttons */
        .swiper-button-next,
        .swiper-button-prev {
            color: #FF6417;
        }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 24px;
                font-weight: bold;
            }

        .swiper-pagination-bullet-active {
            background: #FF6417;
        }

        /* Lightbox open effect (update this part) */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }


            .lightbox img {
                width: 80%;
                max-width: 900px;
                border-radius: 15px;
                transform: scale(0.7);
                animation: zoomIn 0.3s ease forwards;
                box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
            }

        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 50px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
            z-index: 10000;
        }

            .close-lightbox:hover {
                color: #FF6417;
                transform: scale(1.2);
            }

        /* Add this animation for smooth zoom */
        .lightbox.show img {
            transform: scale(1);
            opacity: 1;
        }

        .lightbox img {
            width: 80%;
            max-width: 900px;
            border-radius: 15px;
            transform: scale(0.7);
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
        }

        /* =========================================== TESTIMONIALS PAGE */
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .testimonials-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-heading {
            color: #FF6417;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .testimonials-title {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .testimonials-description {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }

            .testimonial-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

        .testimonial-content {
            position: relative;
            margin-bottom: 25px;
        }

        .quote-icon {
            color: #FF6417;
            font-size: 2rem;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .testimonial-text {
            color: #333;
            font-size: 1rem;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #FF6417;
        }

            .author-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-position {
            color: #666;
            font-size: 0.9rem;
        }

        .rating {
            color: #FF6417;
            margin-top: 5px;
        }

        /* Media Gallery Section */
        .media-gallery {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .media-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .media-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .media-heading {
            color: #FF6417;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .media-title {
            color: #000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .media-description {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .video-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            aspect-ratio: 16 / 9;
        }

            .video-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(200, 50, 13, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

            .play-btn:hover {
                background: #FF6417;
                transform: translate(-50%, -50%) scale(1.1);
            }

        .video-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px 15px 15px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }

        .image-item {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            background: #000;
        }

            .image-item:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            }

            .image-item img {
                width: 100%;
                height: auto;
                max-height: 80vh;
                object-fit: contain;
                display: block;
                background: #000;
                transition: transform 0.5s ease;
            }

            .image-item:hover img {
                transform: scale(1.04);
            }

        .image-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            color: white;
            padding: 25px 18px 16px;
            font-weight: 600;
            font-size: 1.15rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.6);
        }
