/* Container fix position par */
.custom-side-tabs {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Teeno ke beech ka gap */
    align-items: flex-end;
}

/* Base style for all tabs */
.single-tab {
    background: #03045e; /* Navy Blue */
    color: white;
    width: 180px; /* Default Width: Icon + Title dikhega */
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 40px 0 0 40px;
    cursor: pointer;
    border-left: 5px solid #0dcaf0;
    box-shadow: -4px 4px 15px rgba(0,0,0,0.2);
    
    /* Smooth Animation Settings */
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease;
    overflow: hidden; 
    padding: 10px 20px;
}

/* Icon aur Title hamesha dikhenge */
.tab-header-part {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 150px;
}

.tab-header-part i {
    font-size: 1.5rem;
    color: #0dcaf0;
}

.title-text {
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Description jo default mein chhupa rahega */
.tab-hover-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: opacity 0.3s ease, height 0.4s ease;
    padding-left: 40px; /* Icon ke neeche se start na ho */
}

.tab-hover-content p {
    font-size: 0.75rem;
    margin: 10px 0;
    line-height: 1.3;
    width: 200px;
}

.action-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #03045e;
    background: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}

/* --- HOVER MAGIC: Only the hovered tab expands --- */
.single-tab:hover {
    width: 320px; /* Sirf ye expand hoga */
    background: #0077b6; /* Thoda color change transition ke sath */
}

.single-tab:hover .tab-hover-content {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-top: 5px;
}

