 /* Color Variables */
        :root {
            --midnight: #2D3047;
            --burnt-orange: #FF8C52;
            --white: #ffffff;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
        }

        /* --- NAVBAR STYLES --- */
        .custom-nav {
            background-color: var(--midnight);
            padding: 15px 0;
            border-bottom: 4px solid var(--burnt-orange);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .accent-text {
            color: var(--burnt-orange);
        }

        .nav-link {
            color: rgba(255,255,255,0.8) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--burnt-orange) !important;
        }

        /* Dropdown Styling */
        .dropdown-menu {
            background-color: var(--midnight);
            border: none;
            border-top: 3px solid var(--burnt-orange);
            border-radius: 0 0 8px 8px;
            margin-top: 10px;
        }

        .dropdown-item {
            color: var(--white);
            padding: 10px 25px;
            transition: 0.3s;
        }

        .dropdown-item:hover {
            background-color: var(--burnt-orange);
            color: var(--midnight);
        }

        /* CTA Button */
        .btn-cta {
            background-color: var(--burnt-orange);
            color: var(--white);
            font-weight: 700;
            padding: 10px 25px;
            border-radius: 5px;
            text-transform: uppercase;
            font-size: 0.85rem;
            border: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-cta:hover {
            background-color: #e07641;
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 140, 82, 0.4);
        }
        /* Animated Mesh Background */
.hero-animated {
    height: 100vh;
    width: 100%;
    background: linear-gradient(125deg, #2D3047, #1b1e30, #44496d, #2D3047);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Card for Content */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 30px;
    animation: fadeInUp 1.2s ease-out;
}

/* Centered Typing Text Styling */
.accent-text {
    color: var(--burnt-orange);
    display: inline-block;
    min-width: 300px; /* Prevents layout jump while typing */
    text-shadow: 0 0 20px rgba(255, 140, 82, 0.5);
}

#typed-text::after {
    content: "|";
    animation: blink 0.7s infinite;
    color: var(--white);
    font-weight: 200;
}

/* Update CTA to be brighter */
.btn-cta {
    background: linear-gradient(45deg, #FF8C52, #ffac7d);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 140, 82, 0.3);
}

        /*About*/

        /* About Us Custom Styles */
.stats-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--burnt-orange);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 5px solid white;
}

.check-icon {
    background-color: var(--midnight);
    color: var(--burnt-orange);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.about-features h5 {
    color: var(--midnight);
    font-size: 1.1rem;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

	/*Courses*/

	/* --- BRIGHT COURSE CARDS --- */
.course-card-animated {
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    z-index: 1;
}

.course-card-animated:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(45, 48, 71, 0.1) !important;
}

.course-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 82, 0.1);
    border-radius: 12px;
    transition: 0.3s;
}

.course-card-animated:hover .course-icon {
    background: var(--burnt-orange);
    transform: rotate(-10deg);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--midnight);
    color: white;
}

.featured-card {
    border: 2px solid var(--burnt-orange) !important;
}

.btn-outline-midnight {
    border: 1px solid var(--midnight);
    color: var(--midnight);
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-midnight:hover {
    background: var(--midnight);
    color: white;
}

.course-duration {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/*Services	*/

/* --- BENTO GRID STYLING --- */
/* Services Styling */
.services-wrapper {
    background-color: var(--midnight);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Background Animated Blobs */
.blob-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.35;
    animation: move-blobs 15s infinite alternate;
}
.blob-1 { width: 400px; height: 400px; background: #FF8C52; top: -100px; left: -50px; }
.blob-2 { width: 500px; height: 500px; background: #44496d; bottom: -100px; right: -50px; }
.blob-3 { width: 300px; height: 300px; background: #2D3047; top: 40%; left: 30%; }

@keyframes move-blobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.3); }
}

/* Bento Card Styling */
.service-bento-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px;
    transition: all 0.1s ease; /* Faster for mouse tilt */
    transform-style: preserve-3d;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255,140,82,0.1), rgba(255,255,255,0.04)) !important;
    border: 1px solid rgba(255, 140, 82, 0.3) !important;
}

.border-glow {
    box-shadow: 0 0 20px rgba(255, 140, 82, 0.1);
}

.bento-icon { font-size: 3rem; }
.bento-icon-small { font-size: 2.2rem; }

.accent-glow {
    color: #FF8C52;
    text-shadow: 0 0 25px rgba(255, 140, 82, 0.5);
}

.text-orange { color: #FF8C52; }

.bento-tag {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 5px;
}

/*Contact Us*/

/* Contact Styling */
.orange-line {
    width: 50px;
    height: 4px;
    background: var(--burnt-orange);
    border-radius: 2px;
    margin-top: 5px;
}

.custom-input {
    border: none !important;
    border-bottom: 2px solid #eee !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding-left: 0 !important;
    transition: 0.3s;
}

.custom-input:focus {
    box-shadow: none !important;
    border-bottom-color: var(--burnt-orange) !important;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 82, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--burnt-orange);
}

.text-orange { color: var(--burnt-orange); }

/* Form Submit Success State Animation */
.success-glow {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px var(--burnt-orange); }
    to { box-shadow: 0 0 20px var(--burnt-orange); }
}

/*Footer*/
/* Color Palette */
:root {
    --midnight: #2D3047;
    --burnt-orange: #FF8C52;
}

/* Base Wrapper - Deep Indigo instead of Black */
.footer-island {
    background: #1e202f; /* A slightly darker shade of your Indigo for depth */
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Main Box - Pure Midnight Indigo */
.footer-glass-wrap {
    background: var(--midnight);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--burnt-orange);
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.accent-orange {
    color: var(--burnt-orange);
    text-shadow: 0 0 15px rgba(255, 140, 82, 0.4);
}

/* Social Dock Styling */
.dock-item {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dock-item:hover {
    background: var(--burnt-orange);
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 140, 82, 0.4);
    color: white;
}

/* Link Hover States */
.custom-footer-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
    line-height: 2.5;
    display: inline-block;
}

.custom-footer-links li a:hover {
    color: var(--burnt-orange);
    transform: translateX(10px);
}

/* Contact Details */
.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-card:hover {
    border-color: var(--burnt-orange);
}

/* The Subtle Orange Glow */
.footer-glow-branded {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 82, 0.2) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

/*Whatsapp Floating Icon*/

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366; /* Traditional Green for trust */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e; /* Darker green on hover */
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/*Button to top*/

/* Back to Top Button Styling */
.btn-top {
    position: fixed;
    bottom: 30px; /* Positioned above the WhatsApp icon */
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C52, #e07641);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-top:hover {
    background: #2D3047; /* Changes to Midnight Indigo on hover */
    box-shadow: 0 10px 20px rgba(255, 140, 82, 0.4);
    transform: translateY(-5px);
}

.top-arrow-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .btn-top {
        right: 20px;
        bottom: 85px;
        width: 45px;
        height: 45px;
    }
}

/*About CSS Starts*/

:root {
    --midnight: #2D3047;
    --burnt-orange: #FF8C52;
    --white: #ffffff;
}

.about-unique-wrapper {
    background-color: var(--midnight);
    color: var(--white);
    overflow: hidden;
}

/* Typography */
.unique-title {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 0;
}

.outline-text {
    -webkit-text-stroke: 2px var(--burnt-orange);
    color: transparent;
}

.sub-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-top: -10px;
}

.orange-highlight {
    background: var(--burnt-orange);
    padding: 0 10px;
    color: var(--midnight);
    font-weight: 700;
}

/* Neo-Brutalism Cards */
.brutal-card {
    background: var(--white);
    color: var(--midnight);
    padding: 40px;
    border: 4px solid var(--midnight);
    box-shadow: 15px 15px 0px var(--burnt-orange); /* Sharp shadow - Very Unique */
    transition: 0.3s ease;
}

.card-top { margin-top: 50px; }
.card-bottom { margin-top: 150px; margin-left: -30px; }

.brutal-card:hover {
    box-shadow: 5px 5px 0px var(--burnt-orange);
    transform: translate(10px, 10px);
}

.card-tag {
    display: inline-block;
    background: var(--midnight);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tag-orange { background: var(--burnt-orange); color: var(--midnight); font-weight: bold; }

/* Bento Values */
.values-bento {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-top: 100px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 30px;
}

.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.icon-huge { font-size: 3rem; }

/* Spacing Helpers */
.mb-100 { margin-bottom: 150px; }

/* 1. TILT SERVICES LOGIC */
.services-3d-wrapper {
    background: var(--midnight);
    perspective: 2000px; /* Essential for 3D */
}

.tilt-container {
    transform: rotateX(15deg) rotateY(-5deg) rotateZ(2deg);
    transition: transform 0.8s ease;
}

.tilt-container:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.tilt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    text-align: center;
}

.tilt-card:hover {
    background: var(--burnt-orange);
    transform: translateZ(50px); /* Card pops out on hover */
}

.logo-box {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 82, 0.4));
}

/* 2. ACADEMY REVEAL LOGIC */
/* --- PRO ACADEMY STYLISH REVEAL --- */
.academy-reveal {
    background: #fcfcfc;
    perspective: 1000px;
}

.brutal-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--midnight);
    letter-spacing: -1px;
}

.accent-stroke {
    -webkit-text-stroke: 2px var(--burnt-orange);
    color: transparent;
}

/* Card Container */
.reveal-card {
    position: relative;
    width: 100%;
    height: 350px;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

.reveal-card:hover {
    transform: rotateY(180deg);
}

/* Card Sides */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(45, 48, 71, 0.1);
}

.card-front {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-back {
    background: var(--midnight);
    color: white;
    transform: rotateY(180deg);
    border: 2px solid var(--burnt-orange);
}

/* Decorative Elements */
.huge-logo {
    font-size: 5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.reveal-card:hover .huge-logo {
    transform: scale(1.1);
}

.card-back h6 {
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-back ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
}

.card-back ul li::before {
    content: "→";
    color: var(--burnt-orange);
    margin-right: 10px;
    font-weight: bold;
}

.btn-syllabus {
    background: var(--burnt-orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-syllabus:hover {
    background: white;
    color: var(--midnight);
}

/*About CSS Ends*/

/*Ads.html Starts*/

/* --- GROWTH AGENCY MASTERCLASS STYLES --- */
.growth-section {
    background: #0d0f1a;
    position: relative;
    padding: 100px 0;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--burnt-orange);
    box-shadow: 0 20px 40px rgba(255, 140, 82, 0.15);
}

.platform-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 140, 82, 0.1) 0%, transparent 70%);
}

.glow-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 140, 82, 0.5));
}

.platform-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    margin-right: 6px;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-transform: uppercase;
}

.tag-video { background: #ff0000; } /* YouTube Red */
.tag-meta { background: #0668E1; } /* Meta Blue */
.tag-data { background: #E37400; } /* Analytics Orange */

/*Ads.html Ends*/

/*bestseo.html Starts*/
/*SEO*/
/* --- SEO SERVICES THEME --- */
.seo-dashboard-section {
    background: #0d0f1a;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Scanning Line Animation */
.scanning-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
    top: 0;
    left: 0;
    animation: scan-move 4s linear infinite;
    opacity: 0.3;
}

@keyframes scan-move {
    0% { top: 0%; }
    100% { top: 100%; }
}

.seo-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 35px;
    transition: all 0.4s ease;
    height: 100%;
}

.seo-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--burnt-orange);
    transform: translateY(-10px);
}

.chart-bar {
    width: 8px;
    background: var(--burnt-orange);
    border-radius: 10px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: bottom;
}

