/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.hero h1,
.hero p,
.page-hero h1,
.page-hero p {
    color: #ffffff !important;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF0000;
    /* Pinkish Red - Common for "Join Now" */
    color: #fff;
}

.btn-primary:hover {
    background-color: #d81557;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: #333;
    color: #fff;
}

.btn-outline {
    border: 2px solid #FF0000;
    color: #FF0000;
    background: transparent;
}

.btn-outline:hover {
    background: #FF0000;
    color: #fff;
}

/* Top Bar - White with Black Text */
.top-bar {
    background-color: #ffffff;
    color: #222;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.top-bar:hover {
    color: #FF0000;
    /* Red on Hover */
}

/* Navbar - Black Theme */
.navbar {
    background: #000000;
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    /* Key change: light shadow for dark bg */
    border-bottom: 1px solid #222;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 5px;
    height: 100%;
    align-items: center;
}

/* Nav Items */
.nav-item {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff;
    /* White Text */
    font-weight: 500;
    font-size: 14px;
    padding: 0 15px;
    height: 40px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: #FF0000;
    /* Red Hover */
}

/* Active/Boxed Style */
.nav-link.active {
    border: 1px solid #FF0000;
    color: #FF0000;
    border-radius: 4px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 80px;
    left: 0;
    background: #111;
    /* Dark Dropdown */
    width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-top: 3px solid #FF0000;
}

.nav-item:hover .dropdown-menu {
    display: flex;
}

.dropdown-item {
    color: #ddd;
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid #222;
    transition: 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #222;
    color: #FF0000;
    padding-left: 25px;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #FF0000;
    z-index: 2001;
    /* Above the menu */
    position: relative;
}

/* Nav Auth */
.nav-auth {
    display: none;
}

@media (max-width: 900px) {
    .mobile-menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        /* Hidden via position */
        width: 300px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        display: flex !important;
        /* Override any inline JS display toggles */
        gap: 0;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .nav-item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #222;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        height: auto;
        font-size: 16px;
    }

    /* Dropdown in Mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #0a0a0a;
        display: none;
        /* Hidden by default */
        border-top: none;
        padding-left: 20px;
    }

    .nav-item:hover .dropdown-menu {
        display: none;
        /* Disable hover on mobile */
    }

    .nav-item.active-dropdown .dropdown-menu {
        display: flex;
        /* Show on click */
    }

    /* Modify Dropdown icon rotation */
    .nav-item.active-dropdown .fa-angle-down {
        transform: rotate(180deg);
    }
}

/* 3D Video Effects */
.video-container {
    display: flex;
    justify-content: center;
    perspective: 1500px;
    margin-bottom: 60px;
    width: 100%;
}

.gyro-card {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #111;
    background: #000;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
    transform-style: preserve-3d;
    position: relative;
    margin: 0 auto;
}

.gyro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.tilt-hint {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

.tilt-hint i {
    color: #FF0000;
    margin-right: 8px;
}

/* Admin Footer Link */
.footer-admin-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    color: #444 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-admin-link:hover {
    color: #FF0000 !important;
}