/* Specific tab border colors */
.buy-tab { border-left-color: #0dcaf0; }
.sell-tab { border-left-color: #ffc107; } /* Warning/Gold */
.enquiry-tab { border-left-color: #00b4d8; }


/* Modal Root Design */
.custom-premium-modal {
    border: none;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: visible; /* To allow icon to pop out */
}

/* Header Section with Pop-out Icon */
.modal-header-design {
    background: linear-gradient(135deg, #03045e 0%, #0077b6 100%);
    height: 100px;
    border-radius: 30px 30px 0 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.header-icon-circle {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    background: #0dcaf0;
    border: 6px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.3);
    animation: pulseIcon 2s infinite;
}

/* Floating Label Tweaks */
.premium-form .form-control, 
.premium-form .form-select {
    border: 1.5px solid #eee;
    border-radius: 15px;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.premium-form .form-control:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.1);
    background-color: #fcfcfc;
}

/* Submit Button Animation */
.btn-premium-submit {
    background: linear-gradient(135deg, #0dcaf0 0%, #00b4d8 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.4);
    color: white;
}

.btn-premium-submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    left: -100%;
}

.btn-premium-submit:hover::after {
    left: 100%;
}

/* Helper Classes */
.fw-800 { font-weight: 800; }
.text-navy { color: #03045e; }

/* Icon Pulse Keyframes */
@keyframes pulseIcon {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Select Field Custom Styling */
.premium-form .form-select {
    border: 1.5px solid #eee;
    border-radius: 15px;
    height: calc(3.5rem + 2px); /* Floating label height ke barabar */
    line-height: 1.25;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230dcaf0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 15px;
    transition: all 0.3s ease;
}

/* Jab select focus ho */
.premium-form .form-select:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.1);
    outline: 0;
}

/* Floating Label adjustment specifically for Select */
.premium-form .form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: #03045e;
    font-weight: 600;
}

/* Option styling (Browser support limited but helps) */
.premium-form .form-select option {
    background-color: #fff;
    color: #333;
    padding: 10px;
}

/* Alignment fix for icons inside label */
.premium-form .form-floating > label i {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Parallax Section Styling */
.parallax-category-section {
    position: relative;
    padding: 100px 0;
    /* Dark Parallax Background Image */
    background-image: linear-gradient(rgba(3, 4, 94, 0.9), rgba(0, 0, 0, 0.95)), 
                      url('https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&q=80&w=1600');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Overlap effect with slider */
.categories-overlap {
    margin-top: -160px; /* Slider ke upar overlap karega */
    z-index: 10;
}

.premium-dark-card {
    position: relative;
    padding: 50px 35px;
    border-radius: 25px;
    color: white;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Glassmorphism Layer */
.card-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.category-icon-box {
    font-size: 2.5rem;
    color: #0dcaf0;
    margin-bottom: 20px;
    transition: 0.4s;
}

.category-header {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
}

/* List Item Styling */
.item-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.item-list li {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.item-list li i {
    color: #0dcaf0;
    font-size: 0.8rem;
}

.explore-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #0dcaf0;
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: 0.3s;
}

/* --- HOVER EFFECTS --- */
.premium-dark-card:hover {
    transform: translateY(-15px);
    border-color: #0dcaf0;
    background: rgba(13, 202, 240, 0.05);
}

.premium-dark-card:hover .category-icon-box {
    transform: scale(1.2);
    color: #fff;
}

.premium-dark-card:hover .explore-btn {
    background: #0dcaf0;
    color: #03045e;
}

.active-glow {
    box-shadow: 0 0 30px rgba(13, 202, 240, 0.2);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .categories-overlap {
        margin-top: 30px;
    }
    .parallax-category-section {
        background-attachment: scroll; /* Mobile smooth performance */
    }
}

/* Creative Transition Styling */
.creative-gap-section {
    position: relative;
    padding: 0;
    z-index: 5;
}

/* Diagonal Background Cut */
.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: #03045e; /* Navy color matching your slider bottom */
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    z-index: -1;
}

.stats-overlap {
    margin-top: -50px; /* Slider ke andar overlap */
}

/* Glassmorphism Stat Cards */
.glass-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(13, 202, 240, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: #0dcaf0;
    transition: 0.3s;
}

.stat-info h3 {
    font-weight: 800;
    color: #03045e;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.stat-info p {
    margin: 0;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Highlighted middle card effect */
.glass-stat-card.highlighted {
    background: #0dcaf0;
    border-color: #0dcaf0;
}

.glass-stat-card.highlighted .stat-icon,
.glass-stat-card.highlighted h3,
.glass-stat-card.highlighted p {
    color: #fff;
}

/* Hover effect */
.glass-stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(13, 202, 240, 0.2);
}

/* About Section with Gradient Background */
.modern-about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    padding: 120px 0 80px;
    margin-top: -50px;
}

/* Featured Products Custom Styling */
.featured-products-section {
    background: #ffffff;
    position: relative;
}

.ls-2 { letter-spacing: 2px; }
.fw-800 { font-weight: 800; }
.text-navy { color: #03045e; }

.accent-line {
    width: 60px;
    height: 4px;
    background: #0dcaf0;
    border-radius: 10px;
    margin-top: 15px;
}

/* Premium Product Card */
.product-premium-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-visual {
    position: relative;
    padding: 30px;
    background: #f8fbfd;
    border-radius: 20px 20px 0 0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-visual img {
    max-height: 100%;
    transition: 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #03045e;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-details {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
}

.product-details h5 {
    font-weight: 800;
    color: #03045e;
    margin-bottom: 12px;
}

.product-details p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-quote {
    background: transparent;
    border: 2px solid #0dcaf0;
    color: #0dcaf0;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 25px;
    border-radius: 50px;
    transition: 0.3s;
    width: 100%;
    text-transform: uppercase;
}

/* --- HOVER EFFECTS --- */
.product-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(3, 4, 94, 0.1);
    border-color: #0dcaf0;
}

.product-premium-card:hover .product-visual img {
    transform: scale(1.1) rotate(-3deg);
}

.product-premium-card:hover .btn-quote {
    background: #0dcaf0;
    color: #fff;
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.3);
}

/* Animation for the whole section */
.featured-products-section .row {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Real Presence Section Styling */
.real-presence-section {
    background-color: #ffffff;
    overflow: hidden;
}

.ls-2 { letter-spacing: 2px; }
.fw-800 { font-weight: 800; }
.text-navy { color: #03045e; }

/* Event List Styling */
.event-list {
    list-style: none;
    padding: 0;
}

.event-list li {
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-list li i {
    color: #0dcaf0;
    font-size: 1.2rem;
}

/* Photo Stack Grid (The "Awesome" Part) */
.photo-experience-grid {
    position: relative;
    padding: 40px;
}

.main-photo {
    width: 85%;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    transform: rotate(-2deg);
    transition: 0.5s;
}

.main-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.sub-photo {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    transform: rotate(3deg);
    transition: 0.5s;
}

.sub-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Floating Experience Badge */
.exp-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    background: #0dcaf0;
    color: white;
    padding: 20px;
    border-radius: 50% 50% 50% 0;
    text-align: center;
    box-shadow: 0 15px 30px rgba(13, 202, 240, 0.3);
    z-index: 10;
    animation: floatAnim 3s infinite ease-in-out;
}

.exp-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.exp-badge .txt {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Hover Effects */
.photo-experience-grid:hover .main-photo {
    transform: rotate(0deg) scale(1.02);
}

.photo-experience-grid:hover .sub-photo {
    transform: rotate(0deg) translateY(-20px);
}

/* Animation */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Fix */
@media (max-width: 991px) {
    .photo-experience-grid {
        margin-top: 50px;
        padding: 20px;
    }
    .main-photo { width: 100%; transform: none; }
    .sub-photo { display: none; }
}

/*******About us*********/
/* Static Slider / Banner */
.inner-banner-static {
    height: 500px;
    background: linear-gradient(rgba(3, 4, 94, 0.85), rgba(3, 4, 94, 0.85)), 
                url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1600');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

/* About Image Stack */
.about-image-stack {
    position: relative;
    padding-right: 40px;
}
.about-image-stack .main-img {
    border-radius: 30px;
}
.experience-card {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #0dcaf0;
    color: white;
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
}

/* Section Typography */
.ls-2 { letter-spacing: 2px; }
.fw-800 { font-weight: 800; }
.text-navy { color: #03045e; }
.bg-navy { background-color: #03045e; }

/* Message Section Styling */
.message-section {
    position: relative;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    z-index: 5;
}
.italic { font-style: italic; opacity: 0.9; }

@media (max-width: 991px) {
    .inner-banner-static { height: 400px; }
    .message-section { border-radius: 0; margin-top: 0; }
}

/* Services Overlap Section */
.white-gradient-services {
    background: #f8f9fa; /* Light background taaki white cards pop out karein */
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.services-modern-overlap {
    margin-top: -80px; /* Isse cards banner ke upar overlap honge */
    position: relative;
    z-index: 11;
}

.modern-white-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.modern-white-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 202, 240, 0.15);
}

.featured-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0faff 100%);
    border: 1px solid #0dcaf0;
}

.m-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1faff;
    border-radius: 15px;
}

.m-card-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.m-card-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #03045e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.m-card-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Callback Button */
.btn-gradient-call {
    display: inline-block;
    padding: 15px 35px;
    background: #0dcaf0;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.2);
    transition: 0.3s;
}

.btn-gradient-call:hover {
    background: #03045e;
    color: #fff;
    transform: translateY(-3px);
}
/* Icon Container Positioning & Size */
.m-card-icon {
    width: 100px; /* Container size badhaya gaya hai */
    height: 100px;
    margin: 0 auto 25px; /* Horizontally center karne ke liye */
    display: flex; /* Flexbox for perfect centering */
    align-items: center;
    justify-content: center;
    background: #f1faff;
    border-radius: 50%; /* Circle shape for a cleaner look */
    transition: all 0.4s ease;
    border: 1px solid rgba(13, 202, 240, 0.2);
}

/* Icon Image Size */
.m-card-icon img {
    width: 60px; /* Icon ka size badhaya gaya hai */
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Card Content Alignment */
.modern-white-card {
    text-align: center; /* Heading aur text ko center karne ke liye */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 30px;
}

/* Hover effect on Icon */
.modern-white-card:hover .m-card-icon {
    background: #0dcaf0;
    transform: scale(1.1);
}

.modern-white-card:hover .m-card-icon img {
    filter: brightness(0) invert(1); /* Hover par icon white ho jayega */
}

/***** Service page CSS*************/
/* Banner Design */
        .services-banner {
            height: 350px;
            background: linear-gradient(rgba(3, 4, 94, 0.85), rgba(3, 4, 94, 0.85)), 
                        url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&q=80&w=1600');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
        }

        /* Service Cards Styling */
        .service-card {
            border: none;
            border-radius: 20px;
            transition: all 0.4s ease;
            height: 100%;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(3, 4, 94, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(13, 202, 240, 0.1);
            color: var(--info-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 20px;
        }

        /* Package Pricing Styling */
        .package-card {
            border: 2px solid #eee;
            border-radius: 25px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .package-card.popular {
            border-color: var(--info-blue);
            background: var(--navy);
            color: white;
        }

        .feature-list { list-style: none; padding: 0; }
        .feature-list li { margin-bottom: 12px; font-size: 15px; }
        .feature-list i { color: var(--info-blue); margin-right: 10px; }

        .btn-enquire-service {
            border-radius: 10px;
            padding: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }