* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF5F15;
    --secondary-orange: #FFA802;
    --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    --bg-dark: #0d163e;
    --text-light: #ffffff;
    --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
    --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
    --border-orange: rgba(255, 95, 21, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    background: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}


/* RESPONSIVE FIXES FOR MAIN CONTENT */

.topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: linear-gradient(90deg, #111, #222) !important;
    color: #fff !important;
    font-size: clamp(12px, 2vw, 14px) !important;
    padding: 5px 0 !important;
    z-index: 1040 !important;
    letter-spacing: 0.3px !important;
}

.topbar-left span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 500 !important;
    color: #FFA802 !important;
}

.topbar-right span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: clamp(12px, 2vw, 14px) !important;
}

.topbar i {
    color: #FFA802 !important;
    font-size: clamp(12px, 2vw, 14px) !important;
}

/* Navbar */
.navbar {
    position: fixed !important;
    top: 30px !important;
    left: 0 !important;
    width: 100% !important;
    background: #0d163e !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 17px 0 !important;
    transition: all 0.3s ease !important;
    z-index: 1030 !important;
    color: #fff !important;
}

.navbar .navbar-brand img {
    height: clamp(40px, 6vw, 50px) !important;
}

.nav-link {
    font-weight: 500 !important;
    color: white !important;
    margin: 0 10px !important;
    padding: 8px 15px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    font-size: clamp(14px, 2vw, 16px) !important;
}

.nav-link:hover {
    color: white !important;
    background: var(--gradient-primary) !important;
    transform: translateY(-2px) !important;
}

.btn-login,
.btn-register {
    padding: 8px 25px !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    font-size: clamp(12px, 2vw, 14px) !important;
}

.btn-login {
    background: transparent !important;
    border: 2px solid var(--primary-orange) !important;
    color: var(--primary-orange) !important;
}

.btn-login:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.btn-register {
    background: var(--gradient-primary) !important;
    color: white !important;
}

.btn-register:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-hover) !important;
    color: white !important;
}


/* Toggle hamburger to X */
.navbar-toggler.collapsed .navbar-toggler-icon {
    background: #FFA802 !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
    top: -8px !important;
    transform: rotate(0) !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
    top: 8px !important;
    transform: rotate(0) !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background: transparent !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    top: 0 !important;
    transform: rotate(45deg) !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    top: 0 !important;
    transform: rotate(-45deg) !important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}


/* Mobile Fixes */
@media (max-width: 991px) {
    .navbar {
        justify-content: space-between !important;
        top: 10px !important;
    }

    .navbar-collapse {
        background: #0d163e !important;
        border-radius: 12px !important;
        margin-top: 10px !important;
        padding: 10px 15px !important;
    }

    .navbar-toggler {
        margin-left: auto !important;
        /* right side fix */
        z-index: 1050 !important;
        /* upar rahe */
    }

}


/* Custom hamburger */
.navbar-toggler-icon {
    display: block !important;
    width: 25px !important;
    height: 2px !important;
    background: #FFA802 !important;
    position: relative !important;
    border-radius: 2px !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 25px !important;
    height: 2px !important;
    background: #FFA802 !important;
    left: 0 !important;
    border-radius: 2px !important;
}

.navbar-toggler-icon::before {
    top: -8px !important;
}

.navbar-toggler-icon::after {
    top: 8px !important;
}

.topbar-right span {
    display: none !important;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 700;
    color: white;
}

h4 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
    color: white;
}

h5 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
    font-weight: 600;
    color: white;
}

p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Section Redesign */
.hero-services-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 95, 21, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 168, 2, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    /* animation: bgFloat 8s ease-in-out infinite; */
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -3%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hero Content Container */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 120px 0;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

/* Left Content */
.hero-text {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    color: var(--secondary-orange);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out;
}

.hero-badge i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 1.5s both;
}

@keyframes expandLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    /* max-width: 500px; */
    animation: slideInLeft 1.2s ease-out 0.6s both;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1.2s ease-out 0.9s both;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Right Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: slideInRight 1.2s ease-out 0.6s both;
}

/* Service Cards Display */
.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.2);
}

.service-card:hover::before {
    left: 100%;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.service-card-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Central Logo */
.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
}

