
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
:root {
    --glass-blur: 16px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.125);
    --glass-bg: rgba(255, 255, 255, 0.075);
    --glass-bg-dark: rgba(0, 0, 0, 0.5);
    --whatsapp-green: #25D366;
    --phone-blue: #34B7F1;
    --primary: #000000;
    --secondary: #FF5F15;
    --dark: #121212;
    --light: #F5F5F5;
    --accent: #00D4FF;
    --gradient-start: #FF5F15;
    --gradient-end: #FF8C42;
}
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    color: #f5f5f5;
}
.glass-card {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: inherit;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 95, 21, 0.2);
}
/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
    display: inline-block;
    will-change: transform;
}
/* Certificate Carousel */
.certificate-carousel {
    display: flex;
}

.certificate-card {
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 95, 21, 0.2);
}

.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-img {
    transform: scale(1.05);
}

.certificate-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.certificate-dot {
    transition: all 0.3s ease;
}

.certificate-dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.certificate-dot:hover {
    background-color: #ffffff;
}
/* Modal Transition */
.modal-transition {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #FF5F15;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e05512;
}
/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Enhanced Glass Buttons */
.glass-btn {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.whatsapp-glass-btn {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-glass-btn:hover {
    background: rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.phone-glass-btn {
    background: rgba(52, 183, 241, 0.2);
    border-color: rgba(52, 183, 241, 0.3);
}

.phone-glass-btn:hover {
    background: rgba(52, 183, 241, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 40px rgba(52, 183, 241, 0.3);
}
/* Enhanced Section Styles */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Modern Button Styles */
.button-metallic {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.9), rgba(255, 95, 21, 0.7));
    box-shadow: 0 4px 20px rgba(255, 95, 21, 0.3);
}

.button-metallic:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 95, 21, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.button-metallic-glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.button-metallic-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 95, 21, 0.4);
    transform: translateY(-4px);
}
/* Enhanced Glass Card with Metallic Border */
/* Marquee improvement */
.animate-marquee {
    display: flex;
    animation: marquee 40s linear infinite;
    width: max-content;
}
/* Adjust the marquee animation for smoother loop */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.7);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 0.6;
}

.hero-slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 40;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--secondary);
}
/* Navbar Icons Fix */
.action-btn i {
    stroke: white;
    width: 20px;
    height: 20px;
}
/* Improved Marquee */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

/* Marquee item with fixed height, auto width */
.marquee-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2.5rem;
}

.marquee-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
/* Hero Title */
h1 span {
    color: white;
}
