body {
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(2, 0, 36, 0.8), rgba(9, 121, 74, 0.7));
    overflow: hidden;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: -1;
}

.hero .container {
    z-index: 1;
}

.animate-fade-in {
    animation: fadeIn 2s ease-in-out;
}

.animate-slide-in {
    animation: slideIn 2s ease-in-out;
}

.animate-pop {
    animation: pop 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pop {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/* Navbar */
.sticky-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #002f4f, #005e8c);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.navbar-brand:hover {
    color: #ffcc00;
}

.navbar-dark .navbar-nav {
    gap: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffcc00;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%288, 8, 8, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-brand {
        margin-bottom: 10px;
    }
}

/* About Section */
#about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#about p.lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

#about ul {
    list-style-type: none;
    padding: 0;
}

#about ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

#about ul li::before {
    content: "\2713";
    color: #005e8c;
    font-weight: bold;
    margin-right: 10px;
}

#about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Button spacing */
.about-btn {
    margin-top: 20px;
}

/* Beautiful Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

/* Glowing Effect */
.footer-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 255, 0.3);
    filter: blur(150px);
    transform: translateX(-50%);
}

/* Footer Text */
.footer p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 300;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    transition: 0.4s;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    display: inline-block;
    padding: 10px 20px;
    color: #00d4ff;
    font-weight: bold;
    border: 2px solid #00d4ff;
    border-radius: 25px;
    transition: 0.3s;
    text-decoration: none;
}

.back-to-top:hover {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 15px #00d4ff;
}

/* New Section Styling */

.new-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Feature & Work Boxes */
.feature-box, .work-box {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
}

.feature-box img, .work-box img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-box:hover, .work-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Image Slider */
.carousel-inner img {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.carousel {
    animation: fade 1s ease-in-out;
}

.carousel-item {
    transition: transform 0.2s ease-in-out; /* Speed up the transition */
}

/* Objective Section */
.objective-section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.objective-section p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}


/* faka fak */

.new-section {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    border-radius: 10px;
    padding: 40px 20px;
    animation: fadeIn 1s ease-in;
}

.section-title {
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-box, .work-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.feature-box:hover, .work-box:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(135deg, #16213e, #0f3460, #1a1a2e);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 1.5s ease-out;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-btn {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f3460;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    transition: all 0.3s ease-in-out;
    background: #ffcc00;
}

.cta-btn:hover {
    background: #ffdd33;
    color: #0a192f;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.5);
    transform: scale(1.05);
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
}
/* Full-width background animation */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'); 
    opacity: 0.1;
    z-index: -1;
}

/* Glassmorphism Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1);
}

/* Neon Text Glow */
.text-glow {
    text-shadow: 0px 0px 8px rgba(0, 255, 255, 0.7);
}

/* Neon Border */
.neon-border {
    border: 2px solid rgba(0, 255, 255, 0.8);
    box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.7);
}

/* Button Hover Effect */
.cta-btn:hover {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: white;
    box-shadow: 0px 0px 15px rgba(255, 0, 255, 0.8);
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}

/* Animations */
.fade-in { animation: fadeIn 1.2s ease-in-out; }
.fade-in-left { animation: fadeInLeft 1.5s ease-in-out; }
.fade-in-right { animation: fadeInRight 1.5s ease-in-out; }
.fade-in-bottom { animation: fadeInBottom 1.5s ease-in-out; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInBottom { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }


 /* Stylish Image Container */
 .image-container {
    position: relative;
    display: inline-block;
}

.stylish-image {
    max-width: 85%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect */
.stylish-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.9);
}

/* Subtle fade-in animation */
.stylish-image {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#about{
    margin-top: 1rem;
    border-radius: 1rem;
}