/* Portfolio / Gallery Card 3D Style */
.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.video-box {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
    max-width: 100%;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Portfolio & Grid Layouts */
.portfolio-section {
    padding: 80px 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: auto;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #FF0000;
    color: #FF0000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Hero Section - Slider */
.hero {
    position: relative;
    height: 90vh;
    /* Increased height for impact */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    /* Default text white for dark slides */
}

/* Slider Backgrounds */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darken slider images */
    z-index: 0;
}

/* Hero Content - Centered & Main Color Focus */
.hero-content {
    max-width: 900px;
    padding: 40px;
    z-index: 2;
    position: relative;
    /* Removed white background box for cleaner look */
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* "Main Color" Accent on Span */
}

.hero-content h1 span {
    color: #FF0000;
    /* Main Red Accent */
}

.hero-content p {
    font-size: 1.4rem;
    color: #f0f0f0;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Custom Buttons - Refined */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #FF0000;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover {
    background-color: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    /* White text on dark/image bg */
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.hero-note,
.pano-message {
    display: none;
}

.photo-credit {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    z-index: 2;
}

/* Features Sections */
.feature-section {
    padding: 80px 20px;
}

.alt-bg {
    background-color: #f9f9f9;
    /* Very Light Grey for contrast */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse .feature-text {
    order: 2;
}

.feature-grid.reverse .feature-image {
    order: 1;
}

.feature-text h2 {
    color: #333;
    margin-bottom: 20px;
}

.feature-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    color: #FF0000;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* Community Section */
.community-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid #eee;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
}

.author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.author strong {
    color: #333;
}

.author span {
    font-size: 0.85rem;
    color: #888;
}

/* Bottom CTA */
.bottom-cta {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.bottom-cta h2 {
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ORBITVIEW FOOTER STYLES - BLACK THEME */

/* MAIN CONTAINER */
.orbit-footer {
    position: relative;
    background: #000000;
    /* Black Background */
    color: #fff;
    padding: 80px 20px 40px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow: hidden;
    margin-top: 50px;
    border-top: 1px solid #222;
}

/* SUBTLE ORBIT RINGS - Adjusted for Black BG */
.orbit-footer::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    /* Red tint */
    border-radius: 50%;
    top: -350px;
    left: -350px;
    animation: rotate360 50s linear infinite;
}

.orbit-footer::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* White tint */
    border-radius: 50%;
    bottom: -250px;
    right: -250px;
    animation: rotateReverse 45s linear infinite;
}

/* PARTICLES */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    top: 0;
    left: 0;
    opacity: 0.3;
}

/* DRONE LIGHT EFFECT */
.drone {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.4), transparent);
    top: 18%;
    left: -150px;
    animation: droneMove 16s linear infinite;
}

@keyframes droneMove {
    0% {
        left: -150px;
    }

    100% {
        left: 110%;
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* WRAPPER */
.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADLINE */
.footer-headline {
    text-align: center;
    margin-bottom: 70px;
}

.footer-headline h2 {
    font-size: 30px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.footer-headline p {
    font-size: 14px;
    color: #FF0000;
    /* Brighter Red for visibility on Black */
    letter-spacing: 1px;
}

/* GRID LAYOUT - Fixed for responsiveness */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Auto-wrap columns */
    gap: 40px;
    align-items: start;
    width: 100%;
}

/* BOX STYLE */
.footer-box {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    transition: none;
    position: relative;
    overflow: visible;
    margin-bottom: 30px;
}

.footer-box:hover {
    transform: none;
    border: none;
    box-shadow: none;
}

/* ANIMATED LINE - Keeping existing logic but fixing colors if needed */
/* ANIMATED LINE REMOVED FOR CLEAN LOOK */
.footer-box::before {
    display: none;
}

@keyframes boxBorderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* TITLE */
.footer-box h3 {
    font-size: 19px;
    margin-bottom: 24px;
    padding: 0 0 0 12px;
    border-left: 4px solid #FF0000;
    border-bottom: none;
    color: #fff;
    font-weight: 700;
}

/* TEXT */
.footer-box p {
    font-size: 13px;
    line-height: 1.9;
    color: #bbb;
}

/* LIST ALIGNMENT */
.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin: 0;
    padding: 6px 0;
    color: #bbb;
    font-size: 13px;
    line-height: 1.8;
}

/* LINKS */
.footer-box a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #FF0000;
    padding-left: 6px;
}

/* BUTTON STYLE */
.footer-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    border: 1px solid #FF0000;
    color: #FF0000;
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.footer-btn:hover {
    background: #FF0000;
    color: #fff !important;
    border: 1px solid #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* SEPARATOR LINE */
.footer-separator {
    width: 100%;
    height: 2px;
    margin-top: 50px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, transparent, #FF0000, transparent);
    animation: lineGlow 3s infinite;
}

@keyframes lineGlow {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* FOOTER BOTTOM & EXTRA */
.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding: 10px 0;
    font-size: 12px;
    color: #888;
}

.footer-extra {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
}

.footer-social {
    margin-bottom: 12px;
}

.footer-social a {
    margin: 0 10px;
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #FF0000;
}

.footer-policies {
    margin-top: 8px;
}

.footer-policies a {
    margin: 0 8px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.footer-policies a:hover {}

.footer-social a,
.footer-policies a {
    display: inline-block;
    margin: 6px;
}

/* Animations */
@keyframes fadePulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .nav-links,
    .nav-auth {
        display: none;
        /* JS handles toggle */
    }

    .mobile-menu-icon {
        display: block;
    }

    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
    }

    .feature-grid.reverse .feature-text {
        order: 1;
        /* Reset order for stacking */
    }

    .feature-image {
        order: 2;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Floating Features Section (Pratibha Style with Animation) */
    .floating-features {
        position: relative;
        margin-top: -80px;
        /* Overlap Hero */
        z-index: 10;
        padding-bottom: 60px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }

    .feature-card {
        background: #fff;
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        /* For border animation */
        border: 1px solid transparent;
        /* Placeholder */
    }

    /* Red Border Animation */
    @keyframes borderRotate {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .feature-card.animated-border::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 12px;
        padding: 2px;
        /* Border width */
        background: linear-gradient(45deg, #ff0000, #ff4d4d, #990000, #ff0000);
        background-size: 300% 300%;
        animation: borderRotate 3s ease infinite;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        /* Let clicks pass through */
    }

    /* Hover Effect - Glow */
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
    }

    .feature-card .icon-box {
        width: 60px;
        height: 60px;
        background: rgba(255, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }

    .feature-card .icon-box i {
        font-size: 24px;
        color: #FF0000;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 5px;
    }

    .feature-card p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
    }

    /* WhatsApp Button Color Override */
    .btn-primary {
        background-color: #25D366 !important;
        /* WhatsApp Green */
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }

    .btn-primary:hover {
        background-color: #128C7E !important;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
    }

    /* Hide Secondary Button if present */
    .btn-secondary {
        display: none !important;
    }

    /* Responsive Adjustments */
    .floating-features {
        margin-top: 0;
        padding-top: 40px;
        background: #000 !important;
        /* Forces Dark bg for contrast on mobile */
        margin-bottom: 0;
    }

    .feature-card {
        background: #111 !important;
        /* Forces Dark card on mobile */
        border: 1px solid #333;
    }

    .feature-card h3 {
        color: #fff !important;
    }

    .feature-card p {
        color: #aaa !important;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding-bottom: 40px;
    }
}

/* =========================================
   NEW UNIVERSAL FOOTER (Replicating Index.html)
   ========================================= */

.orbit-footer-new {
    background-color: #000000;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid #111827;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

/* Decorative Rings */
.orbit-ring-1 {
    display: none;
    position: absolute;
    top: -350px;
    left: -350px;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    opacity: 0.3;
}

.orbit-ring-2 {
    display: none;
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    opacity: 0.3;
}

@media (min-width: 1024px) {

    .orbit-ring-1,
    .orbit-ring-2 {
        display: block;
    }
}

.footer-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

.footer-intro {
    text-align: center;
    margin-bottom: 64px;
}

.footer-intro h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.footer-intro p {
    color: #9ca3af;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Column Styles */
.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    border-left: 4px solid #FF0000;
    padding-left: 12px;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: #FF0000;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.know-more-link {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.know-more-link:hover {
    color: #FF0000 !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.contact-item i {
    color: #FF0000;
    margin-top: 4px;
}

.get-in-touch-btn {
    margin-top: 24px;
    display: inline-block;
    background-color: #fff;
    color: #000 !important;
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.get-in-touch-btn:hover {
    background-color: #FF0000;
    color: #fff !important;
}

/* Bottom Bar */
.footer-copyright {
    border-top: 1px solid #111827;
    padding-top: 32px;
    padding-bottom: 32px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.footer-bottom-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
}

@media (min-width: 768px) {
    .footer-bottom-links {
        flex-direction: row;
    }
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #FF0000;
    color: #fff;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #6b7280;
}

.policy-links a:hover {
    color: #fff;
}

.admin-link {
    color: #FF0000 !important;
    font-weight: 600;
}

.admin-link:hover {
    color: #fff !important;
}

 