.central-logo img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Stats Pills
        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            animation: slideInLeft 1.2s ease-out 1.2s both;
        }

        .stat-pill {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            padding: 15px 25px;
            text-align: center;
            min-width: 120px;
        }

        .stat-number {
            font-size: 24px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        } */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 20px;
    color: var(--primary-orange);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-top: 1.5rem;
    }

    .services-showcase {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 100px 0 60px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 15px 25px;
        font-size: 14px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .services-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 300px;
    }

    .central-logo {
        width: 80px;
        height: 80px;
        /* display: none; */
    }

    .central-logo img {
        width: 50px;
    }
}

@media (max-width: 480px) {

    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .service-card {
        padding: 20px;
    }

    .service-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* hero section end  */

/* Section Styles */
.section {
    /* padding: clamp(60px, 10vw, 100px) 0; */
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 70px);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}


/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 80px);
    margin: clamp(30px, 6vw, 60px) 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    min-height: 400px;
    position: relative;
    padding: clamp(40px, 8vw, 60px) 0;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even)>* {
    direction: ltr;
}

.service-content {
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.service-image {
    position: relative;
    height: auto;
    border-radius: 25px;
    /* overflow: hidden; */
    box-shadow: var(--shadow-primary);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-image::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin: 60px 0;
    padding: 60px 0;
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-orange);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: white;
    color: var(--primary-orange);
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-orange);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseOverlay {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
    margin-top: 5rem;
}

@media (max-width: 768px) {
    .fade-in-up.show {
        margin-top: 7.7rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        /* text-align: center; */
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-image {
        height: 300px;
    }
}

@media (max-width: 768px) {

    .section {
        /* padding: 50px 0; */
    }

    .service-content {
        padding: 20px;
    }

    .stats-section,
    .cta-section {
        margin: 40px 0;
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {


    .section {
        /* padding: 40px 0; */
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 250px;
    }
}

/* footer section start */

/* Ultra Unique Light Footer Design */
.unique-footer {
    background: #0d163e;
    /* background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%); */
    border-top: 5px solid #FF5F15;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Background Pattern */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 95, 21, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 168, 2, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 30%),
        linear-gradient(45deg, transparent 49%, rgba(255, 95, 21, 0.02) 50%, transparent 51%);
    background-size: 200px 200px, 300px 300px, 150px 150px, 100px 100px;
    /* animation: bgFloat 15s ease-in-out infinite; */
}


footer ul li a {
    font-size: clamp(16px, 2.5vw, 22px);
    color: #000000;
    font-weight: 500;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-15px, 20px) rotate(240deg);
    }
}

/* Hexagonal Newsletter Section */
.hex-newsletter {
    position: relative;
    margin: 50px auto;
    max-width: 1000px;
    z-index: 10;
}

.hex-container {
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    /* clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%); */
    padding: 60px 80px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 95, 21, 0.3);
}

.hex-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 30px 30px;
    animation: hexPattern 8s linear infinite;
}

@keyframes hexPattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(30px) translateY(30px);
    }
}

.hex-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hex-form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.hex-input {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    width: 300px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hex-input::placeholder {
    color: #666;
}

.hex-input:focus {
    outline: none;
    border-color: white;
    background: white;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 95, 21, 0.3);
}

.hex-btn {
    background: white;
    color: #FF5F15;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hex-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.4);
    background: #f8f9fa;
}

.hex-partner {
    background: white;
    color: #FF5F15;
    border: 3px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hex-partner:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 168, 2, 0.4);
}

/* Floating Cards Layout */
.floating-cards {
    position: relative;
    z-index: 5;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.float-card {
    /* background: rgba(255, 255, 255, 0.9); */
    box-shadow: 0 25px 50px rgba(255, 95, 21, 0.15);

    /* backdrop-filter: blur(20px); */
    border: 2px solid rgba(255, 95, 21, 0.1);
    border-radius: 25px;
    padding: 30px;
    color: #333;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.5s ease;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 25px 50px rgba(255, 95, 21, 0.15);

}

.float-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.5s;
}

.float-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(255, 95, 21, 0.15);
    border-color: rgba(255, 168, 2, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.float-card:hover::before {
    left: 100%;
}

/* Company Card - Main */
.company-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 235, 0.9));
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(255, 95, 21, 0.1);
}

.company-logo {
    width: 200px;
    height: 80px;
    object-fit: contain;
    /* filter: drop-shadow(0 5px 15px rgba(255, 95, 21, 0.3)); */
}

