:root {
    --primary: #1b4332; 
    --accent: #ffb703;  
    --light-green: #40916c;
    --text-white: #ffffff;
    --text-dark: #081c15;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Almarai', sans-serif;
}

body {
    background-color: #f0f2f1;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.3);
}

.main-logo { width: 35px; }

.brand-name { display: flex; flex-direction: column; }

.main-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.sub-title {
    font-size: 0.75rem;
    color: var(--light-green);
    font-weight: 700;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.nav-item:hover {
    color: var(--light-green);
}
.nav-item.active {
    border: 2px solid var(--primary);
    background: rgba(27, 67, 50, 0.05);
    color: var(--primary);
}

.call-btn {
    background: var(--accent);
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    animation: zoomAnimation 15s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(8, 28, 21, 0.8), rgba(27, 67, 50, 0.4));
}

@keyframes zoomAnimation {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-text-content {
    max-width: 850px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 183, 3, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.hero-actions { display: flex; gap: 20px; }

.main-btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-btn.primary {
    background: var(--accent);
    color: var(--text-dark);
}

.main-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.main-btn:hover {
    transform: scale(1.05) translateY(-5px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    background: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 992px) {
    .desktop-only { display: none; }
    .mobile-toggle { display: block; }
    
    .nav-container {
        position: fixed;
        top: -120%; 
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: white;
        border-radius: 25px;
        padding: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 999;
    }

    .nav-container.active {
        top: 100px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .main-btn { justify-content: center; }
}
/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.about-image-container {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 2;
}

.main-about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.main-about-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.image-bg-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent);
    border-radius: 30px;
    z-index: -1;
    animation: pulseBorder 3s infinite alternate;
}

@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* Floating Elements Animation */
.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: float 4s infinite ease-in-out;
}

.leaf-1 { top: 10%; left: -25px; animation-delay: 0s; }
.leaf-2 { bottom: 15%; right: -25px; animation-delay: 2s; background: var(--accent); color: var(--primary); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(20deg); }
}

/* Text Side Styles */
.about-text-container {
    flex: 1.2;
    min-width: 400px;
}

.section-subtitle {
    color: var(--light-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9fbf9;
    padding: 15px;
    border-radius: 15px;
    border-right: 4px solid var(--accent);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(-10px);
    background: var(--accent);
    color: var(--text-dark);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.feature-item:hover .icon-box {
    background: white;
    color: var(--primary);
}

/* Reveal Animations on Scroll */
.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: 1s all ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: 1s all ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-wrapper { flex-direction: column; gap: 40px; }
    .about-image-container, .about-text-container { min-width: 100%; text-align: center; }
    .section-title { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { justify-content: center; }
}
/* Services Section Styles */
.services-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #1b4332 0%, #081c15 100%);
    overflow: hidden;
}
.services-bg-decor .circle-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}
.shape-1 { width: 400px; height: 400px; background: rgba(255, 183, 3, 0.1); top: -10%; left: -10%; }
.shape-2 { width: 500px; height: 500px; background: rgba(64, 145, 108, 0.2); bottom: -10%; right: -10%; }

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header .title {
    font-size: 3rem;
    color: white;
    margin: 15px 0;
}

.section-header .description {
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grid System */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.glass-card:hover::before {
    left: 100%;
}

/* Card Elements */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent), #e67e22);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 183, 3, 0.2);
}

.glass-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.glass-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-list li::before {
    content: '✓';
    font-weight: bold;
}
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-up, .reveal-left, .reveal-right, .service-card {
    opacity: 0 !important; 
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(0) !important;
}
.nav-item.active {
    border: 2px solid var(--primary) !important;
    background: rgba(27, 67, 50, 0.05);
    color: var(--primary) !important;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .nav-container {
        position: fixed;
        top: -1000px; 
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: white;
        padding: 30px 10px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        transition: all 0.5s ease-in-out;
        z-index: 999;
        display: block !important;
    }
    .nav-container.active {
        top: 90px; 
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .nav-item {
        display: block;
        width: 100%;
        padding: 12px;
    }
    .services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    gap: 30px;
    }
}
.portfolio-header {
    text-align: center;
    margin: 50px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.portfolio-header .title {
    font-size: 2.8rem;
    color: #1b4332 !important; 
    margin: 15px 0;
    font-weight: 900;
}

.portfolio-header .subtitle {
    color: #ffb703;
    font-weight: 800;
    font-size: 1.1rem;
}

.portfolio-header .description {
    color: #444 !important; 
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.portfolio-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item img, .portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #1b4332;
    background: white;
    color: #1b4332;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 800;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #1b4332;
    color: white;
}

.portfolio-item.hide {
    display: none;
}
.why-us-section {
    margin-top: 50px;
    padding: 120px 0;
    background: #081c15; 
    position: relative;
    overflow: hidden;
}
.why-us-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(64, 145, 108, 0.15);
    filter: blur(100px);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .title {
    color: white;
    font-size: 3rem;
    margin: 20px 0;
}

.why-us-content .description {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}
.stats-grid {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent); 
    margin-bottom: 5px;
}

.stat-text {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}
.why-us-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card-mini {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-mini:hover {
    transform: scale(1.05) translateX(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.card-icon-box {
    min-width: 60px;
    height: 60px;
    background: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: 0.4s;
}

.feature-card-mini:hover .card-icon-box {
    transform: rotateY(180deg);
    background: var(--accent);
    color: var(--primary);
}

.card-info h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.card-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .why-us-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .stats-grid {
        justify-content: center;
    }
    .feature-card-mini {
        flex-direction: column;
        text-align: center;
    }
}
.contact-section {
    padding: 100px 0;
    position: relative;
    background: url('images/raelle-cameron-JUNyb_cetns-unsplash.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.contact-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 28, 21, 0.8); 
    backdrop-filter: blur(1px); 
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}
.contact-section .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    color: white;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.info-text h3 { font-size: 1.1rem; opacity: 0.8; }
.info-text a, .info-text p { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: white; 
    text-decoration: none;
}
.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.input-group { margin-bottom: 15px; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input::placeholder, .input-group textarea::placeholder { color: rgba(255,255,255,0.5); }

.input-group input:focus, .input-group select:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.input-group select option { background: var(--primary); color: white; }
.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all 0.4s;
}

.submit-btn i {
    font-size: 1.4rem;
    transform: rotate(-25deg); 
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 183, 3, 0.4);
}
.main-footer {
    background: #04100c;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}
.footer {
    background: #04100c; 
    color: #fff;
    padding: 80px 0 0;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-right: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-item i {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}
.footer-bottom {
    background: #020806;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.4s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float {
    background-color: #25d366;
}

.call-float {
    background-color: var(--primary);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .contact-item {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000; 
}

.video-slider, .video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-slide.active {
    opacity: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}
.cursor {
    color: var(--accent);
    animation: blink 0.7s infinite;
}
@keyframes blink { 0%, 100% {opacity: 1;} 50% {opacity: 0;} }
.info-text a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
}
.info-text a:hover {
    color: var(--accent); 
    transform: translateX(-5px);
}

.info-icon i {
    color: #fff; 
}
.hero-section {
    position: relative;
    height: 100vh; 
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-slide {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-slide.active {
    opacity: 1;
    z-index: 2;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 3; 
}

.hero-inner {
    position: relative;
    z-index: 10; 
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-text-content {
    margin-top: 0; 
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
        line-height: 1.3;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.6;
        margin-bottom: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .main-btn {
        width: 80%;
        padding: 12px;
        font-size: 1rem;
    }
}