body {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}
a {
    text-decoration: none;
}

/* Navbar */
.custom-navbar {
    /* background: linear-gradient(135deg, #f30920c4 0%); */
        background: linear-gradient(135deg, #d36c6c 0%, #7f1d1d 100%);
    backdrop-filter: blur(10px);
    /* padding: 2rem; */
    /* border-radius: 0 0 1rem 1rem; */
    position: relative;
    z-index: 1000;
}


/* Navbar Links */
.nav-item a {
    /* margin: 0 0.75rem; */
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.navbar-links a:hover {
    color: #6a5af9;
}

/* Mobile Dropdown */
/* #navbar-dropdown {
    width: 100%;
    max-width: 250px;
    background: #0f172a;
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    top: 100%;
    right: 1rem;
    z-index: 2000;
    animation: dropdownFade 0.3s ease forwards;
} */
/* 
#navbar-dropdown .dropdown-link {
    display: block;
    padding: 10px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} */
/* 
#navbar-dropdown .dropdown-link:last-child {
    border-bottom: none;
} */

/* @keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Footer */
.footer {

        background: linear-gradient(135deg, #7f1d1d 0%, #040436 100%);
    /* background: linear-gradient(135deg, #0e7490a8 0%, #38bdf8a8 100%); */
    color: #fff;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a.footer-link {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer a.footer-link:hover {
    color: #00d4ff;
}

.social-icons a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #00c9ff;
    transform: scale(1.2) rotate(-10deg);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .navbar-links {
        display: none !important;
    }

    /* #navbar-dropdown {
        width: 90%;
        right: 5%;
    } */
}

@media (max-width: 576px) {
    .custom-navbar {
        padding: 1rem;
    }

    .footer {
        text-align: center;
    }

    .footer .col-lg-4 {
        margin-bottom: 1.5rem;
    }
}

 /* ===== Hero Section ===== */
 .hero {
        /* background: linear-gradient(135deg, #dc2626 0%, #1e293b 100%); */
     color: white;
     text-align: center;
     border-bottom-left-radius: 40px;
     border-bottom-right-radius: 40px;
     padding: 80px 20px 50px;
 }

 .hero img {
     max-width: 100%;
     border-radius: 15px;
     box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
     animation: slideInLeft 1.2s ease forwards;
 }

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 700;
     color: #0c0756;
     opacity: 0;
     animation: slideInRight 1.2s ease forwards;
     animation-delay: 0.3s;
 }

 .hero h3 {
     font-size: 2rem;
     margin: 20px 0 30px;
     opacity: 0;
     animation: fadeInUp 1.2s ease forwards;
     animation-delay: 0.6s;
     font-weight: 500;
     color: gray !important;
 }

 .hero .btn {
     opacity: 0;
     animation: fadeIn 1.2s ease forwards;
     animation-delay: 0.9s;
 }

 /* ===== Keyframes ===== */
 @keyframes slideInLeft {
     0% {
         transform: translateX(-100px);
         opacity: 0;
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes slideInRight {
     0% {
         transform: translateX(100px);
         opacity: 0;
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes fadeInUp {
     0% {
         transform: translateY(30px);
         opacity: 0;
     }

     100% {
         transform: translateY(0);
         opacity: 1;
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Carousel Image */
 .carousel-inner img {
     height: 580px;
     object-fit: cover;
     width: 100%;
     border-radius: 15px;
 }

 /* ===== Intro Card ===== */
 .intro-card {
     border-radius: 18px;
        background: linear-gradient(135deg, #1f2937 0%, #dc2626 100%);
     /* background: linear-gradient(135deg, #0f172a 0%, #0e7490 50%, #2dd4bf 100%); */
     color: #fff;
     position: relative;
     padding: 25px;
     overflow: hidden;
     transition: transform 0.6s ease, box-shadow 0.6s ease;
     perspective: 1000px;
     animation: floatCard 6s ease-in-out infinite;
 }

 .intro-card:hover {
     transform: rotateY(12deg) rotateX(6deg) scale(1.05);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
 }

 .intro-card::before {
     content: "";
     position: absolute;
     inset: -3px;
     border-radius: 20px;
     background-size: 300% 300%;
     animation: glowingBorder 6s linear infinite;
     z-index: -1;
 }

 @keyframes glowingBorder {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 @keyframes floatCard {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }
 }

 .intro-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: white;
 }

 .highlight {
     background: #00d4ff;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* ===== s ===== */
 .Read {
    background: linear-gradient(135deg, #ef4444, #7f1d1d);
         color: #fff;
     border: none;
     border-radius: 10px;
     padding: 12px 25px;
     font-size: 1rem;
     font-weight: 600;
     transition: all 0.4s ease;
 }

 .Read:hover {
     transform: translateY(-4px) scale(1.08) rotate(-1deg);
     box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
 }

 /* ===== Services Section ===== */
 .services-section {
     /* background-color: #00d4ff1c; */
     padding: 60px 20px;
     border-radius: 35px;
 }

 .section-heading {
    background: red;
     font-size: 3.2rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
     /* background: linear-gradient(135deg, #09627aa1 0%, #377395 40%, #0b7fa3 70%, #e5cece 100%); */
     -webkit-background-clip: text;
     color: transparent;
     position: relative;
     display: inline-block;
     padding: 0 10px;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(0, 200, 255, 0.4);
     animation: fadeInHeading 1.2s ease-out forwards;
 }

 @keyframes fadeInHeading {
     from {
         opacity: 0;
         transform: translateY(25px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .service-item {
     background:linear-gradient(135deg, #040436 0%, #664d03, #880916 100%);
     backdrop-filter: blur(6px);
     border-radius: 20px;
     padding: 20px;
     transition: 0.3s ease;
     display: flex;
     align-items: start;
 }

 .service-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
 }

 .service-icon {
     height: 5rem;
     margin-bottom: 0;
 }

 .service-title {
     font-size: 1.5rem;
     font-weight: 600;
 }

 .service-desc {
     color: #d8e3ff;
     font-size: 1rem;
     margin-top: 10px;
 }

 /* ===== Responsive ===== */
 @media (max-width: 992px) {
     .hero h1 {
         font-size: 2.5rem;
     }

     .hero h3 {
         font-size: 1.5rem;
     }

     .intro-title {
         font-size: 2rem;
         text-align: center;
     }

     .intro-text {
         text-align: center;
     }

     .services-section {
         padding: 40px 15px;
     }
 }

 @media (max-width: 768px) {
     .hero {
         padding: 60px 10px;
     }

     .hero h1 {
         font-size: 1.8rem;
     }

     .hero h3 {
         font-size: 1.1rem;
     }

     .intro-card,
     .intro-text,
     .intro-title {
         text-align: center;
     }

     .service-item {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .service-icon {
         margin-bottom: 15px;
     }

     .section-heading {
         font-size: 2rem;
         letter-spacing: 1px;
     }
 }

 @media (max-width: 576px) {
     .hero img {
         max-height: 200px;
         object-fit: cover;
     }

     .intro-card {
         padding: 15px;
     }

     .services-section {
         padding: 30px 10px;
     }
 }