
        .video-hero-wrapper {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .fullwidth-container {
            width: 100%;
            padding: 0;
            margin: 0;
        }

        .video-slide-row {
            margin: 0;
            padding: 0;
            display: block;
        }

        /* Brand new banner class - completely different name */
        .video-banner-section {
            position: relative;
            width: 100%;
            height: 80vh;
            /* Full viewport height */
            min-height: 400px;
            /* Minimum height for small devices */
            overflow: hidden;
            background: linear-gradient(135deg, #0aadeb, #0284c7);
            /* fallback color */
        }

        /* Brand new video class - fresh name, no conflicts */
        .background-media-clip {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures video covers entire area without distortion */
            object-position: center center;
        }

        /* NEW: Overlay layer - dark overlay to make text readable */
        .text-overlay-dark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            /* Semi-transparent dark overlay */
            z-index: 1;
        }

        /* NEW: Text content container */
        .hero-text-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 800px;
            padding: 20px;
            pointer-events: none;
            /* Allows clicking through to video if needed */
        }

        /* Heading styles */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            color: #0aadeb;
            background: linear-gradient(135deg, #0aadeb, #0284c7);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: none;
        }

        /* Subtitle / description */
        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            opacity: 0.95;
        }

        /* Button style */
        .hero-button {
            display: inline-block;
            padding: 12px 32px;
            background: #0aadeb;
            color: white;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            pointer-events: auto;
            /* Make button clickable */
        }

        .hero-button:hover {
            background: transparent;
            border-color: #0aadeb;
            color: #0aadeb;
            transform: scale(1.05);
        }

        /* Small badge / tagline */
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        /* Responsive adjustments for different devices */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .video-banner-section {
                height: 70vh;
                min-height: 500px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-button {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .video-banner-section {
                height: 80vh;
                min-height: 550px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 0.85rem;
            }
            .hero-badge {
                font-size: 0.65rem;
                padding: 4px 14px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }
            .hero-text-content {
                width: 95%;
            }
        }

        /* Landscape orientation fix */
        @media (orientation: landscape) and (max-height: 500px) {
            .video-banner-section {
                height: 100vh;
                min-height: 400px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 0.85rem;
                margin-bottom: 0.8rem;
            }
            .hero-button {
                padding: 8px 20px;
            }

/* Make card auto height on all screens */
.explore-domestic-card {
    min-height: 540px;
    height: auto;       
}

/* Make card image responsive */
.explore-card-pht {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsive icons */
.explore-svg-horizon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

/* Each icon responsive */
.explore-icon {
    width: 48%;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .explore-card-pht {
        height: 180px;
    }
    .explore-icon {
        width: 47%;
    }
}

@media (max-width: 576px) {
    .explore-card-pht {
        height: 160px;
    }
    .explore-icon {
        width: 48%;
    }
}
.explore-tourbutton {
    text-align: center;
    width: 100%;
}

.explore-card-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--color-org);
    border: none;
}

.explore-card-btn a {
    color: #fff;
    text-decoration: none;
    display: block; 
}
        /* ----- NEW CLEAN CLASSES (no conflict with Bootstrap) ----- */
        .manpower-wrapper {
            max-width: 1400px;
            border-radius: 48px;
            background: transparent;
            padding: 50px 20px;
            margin: 0 auto;
        }

        /* Hero section - fresh class */
        .hero-gradient-card {
            background: radial-gradient(circle at 10% 30%, #0aadeb, #0284c7);
            border-radius: 48px;
            padding: 70px 60px;
            box-shadow: 0 35px 60px -20px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        /* Badge style */
        .badge-sky {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 8px 22px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: white;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.4);
        }

        /* Main title */
        .main-title-glow {
            font-size: 3.8rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Description text */
        .desc-light {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.92);
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.5;
            font-weight: 400;
            word-break: break-word;
        }

        /* Card component - no Bootstrap conflicts */
        .service-card {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 32px;
            padding: 2rem 1.5rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255,255,255,0.5);
            height: 100%;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 45px -15px rgba(0, 120, 200, 0.35);
            border-color: #0aadeb;
            background: #ffffff;
        }

        /* Icon circle */
        .icon-circle {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #eef9ff, #d4ebf6);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            margin: 0 auto 1.2rem auto;
            transition: all 0.3s;
            box-shadow: 0 12px 18px -8px rgba(0,0,0,0.08);
        }

        .service-card:hover .icon-circle {
            background: linear-gradient(135deg, #0aadeb, #0284c7);
            transform: scale(1.02);
        }

        .service-card:hover .icon-circle i {
            color: white !important;
        }

        /* Heading inside card - FIXED OVERFLOW */
        .card-heading {
            font-size: 1.9rem;
            font-weight: 700;
            background: linear-gradient(125deg, #1E2A5E, #0f3b5c);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            max-width: 100%;
            line-height: 1.3;
            display: block;
        }

        /* Responsive heading */
        @media (max-width: 1200px) {
            .card-heading { font-size: 1.5rem; letter-spacing: -0.2px; }
        }
        @media (max-width: 992px) {
            .card-heading { font-size: 1.4rem; }
        }
        @media (max-width: 768px) {
            .card-heading { font-size: 1.35rem; letter-spacing: -0.1px; }
        }
        @media (max-width: 480px) {
            .card-heading { font-size: 1.25rem; letter-spacing: normal; }
        }

        /* Card badge text */
        .card-label {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: #0aadeb;
            text-transform: uppercase;
            background: #eef6fc;
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            margin-top: 8px;
            transition: all 0.2s;
            word-break: break-word;
            white-space: normal;
            max-width: 100%;
        }

        .service-card:hover .card-label {
            background: #0aadeb;
            color: white;
            box-shadow: 0 4px 10px rgba(10,173,235,0.3);
        }

        /* Responsive fixes for hero */
        @media (max-width: 991px) {
            .hero-gradient-card { padding: 50px 30px; }
            .main-title-glow { font-size: 2.8rem; }
        }

        @media (max-width: 768px) {
            .hero-gradient-card { padding: 40px 20px; border-radius: 36px; }
            .main-title-glow { font-size: 2.2rem; }
            .service-card { padding: 1.5rem 1rem; margin-bottom: 20px; }
            .icon-circle { width: 75px; height: 75px; }
        }

        /* Floating animation */
        @keyframes softFloat {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-6px); }
        }
        .service-card:hover .icon-circle {
            animation: softFloat 0.6s ease-in-out infinite alternate;
        }

        /* No overflow on card head */
        .card-head-wrapper {
            overflow: visible;
            width: 100%;
        }

        /* ========== BRAND NEW UNIQUE CLASSES (no conflicts) ========== */
        
        /* Main team wrapper */
        .team-expert-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
            position: relative;
            background: linear-gradient(120deg, #f8fcff 0%, #eef2f8 100%);
        }

        /* Overlay effect layer */
        .team-overlay-layer {
            position: relative;
            width: 100%;
        }

        /* Section badge */
        .section-badge-team {
            display: inline-block;
            background: linear-gradient(95deg, #0aadeb20, #0284c720);
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 1.2px;
            color: #0284c7;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid #0aadeb40;
        }

        /* Main heading style (no cspt classes) */
        .team-main-heading {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(125deg, #1E2A5E, #0f3b5c);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .team-main-heading em {
            font-style: italic;
            font-weight: 800;
            background: linear-gradient(125deg, #0aadeb, #0284c7);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        /* Description under heading */
        .team-desc-text {
            font-size: 1rem;
            color: #4a5b6e;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        /* ===== Team Card - completely fresh naming ===== */
        .team-member-card {
            background: #ffffff;
            border-radius: 32px;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            height: 100%;
            position: relative;
            border: 1px solid rgba(10, 173, 235, 0.15);
        }

        .team-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 40px -15px rgba(2, 132, 199, 0.25);
            border-color: #0aadeb;
        }

        /* Image container with overlay effect */
        .member-photo-wrapper {
            position: relative;
            overflow: hidden;
            background: #eef2f8;
        }

        .member-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .team-member-card:hover .member-img {
            transform: scale(1.05);
        }

        /* Overlay gradient on image hover */
        .photo-overlay-grad {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,173,235,0.2), rgba(2,132,199,0.5));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .team-member-card:hover .photo-overlay-grad {
            opacity: 1;
        }

        /* Member name */
        .member-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1E2A5E;
            margin-bottom: 6px;
            transition: color 0.2s;
            word-break: break-word;
        }

        .team-member-card:hover .member-name {
            color: #0aadeb;
        }

        /* Member designation / post */
        .member-post {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #0284c7;
            background: #eef6fc;
            display: inline-block;
            padding: 5px 14px;
            border-radius: 40px;
            text-transform: uppercase;
            word-break: break-word;
            max-width: 100%;
        }

        /* Spacing & overflow fixes */
        .card-inner-padding {
            padding: 1.2rem 1rem 1.5rem 1rem;
        }

        /* Prevent any overflow on headings or text */
        .member-name, .member-post, .team-main-heading, .team-desc-text {
            overflow-wrap: break-word;
            word-break: break-word;
            white-space: normal;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .team-main-heading {
                font-size: 2.5rem;
            }
            .member-img {
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            .team-expert-section {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }
            .team-main-heading {
                font-size: 2rem;
            }
            .member-name {
                font-size: 1.3rem;
            }
            .member-img {
                height: 220px;
            }
        }

        @media (max-width: 576px) {
            .member-img {
                height: 200px;
            }
        }

        /* No margin/padding conflicts */
        .g-4-custom {
            --bs-gutter-y: 1.5rem;
        }