.white-hat-label { color: #27c93f; font-weight: 700; font-size: 0.8rem; }
.black-hat-label { color: #ff5f56; font-weight: 700; font-size: 0.8rem; }

/*bestseo.html Ends*/

/*Contact.html Starts*/
.contact-hero {
    background: linear-gradient(135deg, var(--midnight) 0%, #1b1e30 100%);
    padding: 100px 0 180px 0; /* Extra bottom padding for the overlap */
    position: relative;
    text-align: center;
}

.contact-wrapper {
    margin-top: -120px; /* Pulls the contact card up into the dark hero section */
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.main-glass-card {
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.info-sidebar {
    background: var(--light-bg);
    border-right: 1px solid #eee;
    height: 100%;
}

.contact-item-box {
    padding: 30px;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 20px;
}

.contact-item-box:hover {
    border-color: var(--burnt-orange);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: rgba(255, 140, 82, 0.1);
    color: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.map-frame {
    border-radius: 20px;
    filter: grayscale(100%) invert(90%) contrast(90%); /* Dark mode map style */
    transition: 0.5s;
    opacity: 0.8;
}

.map-frame:hover {
    filter: grayscale(0%) invert(0%);
    opacity: 1;
}

.form-label-custom {
    font-weight: 600;
    color: var(--midnight);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/*Map Styling*/
/* --- FULL WIDTH MAP STYLES --- */
.map-full-wrapper {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* This filter makes the map match your Midnight/Indigo theme */
    filter: grayscale(100%) invert(92%) contrast(85%); 
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-full-wrapper:hover .google-map-iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Optional Overlay for a premium feel */
.map-overlay-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--midnight);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
    border: 1px solid var(--burnt-orange);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/*Contact.html Ends*/

/*digitalmarketingai.html Starts*/
    /* --- PREMIUM AI-MARKETING STYLES --- */
.premium-ai-wrapper {
    background: #0b0d17; /* Deep Space Navy */
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Neural Network Pulse */
.neural-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 140, 82, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(45, 48, 71, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Glass-Bento Card */
.ai-node {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.ai-node:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--burnt-orange);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 50px -12px rgba(255, 140, 82, 0.15);
}

/* Specialized AI Centerpiece Card */
.ai-featured-node {
    background: linear-gradient(135deg, rgba(255, 140, 82, 0.1) 0%, rgba(45, 48, 71, 0.1) 100%);
    border: 1px solid rgba(255, 140, 82, 0.3);
}

.ai-glow-text {
    background: linear-gradient(90deg, #fff, var(--burnt-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.ai-tool-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin: 4px;
    display: inline-block;
}

.phase-line-modern {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 82, 0.5), transparent);
    margin: 60px 0;
    position: relative;
    text-align: center;
}

.phase-label-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0b0d17;
    padding: 0 20px;
    color: var(--burnt-orange);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
}
/*digitalmarketingai.html Ends*/

/*wedesign.html Starts*/

.dev-header {
    background: #121420; /* Deep Obsidian */
    padding: 100px 0;
    border-bottom: 5px solid var(--burnt-orange);
}

.code-window {
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid #333;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.code-header {
    background: #333;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.tech-stack-card {
    background: white;
    border-left: 5px solid var(--midnight);
    transition: 0.3s;
    border-radius: 15px;
}

.tech-stack-card:hover {
    border-left-color: var(--burnt-orange);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dev-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.bg-react { background: #61dafb; color: #000; }
.bg-js { background: #f7df1e; color: #000; }
.bg-bootstrap { background: #7952b3; color: #fff; }
/*wedesign.html Ends*/

/*website.html Starts*/
* --- LUXURY TECH ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.rich-section {
    background: #0b0d17; /* Deepest Space Indigo */
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Animated Gradient Border Card */
.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: -2px; /* Small border glow */
    border-radius: 42px;
    padding: 2px; 
    background: linear-gradient(135deg, transparent, rgba(255, 140, 82, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    transition: 0.5s;
    opacity: 0;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.rich-icon-bg {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, var(--burnt-orange) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fff 30%, var(--burnt-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*website.html Ends*/

/*Data Analytics Starts*/
/* --- DATA ANALYTICS PREMIUM STYLES --- */
.analytics-section {
    background: #0d0f1a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px; /* Subtle Grid Pattern */
    padding: 100px 0;
    color: white;
}

.data-bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.data-bento-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--burnt-orange);
    transform: translateY(-8px);
}

.data-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.metric-pill {
    background: rgba(255, 140, 82, 0.1);
    color: var(--burnt-orange);
    border: 1px solid rgba(255, 140, 82, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.chart-line-static {
    height: 4px;
    background: #333;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: var(--burnt-orange);
    box-shadow: 0 0 10px var(--burnt-orange);
}
/*Data Analytics Ends*/

/*Python Fullstack Starts*/
/* --- FULL STACK BLUEPRINT STYLES --- */
.blueprint-section {
    background: #0d0f1a;
    padding: 100px 0;
    color: white;
}

.blueprint-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 45px;
    height: 100%;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blueprint-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--burnt-orange);
    transform: scale(1.02);
}

.layer-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 4px;
    display: inline-block;
}

.connector-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--burnt-orange), transparent);
    margin: 0 auto;
}
/*Python Fullstack Ends*/

/*YT Starts*/
/* --- YOUTUBE MONETIZATION THEME --- */
.yt-monetize-section {
    background: #0f0f0f; /* YouTube Dark Mode Black */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle Red Glow in the corner */
.yt-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 1;
}

.yt-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.yt-card:hover {
    transform: scale(1.03);
    border-color: #FF0000; /* YouTube Red */
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
}

.play-button-icon {
    width: 60px;
    height: 60px;
    background: #FF0000;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.monetize-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #FF0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone-bar {
    height: 8px;
    background: #333;
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
}

.milestone-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF0000, var(--burnt-orange));
}
/*YT Ends*/

/*Analytics Starts*/
/* --- ADSENSE & ANALYTICS PREMIUM STYLES --- */
.data-master-section {
    background: #0a0c14;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Glassy Data Cards */
.data-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
}

.data-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--burnt-orange);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.revenue-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27c93f; /* Success Green */
    text-shadow: 0 0 15px rgba(39, 201, 63, 0.3);
}

.analytics-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--burnt-orange);
    text-shadow: 0 0 15px rgba(255, 140, 82, 0.3);
}

.tool-chip {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 8px;
}
/*Analytics Ends*/