.company-title {
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.contact-item {
    background: white;
    border: 2px solid rgba(255, 95, 21, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.2);
    word-break: break-all;
}

.contact-item:hover {
    background: rgba(255, 248, 235, 0.8);
    border-color: rgba(255, 95, 21, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: contrast(1.2) saturate(1.3);
}

.contact-text {
    font-size: 14px;
    color: #444;
    margin: 0;
    font-weight: 500;
}

/* Social Media Inline */
.social-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* icons ke beech ka gap */
    margin: 30px auto;
    flex-wrap: wrap;
    /* responsive ke liye */
}

.social-icon {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid rgba(255, 95, 21, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: scale(1.3);
    background: rgba(255, 248, 235, 1);
    border-color: #FF5F15;
    box-shadow: 0 15px 35px rgba(255, 95, 21, 0.3);
    z-index: 10;
}

.social-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}


/* Navigation Pyramids */
.nav-pyramid {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 95, 21, 0.1);
    position: relative;
    margin-bottom: 20px;
}

.pyramid-header {
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    color: white;
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 95, 21, 0.3);
}

.pyramid-links {
    list-style: none;
    padding: 0 20px 20px;
}

.pyramid-links li {
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.pyramid-links a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
}

.pyramid-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.1), rgba(255, 168, 2, 0.1));
    transition: left 0.3s ease;
    z-index: -1;
}

.pyramid-links a:hover {
    color: #FF5F15;
    transform: translateX(10px);
    background: white;
    border-color: rgba(255, 95, 21, 0.2);
    box-shadow: 0 5px 15px rgba(255, 95, 21, 0.2);
    font-weight: 600;
}

.pyramid-links a:hover::before {
    left: 0;
}

/* Certification Diamonds */
.cert-diamonds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.diamond-box {
    background: white;
    border: 3px solid rgba(255, 95, 21, 0.2);
    position: relative;
    padding: 10px;
    border-radius: 20px;
    margin: 0px 20px;
    /* clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%); */
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.diamond-box:hover {
    border-color: #FFA802;
    background: rgba(255, 248, 235, 0.9);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.2);
}

.diamond-title {
    color: #FF5F15;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.diamond-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
}

.diamond-images img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: contrast(1.1) saturate(1.2);
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border: 2px solid rgba(255, 95, 21, 0.1);
}

.diamond-images img:hover {
    transform: scale(1.2) rotate(10deg);
    filter: contrast(1.3) saturate(1.4);
    border-color: #FF5F15;
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.3);
}

/* Morphing Copyright */
.morphing-copyright {
    background: linear-gradient(135deg, #FF5F15, #FFA802, #FF5F15);
    background-size: 300% 300%;
    /* animation: morphBg 6s ease-in-out infinite; */
    padding: 10px;
    text-align: center;
    color: white;
    /* font-weight: bold; */
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    margin: 15px;
    margin-top: 30px;
    border-radius: 20px;
    /* margin-bottom: 20px; */
    box-shadow: 0 -10px 30px rgba(255, 95, 21, 0.3);
}

/* .morphing-copyright::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                repeating-linear-gradient(45deg,
                    transparent,
                    transparent 10px,
                    rgba(255, 255, 255, 0.05) 10px,
                    rgba(255, 255, 255, 0.05) 20px);
            animation: textFlow 12s linear infinite;
        } */

/* @keyframes morphBg {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes textFlow {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(50px);
            }
        } */

.copyright-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.flag-icon {
    width: 25px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    /* animation: wave 3s ease-in-out infinite; */
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(8deg);
    }
}

/* Light Theme Specific Enhancements */
.light-glow {
    position: relative;
}

.light-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF5F15, #FFA802, #FF5F15);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.light-glow::after {
    opacity: 0.3;
    /* animation: pulse 1.5s ease-in-out infinite; */
}


.light-glow:hover::after {
    opacity: 0.1;
    /* animation: pulse 1.5s ease-in-out infinite; */
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hex-container {
        clip-path: none;
        border-radius: 25px;
        padding: 40px 30px;
    }

    .hex-form {
        flex-direction: column;
    }

    .hex-input {
        width: 100%;
    }

    .floating-cards {
        grid-template-columns: 1fr;
    }

    .company-card {
        grid-column: span 1;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    /* .contact-grid {
                grid-template-columns: 1fr;
            } */

    .social-orbital {
        width: 180px;
        height: 180px;
    }

    .cert-diamonds {
        grid-template-columns: 1fr;
    }

    .diamond-box {
        clip-path: none;
        border-radius: 15px;
        margin: 0px 10px;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Light Theme Particles */
.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.8), rgba(255, 168, 2, 0.6));
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}