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

body {
    background: #0f0f0f;
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(3, 28, 82, 0.3) 0%, transparent 70%),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="80" fill="none" stroke="%23FFFFFF10" stroke-width="20"/%3E%3C/svg%3E') repeat;
    z-index: -2;
    animation: subtleMove 20s linear infinite;
}

@keyframes subtleMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* Navbar */
/* Ensure the base styles remain intact */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: linear-gradient(145deg, rgba(3, 28, 82, 0.8), rgba(15, 15, 15, 0.8));
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.95;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.logo span {
    color: #a0a0ff;
    font-weight: 400;
    margin-right: 6px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #a0a0ff);
    transition: width 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(0.12s * var(--i));
}

.nav-links a:nth-child(1) { --i: 1; }
.nav-links a:nth-child(2) { --i: 2; }
.nav-links a:nth-child(3) { --i: 3; }
.nav-links a:nth-child(4) { --i: 4; }
.nav-links a:nth-child(5) { --i: 5; }
.nav-links a:nth-child(6) { --i: 6; }

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: #ffffff;
    transform: scale(1.08);
}

.nav-links a:hover::before {
    border-color: rgba(255, 255, 255, 0.4);
}

.quote-btn {
    background: linear-gradient(to right, #031C52, #a0a0ff);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.quote-btn:hover {
    background: linear-gradient(to right, #a0a0ff, #031C52);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.quote-btn:hover::before {
    left: 100%;
}

/* Hamburger base styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }

    .logo {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 8px 12px;
    }

    .quote-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        clip-path: none; /* Remove clip-path for mobile */
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(145deg, rgba(3, 28, 82, 0.95), rgba(15, 15, 15, 0.95));
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    .quote-btn {
        margin: 15px 0;
        width: fit-content;
        align-self: center;
    }

    /* Hamburger to X animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }

    .hamburger span {
        height: 2.5px;
    }

    .nav-links a {
        font-size: 16px;
        margin: 12px 0;
    }

    .quote-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 80px;
    min-height: 100vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-text {
    max-width: 50%;
    animation: fadeInLeft 1.2s ease-out;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-image {
    max-width: 40%;
    animation: fadeInRight 1.2s ease-out;
}

.hero-image img {
    width: 100%;
    /* border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2); */
    animation: breathe 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.typewriter {
    font-size: 24px;
    font-weight: 500;
    color: #e0e0e0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.typewriter-text {
    color: #a0a0ff;
    position: relative;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #ffffff;
    animation: blinkCursor 0.7s step-end infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes blinkCursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: #ffffff; }
}

@media (max-width: 1024px) {
    .hero {
        padding: 100px 40px;
        min-height: 80vh;
    }

    .hero-text {
        max-width: 55%;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 1.3;
    }

    .typewriter {
        font-size: 20px;
    }

    .hero-image {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 80px 20px;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .typewriter {
        font-size: 18px;
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
        order: 1;
    }

    .hero-image img {
        animation: none; /* Disable breathe animation for performance */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
        min-height: 70vh;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .typewriter {
        font-size: 16px;
    }

    .typewriter-text {
        border-right: 2px solid #ffffff;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
}


/* About Us Section */
.about {
    padding: 100px 80px;
    position: relative;
    background: transparent;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 50%;
    animation: fadeInUp 1s ease-out;
}

.heading-subtitle {
    font-size: 16px;
    color: #a0a0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.heading-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.about-block {
    margin-top: 20px;
}

.paragraph {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn.btn-secondary {
    background: #031C52;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn.btn-secondary i {
    margin-left: 8px;
}

.btn.btn-secondary:hover {
    background: #a0a0ff;
    transform: translateY(-2px);
}

.signature-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signature-body h6 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-body p {
    font-size: 14px;
    color: #a0a0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature-img {
    width: 120px;
    height: auto;
    margin-top: 5px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.about-image {
    max-width: 40%;
    animation: fadeInUp 1.2s ease-out;
}

.about-img-holder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-img-holder img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-holder:hover img {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 20px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        max-width: 100%;
    }

    .about-image {
        margin-top: 30px;
    }

    .signature-block {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn.btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}





/* Services Section */
.services {
    padding: 120px 80px;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.services h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(145deg, rgba(3, 28, 82, 0.9), rgba(15, 15, 15, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.service-card::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: 0.5s;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.service-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.service-card a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card a:hover {
    background: #ffffff;
    color: #031C52;
    transform: translateY(-3px);
}


@media (max-width: 1024px) {
    .services {
        padding: 80px 40px;
    }

    .services h2 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        text-align: center;
        padding: 25px;
        border-radius: 15px;
    }

    .service-icon {
        margin: 0 auto 15px;
    }

    .service-card ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-card ul li {
        padding-left: 25px;
    }

    .service-card a {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 15px;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .service-card ul li {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-card a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 120px 80px;
    position: relative;
    background: transparent;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.testimonials h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 33.33%;
    background: linear-gradient(145deg, rgba(3, 28, 82, 0.9), rgba(15, 15, 15, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin: 0 15px;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.testimonial-card::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: 0.5s;
}

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

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: transform 0.3s ease;
}

.testimonial-card:hover .client-image {
    transform: scale(1.1);
}

.testimonial-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.testimonial-card span {
    font-size: 14px;
    color: #a0a0ff;
    display: block;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, rgba(3, 28, 82, 0.9), rgba(15, 15, 15, 0.9));
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    opacity: 1;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover, .slider-next:hover {
    background: #ffffff;
    color: #031C52;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 20px;
    }

    .testimonial-card {
        flex: 0 0 80%;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}



/* Projects Section */
.projects {
    padding: 120px 80px;
    position: relative;
    background: transparent;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.projects h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.projects-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.projects-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.project-card {
    flex: 0 0 33.33%;
    background: linear-gradient(145deg, rgba(243, 243, 243, 0.9), rgba(208, 207, 233, 0.9));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 15px;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #031C52;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-btn {
    background: #031C52;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-btn i {
    margin-left: 8px;
}

.view-btn:hover {
    background: #a0a0ff;
    transform: translateY(-2px);
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #b3aae4, #3333ee);
    transition: width 0.3s ease;
    z-index: 1;
}

.project-card:hover::after {
    width: 100%;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, rgba(3, 28, 82, 0.9), rgba(15, 15, 15, 0.9));
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover, .slider-next:hover {
    background: #ffffff;
    color: #031C52;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 80px 20px;
    }

    .project-card {
        flex: 0 0 80%;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}






/* Footer */
.footer {
    padding: 80px 80px 40px;
    background: linear-gradient(145deg, #031C52, rgba(15, 15, 15, 0.9));
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-section {
    max-width: 25%;
    animation: fadeInUp 1.2s ease-out;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #a0a0ff;
    transition: width 0.3s ease;
}

.footer-section h3:hover::after {
    width: 50px;
}

.footer-section p, .footer-section a {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-section a[href^="mailto:"], .footer-section a[href^="tel:"] {
    color: #a0a0ff;
}

.footer-section a[href^="mailto"]:hover, .footer-section a[href^="tel:"]:hover {
    color: #ffffff;
}

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

.social-links a {
    color: #d0d0d0;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #a0a0ff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #a0a0a0;
}

.footer-bottom-links {
    margin-top: 10px;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
} */




/* Animations */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7));
    }
}

@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 fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* footer design  */
@media (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }

    .footer-section {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-section p, .footer-section a {
        font-size: 14px;
        line-height: 1.8;
    }

    .social-links a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
    }

    .footer-bottom-links a {
        margin: 0 8px;
        font-size: 12px;
    }
}




























/* Projects folder style   */
