/* CSS Variables */
:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary: #ff9800;
    --secondary-dark: #e68900;
    --dark: #202124;
    --light: #f8f9fa;
    --gray: #5f6368;
    --light-gray: #e8eaed;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Header Styles */
.header {
    background: linear-gradient(135deg,
            #0c1a3a 0%,
            #1a237e 30%,
            #283593 70%,
            #3949ab 100%);
    color: var(--white);
    padding: 1.2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--secondary) 50%,
            var(--primary) 100%);
    z-index: 2;
}

.header-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    animation: float 20s infinite linear;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 10%;
    animation-delay: -5s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -30px;
    animation-delay: -10s;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 60%);
    animation: pulse 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    transform: rotate(45deg);
    animation-delay: -2s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    transform: rotate(-30deg);
    animation-delay: -4s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 30px) rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    position: relative;
    width: 70px;
    height: 70px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), #ffb74d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-icon:hover .icon-circle {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.5);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
            rgba(255, 152, 0, 0.4) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-highlight {
    color: var(--secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.tagline {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tagline-text {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1.5px;
}

.tagline-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    border-radius: 2px;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-item:last-child::after {
    display: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.address,
.phone {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta::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.7s ease;
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
}

/* Navigation */
.navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease;
}

.nav-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(26, 115, 232, 0.05) 0%,
            rgba(255, 152, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navigation:hover .nav-background {
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 6px auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.mobile-menu-btn.active .line-1 {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--secondary);
}

.mobile-menu-btn.active .line-2 {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--secondary);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.3rem 1.8rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-icon {
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.nav-text {
    position: relative;
    z-index: 1;
}

.nav-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}

.nav-link:hover .nav-hover-effect {
    transform: translateY(0);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    color: white;
    transform: scale(1.2);
}

.nav-link.active .nav-hover-effect {
    transform: translateY(0);
    opacity: 0.9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 80%;
}

.nav-cta {
    margin-left: 10px;
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

.nav-cta-btn i {
    font-size: 1.1rem;
}

/* Scroll Effect */
.navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navigation.scrolled .nav-link {
    padding: 1rem 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-info {
        gap: 20px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item::after {
        right: -10px;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 1rem 0;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-area {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .contact-item::after {
        display: none;
    }

    .header-cta {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-link {
        padding: 1rem 1.2rem;
    }

    .nav-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1.2rem 1.5rem;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
    }

    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .logo {
        font-size: 1.6rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .icon-circle {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.4rem;
    }

    .tagline-text {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .address,
    .phone {
        font-size: 0.85rem;
    }

    .nav-links {
        width: 280px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .navigation {
        background: rgba(30, 30, 40, 0.95);
    }

    .nav-link {
        color: #f0f0f0;
    }

    .nav-links.active {
        background: rgba(30, 30, 40, 0.98);
    }

    .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Hero Slider Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-content h1 {
    animation: slideUpFade 0.8s ease 0.3s both;
}

.hero-slide.active .hero-content p {
    animation: slideUpFade 0.8s ease 0.6s both;
}

.hero-slide.active .hero-content .hero-btn {
    animation: slideUpFade 0.8s ease 0.9s both;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btn {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::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.7s ease;
    z-index: -1;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.5);
}

.hero-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.slider-prev::before,
.slider-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.slider-prev:hover::before,
.slider-next:hover::before {
    opacity: 1;
}

.slider-prev:hover,
.slider-next:hover {
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slider-prev:active,
.slider-next:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.indicator.active::before {
    transform: scale(1);
}

.indicator:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: transparent;
    transform: scale(1.3);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease 2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s ease;
}

.scroll-link span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-link i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-link:hover {
    color: var(--secondary);
}

.scroll-link:hover i {
    animation: none;
    transform: translateY(5px);
}

/* Responsive Hero Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 600px;
        max-height: 800px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .slider-controls {
        padding: 0 20px;
    }

    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 550px;
        max-height: 700px;
    }

    .hero h1 {
        font-size: 2.3rem;
        padding: 0 15px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .hero-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }

    .slider-controls {
        padding: 0 15px;
        bottom: 30px;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .scroll-down {
        bottom: 100px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
        max-height: 600px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .slider-controls {
        flex-direction: column;
        gap: 20px;
        bottom: 20px;
    }

    .slider-prev,
    .slider-next {
        position: static;
        order: 2;
    }

    .slider-indicators {
        order: 1;
    }

    .scroll-down {
        bottom: 150px;
    }

    .scroll-link span {
        font-size: 0.8rem;
    }
}

/* Pause animation on hover */
.hero:hover .scroll-link i {
    animation-play-state: paused;
}

/* Autoplay indicator */
.autoplay-status {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.autoplay-status:hover {
    opacity: 1;
}

.autoplay-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 115, 232, 0.9), rgba(255, 152, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 12px;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-btn {
    background-color: var(--white);
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    transform: translateY(20px);
}

.service-card:hover .service-btn {
    transform: translateY(0);
}

.service-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.partners-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.partner-logo {
    font-weight: 700;
    color: var(--gray);
    padding: 1rem 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.partner-logo.highlight {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.partner-logo.highlight:hover {
    border-color: transparent;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-20px, -20px) rotate(360deg);
    }
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-detail i {
    font-size: 1.5rem;
    margin-right: 1.2rem;
    margin-top: 5px;
    color: var(--secondary);
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.contact-form {
    padding: 2rem;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 2rem;
}

.footer-about {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-about p {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    flex: 1.5;
    min-width: 250px;
}

.footer-contact p {
    color: #ddd;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.95rem;
}

.copyright .fa-heart {
    color: #ff4757;
    margin: 0 5px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo-area {
        flex-direction: column;
        gap: 10px;
    }

    .tagline {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 10px;
    }

    .contact-info {
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 1rem 0;
        border-radius: 0 0 10px 10px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease;
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        padding: 1.2rem 2rem;
        justify-content: center;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .partners-logos {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
}


/* Premium About Us Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(26, 115, 232, 0.03) 0%,
            transparent 70%);
    top: -300px;
    right: -200px;
    animation: rotate 60s linear infinite;
}

.about-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(26, 115, 232, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 115, 232, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

.about-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 152, 0, 0.03) 50%,
            transparent 60%);
    bottom: -200px;
    left: -100px;
    transform: rotate(-30deg);
    animation: pulse 15s infinite ease-in-out;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.subtitle-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary),
            transparent);
}

.subtitle-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(45deg,
            var(--dark) 0%,
            var(--primary) 50%,
            var(--dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title .highlight {
    color: var(--secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary),
            var(--primary));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 600px;
    margin: 30px auto 0;
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

/* Left Column */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 115, 232, 0.2);
}

.stat-card:nth-child(2) {
    margin-top: -20px;
}

.stat-card:nth-child(3) {
    margin-top: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
            rgba(26, 115, 232, 0.1),
            rgba(26, 115, 232, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-card:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-card:hover .stat-number {
    background: linear-gradient(45deg,
            var(--primary),
            var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
}

.stat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary),
            var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover .stat-wave {
    transform: scaleX(1);
}

/* Company Image */
.company-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.company-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.company-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.company-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.overlay-content:hover i {
    transform: scale(1.2);
}

.image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
    z-index: 2;
    animation: badgeFloat 3s infinite ease-in-out;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Right Column */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mission-icon {
    background: linear-gradient(135deg,
            rgba(26, 115, 232, 0.1),
            rgba(26, 115, 232, 0.05));
    color: var(--primary);
}

.vision-icon {
    background: linear-gradient(135deg,
            rgba(255, 152, 0, 0.1),
            rgba(255, 152, 0, 0.05));
    color: var(--secondary);
}

.mission-content h3,
.vision-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-content p,
.vision-content p {
    color: var(--gray);
    line-height: 1.7;
}

.mission-decoration,
.vision-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 0 20px 0 100px;
    opacity: 0.05;
    z-index: 0;
}

.mission-decoration {
    background: linear-gradient(135deg, var(--primary), transparent);
}

.vision-decoration {
    background: linear-gradient(135deg, var(--secondary), transparent);
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 115, 232, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 115, 232, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(26, 115, 232, 0.1),
            rgba(26, 115, 232, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.value-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.secondary-btn {
    background: white;
    color: var(--primary);
    border: 2px solid rgba(26, 115, 232, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-5px);
}

.primary-btn:hover {
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

.secondary-btn:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    background: rgba(26, 115, 232, 0.05);
}

/* Team Section */
.team-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark);
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary),
            var(--primary));
    border-radius: 2px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    bottom: 30px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2),
    .stat-card:nth-child(3) {
        margin-top: 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .company-image {
        height: 350px;
    }

    .mission-card,
    .vision-card {
        padding: 25px;
    }

    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .about-cta {
        flex-direction: column;
    }

    .team-members {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .company-image {
        height: 300px;
    }

    .image-badge {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .value-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .value-icon {
        margin: 0 auto;
    }

    .member-info {
        padding: 25px 20px;
    }
}

/* Premium Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(26, 115, 232, 0.1) 0%,
            transparent 70%);
    animation: floatParticle 20s infinite linear;
}

.particle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.particle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

.particle-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, 30px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(0, 60px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translate(-30px, 30px) rotate(270deg);
        opacity: 0.5;
    }
}

.bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to top,
            rgba(26, 115, 232, 0.05) 0%,
            transparent 100%);
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.label-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary);
    text-transform: uppercase;
}

.label-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg,
            var(--secondary),
            transparent);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.9) 50%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-title .highlight {
    color: var(--secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 152, 0, 0.3),
            transparent);
    border-radius: 4px;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Service Card */
.service-card {
    perspective: 1000px;
    height: 400px;
    position: relative;
}

.service-card.featured {
    transform: translateY(-10px);
}

.service-card.featured .card-inner {
    border: 2px solid var(--secondary);
    box-shadow: 0 20px 60px rgba(255, 152, 0, 0.2);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 25px;
    overflow: hidden;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    overflow: hidden;
}

.card-front {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.card-back {
    background: linear-gradient(145deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);
    transform: rotateY(180deg);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg,
            var(--secondary) 0%,
            #ffb74d 100%);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle,
            rgba(26, 115, 232, 0.3) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Card Content */
.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    text-align: center;
}

.service-description {
    color: var(--gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(45deg,
            rgba(26, 115, 232, 0.1),
            rgba(26, 115, 232, 0.05));
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

/* Card Footer */
.card-footer {
    width: 100%;
}

.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(45deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.learn-more-btn::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.7s ease;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    background: linear-gradient(45deg,
            var(--primary-dark) 0%,
            var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

/* Back Content */
.back-content {
    color: white;
    text-align: center;
}

.back-content h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-details i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.enquire-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
    border-color: transparent;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .card-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 60%);
    animation: shineCTA 3s infinite linear;
}

@keyframes shineCTA {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cta-content h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
}

.cta-btn.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4);
    background: linear-gradient(45deg, #ffb74d, var(--secondary));
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .service-card {
        height: 380px;
    }

    .card-front,
    .card-back {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        height: 360px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .services-cta {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Premium Products Section */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #121625 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 152, 0, 0.1) 0%,
            transparent 70%);
    animation: floatParticle 20s infinite linear;
}

.p1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.p2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.p3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translate(0, 40px) scale(1);
        opacity: 0.3;
    }

    75% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.5;
    }
}

.bg-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top,
            rgba(26, 115, 232, 0.05) 0%,
            transparent 100%);
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 10px 25px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.section-badge i {
    color: var(--primary);
    font-size: 1.2rem;
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.9) 50%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-title .highlight {
    position: relative;
    color: var(--secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 152, 0, 0.4),
            transparent);
    border-radius: 4px;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Products Filter */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn:hover {
    background: rgba(26, 115, 232, 0.1);
    color: white;
    border-color: rgba(26, 115, 232, 0.3);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.hot {
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: white;
}

.product-badge.new {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    color: white;
}

.product-badge.featured {
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
}

/* Product Image */
.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

/* Product Content */
.product-content {
    padding: 25px;
}

.product-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-tag {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 5px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--secondary);
}

.product-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Product Specs */
.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.product-card:hover .spec-item {
    background: rgba(255, 152, 0, 0.1);
    color: var(--secondary);
}

.spec-item i {
    font-size: 0.9rem;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 152, 0, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    margin-top: 2px;
    align-self: flex-start;
}

.enquiry-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.enquiry-btn::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.7s ease;
}

.enquiry-btn:hover::before {
    left: 100%;
}

.enquiry-btn:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.enquiry-btn i {
    font-size: 1rem;
}

/* View All Container */
.view-all-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-btn::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.7s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Modal Styles */
.quick-view-modal,
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg,
            rgba(30, 30, 40, 0.95) 0%,
            rgba(20, 20, 30, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    position: relative;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .products-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .products-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 20px;
    }

    .product-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .enquiry-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .products-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .product-image {
        height: 200px;
    }

    .view-all-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}


.footer-premium {
    background: #0b1a2a;
    color: #fff;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 26px;
    color: #cf7b00;
}

.footer-brand p {
    margin-top: 15px;
    color: #cfd8e3;
    line-height: 1.7;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: #cf7b00;
    margin-right: 10px;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #cf7b00;
    color: #0b1a2a;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #cf7b00;
    display: block;
    margin-top: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #cfd8e3;
}

.footer-links a {
    color: #cfd8e3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #cf7b00;
    padding-left: 6px;
}

.footer-contact p {
    margin-bottom: 14px;
    color: #cfd8e3;
}

.footer-contact i {
    color: #cf7b00;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #cfd8e3;
}

/* Mobile */
@media(max-width:768px) {
    .footer-bottom {
        text-align: center;
        gap: 10px;
        flex-direction: column;
    }
}

.why-premium {
    background: #ffffff;
    padding: 110px 0;
    color: #0b1a2a;
}

.why-header {
    max-width: 750px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.why-tag {
    font-size: 13px;
    letter-spacing: 3px;
    color: #cf7b00;
    font-weight: 600;
}

.why-header h2 {
    font-size: 42px;
    margin: 15px 0;
}

.why-header span {
    color: #cf7b00;
}

.why-header p {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.why-card {
    background: #f8f9fc;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e6ebf2;
    transition: 0.4s ease;
}

.why-card i {
    font-size: 34px;
    color: #cf7b00;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: #555;
    line-height: 1.7;
}

.why-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.15);
}

.why-footer {
    text-align: center;
    margin-top: 70px;
}

.why-footer p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.why-btn {
    background: linear-gradient(135deg, #cf7b00, #cf7b00);
    padding: 14px 45px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .why-header h2 {
        font-size: 28px;
    }

    .why-card {
        padding: 30px 22px;
    }
}

/* Premium Products Section */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #121625 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(26, 115, 232, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 115, 232, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 152, 0, 0.1) 0%,
            transparent 70%);
    animation: floatParticle 20s infinite linear;
}

.p1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.p2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.p3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translate(0, 40px) scale(1);
        opacity: 0.3;
    }

    75% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.5;
    }
}

.bg-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top,
            rgba(26, 115, 232, 0.05) 0%,
            transparent 100%);
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 10px 25px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.section-badge i {
    color: var(--primary);
    font-size: 1.2rem;
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.9) 50%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-title .highlight {
    position: relative;
    color: var(--secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 152, 0, 0.4),
            transparent);
    border-radius: 4px;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Products Filter */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn:hover {
    background: rgba(26, 115, 232, 0.1);
    color: white;
    border-color: rgba(26, 115, 232, 0.3);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.hot {
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: white;
}

.product-badge.new {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    color: white;
}

.product-badge.featured {
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
}

/* Product Image */
.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(255, 255, 255, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

/* Product Content */
.product-content {
    padding: 25px;
}

.product-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-tag {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 5px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--secondary);
}

.product-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Product Specs */
.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.product-card:hover .spec-item {
    background: rgba(255, 152, 0, 0.1);
    color: var(--secondary);
}

.spec-item i {
    font-size: 0.9rem;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 152, 0, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    margin-top: 2px;
    align-self: flex-start;
}

.enquiry-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.enquiry-btn::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.7s ease;
}

.enquiry-btn:hover::before {
    left: 100%;
}

.enquiry-btn:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.enquiry-btn i {
    font-size: 1rem;
}

/* View All Container */
.view-all-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--secondary), #ffb74d);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-btn::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.7s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Modal Styles */
.quick-view-modal,
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg,
            rgba(30, 30, 40, 0.95) 0%,
            rgba(20, 20, 30, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    position: relative;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .products-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .products-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 20px;
    }

    .product-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .enquiry-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .products-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .product-image {
        height: 200px;
    }

    .view-all-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}


.footer-premium {
    background: #0b1a2a;
    color: #fff;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 26px;
    color: #cf7b00;
}

.footer-brand p {
    margin-top: 15px;
    color: #cfd8e3;
    line-height: 1.7;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: #cf7b00;
    margin-right: 10px;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #cf7b00;
    color: #0b1a2a;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #cf7b00;
    display: block;
    margin-top: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #cfd8e3;
}

.footer-links a {
    color: #cfd8e3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #cf7b00;
    padding-left: 6px;
}

.footer-contact p {
    margin-bottom: 14px;
    color: #cfd8e3;
}

.footer-contact i {
    color: #cf7b00;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #cfd8e3;
}

/* Mobile */
@media(max-width:768px) {
    .footer-bottom {
        text-align: center;
        gap: 10px;
        flex-direction: column;
    }
}

/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 768px) {

    /* Hide desktop layout */
    .contact-info,
    .tagline,
    .header-bg-elements {
        display: none !important;
    }

    .header {
        padding: 12px 0 !important;
        background: linear-gradient(135deg, #0b1a2a, #122b45);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-area {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 16px !important;
        line-height: 1.2;
        margin: 0;
    }

    .navigation {
        background: #0b1a2a;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 18px;
        z-index: 999;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0b1a2a;
        flex-direction: column;
        padding: 90px 30px;
        transition: 0.4s ease;
        z-index: 998;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        margin-bottom: 18px;
    }

    .nav-link {
        justify-content: flex-start;
        font-size: 16px;
    }

    .nav-cta {
        margin-top: 20px;
    }

}

.breadcrumb-dark {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 18px 18px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb-dark .container {
    max-width: 1200px;
    padding: 20px 20px;
    margin: auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;

}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

.current {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
    .breadcrumb-nav {
        font-size: 12px;
    }
}