﻿:root {
    --primary: #001f43;
    --secondary: #FE983D;
    --accent: #009AAE;
    --light-bg: #F8F6EE;
    --text-dark: #333333;
    --text-light: #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Sora", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

img, iframe {
    max-width: 100%;
    height: auto;
}

p {
    font-weight: 400;
    line-height: 1.8;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

    .navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.nav-link {
    color: white;
    margin: 0 8px;
    position: relative;
    transition: var(--transition);
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--text-light);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--secondary);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.hamburger-icon {
    width: 28px;
    height: 22px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: white;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

        .hamburger-icon span:nth-child(1) {
            top: 0px;
        }

        .hamburger-icon span:nth-child(2) {
            top: 9px;
        }

        .hamburger-icon span:nth-child(3) {
            top: 18px;
        }

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    margin-top: 8px !important;
    padding: 0.5rem 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #000;
    background-color: var(--secondary);
}

.dropdown-item {
    color: #212529;
    font-weight: 400;
    padding: 0.5rem 1.25rem;
    transition: var(--transition);
}

    .dropdown-item.active {
        background-color: var(--secondary);
        color: #000;
    }

.hero {
    background: #000;
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    overflow: hidden;
}

    .hero .fade-in-section {
        position: relative;
        z-index: 2;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.animated-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.flip-container {
    display: inline-block;
    height: 60px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 10px;
}

.flip-text {
    display: block;
    animation: flip 6s infinite;
}

.flip-word {
    display: block;
    height: 60px;
    line-height: 60px;
    margin-bottom: 60px;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
}

    .flip-word:nth-child(1) {
        background: linear-gradient(135deg, #4ec7f3, #44a08d);
    }

    .flip-word:nth-child(2) {
        background: linear-gradient(135deg, #42c58a, #3d8b85);
    }

    .flip-word:nth-child(3) {
        background: linear-gradient(135deg, #DC143C, #b91338);
    }

@keyframes flip {
    0%, 20% {
        transform: translateY(0);
    }

    25%, 45% {
        transform: translateY(-120px);
    }

    50%, 70% {
        transform: translateY(-240px);
    }

    75%, 100% {
        transform: translateY(0);
    }
}

.hero p {
    margin: 20px auto;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.btn-primary {
    font-size: 1.1rem;
    background-color: #fff;
    border: 2px solid #fff;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: transparent;
        border: 2px solid white;
        color: #fff;
        transform: translateY(-3px);
    }

.btn-outline-light {
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

    .btn-outline-light:hover {
        background: #fff;
        color: #000;
        border: 2px solid #fff;
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .animated-heading {
        font-size: 2rem;
    }

    .flip-container {
        height: 40px;
        margin: 0 5px;
    }

    .flip-word {
        height: 40px;
        line-height: 40px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    @keyframes flip {
        0%, 20% {
            transform: translateY(0);
        }

        25%, 45% {
            transform: translateY(-80px);
        }

        50%, 70% {
            transform: translateY(-160px);
        }

        75%, 100% {
            transform: translateY(0);
        }
    }
}

.globe-container {
    position: absolute;
    width: 120vw;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -150%;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.rotating-globe {
    width: 100%;
    height: auto;
    transform-origin: center center;
    transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(rgb(22, 103, 169) 0px -22.5825px 28.2282px);
    will-change: transform;
}

html.is-scrolling .rotating-globe {
    transition: transform 0.08s linear;
}

.rotating-globe.no-transition {
    transition: none !important;
}

@media (max-width: 992px) {
    .globe-container {
        bottom: -90%;
    }
}

@media (max-width: 768px) {
    .globe-container {
        bottom: -30%;
        width: 130vw;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.services {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #FFFFFF;
    color: #000;
}

.service-details-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 2px solid black;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: all 300ms ease;
    margin-top: 1.5rem;
    align-self: flex-start;
}

    .service-details-btn:hover {
        background-color: var(--secondary);
        color: white;
        border: 2px solid var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

.services-list > * + * {
    margin-top: 1rem;
}

.description-text {
    line-height: 1.625;
}

.description-content,
.description-content h2,
.description-content p {
    transition: opacity 300ms ease-in-out;
}

.service-item {
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

    .service-item:hover {
        transform: scale(1.05);
    }

.service-inactive {
    opacity: 0.5;
}

.services h2 {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3%;
}

    .services h2 span {
        color: var(--secondary);
    }

#service-title {
    color: var(--secondary);
}

@media (max-width: 576px) {
    .description-text {
        font-size: 12px;
    }

    .service-item {
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        transition: all 300ms ease-in-out;
    }

    #service-title {
        color: var(--secondary);
        font-size: 15px;
    }
}

.blur-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: #3f3f46;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.service-inactive {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.tech-container {
    max-width: 1140px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.section-title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 0 auto 3rem auto;
    border-radius: 2px;
}

.tech-nav-col {
    border-right: 1px solid #dee2e6;
}

.tech-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    padding: 1rem 1.5rem;
    border-left: 4px solid transparent;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

    .tech-nav .nav-link:hover {
        color: var(--secondary);
        background-color: #fef8f4;
    }

    .tech-nav .nav-link.active {
        color: var(--secondary);
        background-color: #ffffff;
        border-left-color: var(--secondary);
        font-weight: 600;
    }

.tech-content-col {
    padding: 2.5rem 3rem;
}

.tech-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.tech-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-icon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
    transition: transform 0.2s ease;
}

    .tech-item:hover {
        transform: translateY(-5px);
    }

    .tech-item svg {
        width: 50px;
        height: 50px;
    }

    .tech-item span {
        margin-top: 0.75rem;
        font-weight: 500;
        font-size: 0.9rem;
        color: #444;
    }

@media (max-width: 767.98px) {
    .tech-nav-col {
        border-right: 0;
        border-bottom: 1px solid #dee2e6;
    }

    .tech-nav {
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
    }

        .tech-nav .nav-link {
            border-left: 0;
            border-bottom: 4px solid transparent;
            text-align: center;
            padding: 0.75rem 1rem;
        }

            .tech-nav .nav-link.active {
                border-left-color: transparent;
                border-bottom-color: var(--secondary);
            }

    .tech-content-col {
        padding: 2rem 1.5rem;
    }

    .tech-content h3 {
        font-size: 1.5rem;
    }

    .tech-icon-grid {
        gap: 1.5rem;
        justify-content: center;
    }

    .tech-item {
        min-width: 80px;
    }
}

.industries-section {
    padding: 7rem 0;
}

.industry-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

    .industry-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fef8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .industry-icon i {
        font-size: 32px;
        color: var(--secondary);
    }

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.about {
    background: black;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 10%;
    padding-bottom: 10%;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about h2 {
    color: var(--secondary);
    font-size: 2.5rem;
}

.about p {
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
    color: #ffffffed;
}

.btn-about {
    background-color: var(--secondary);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

    .btn-about:hover {
        background-color: transparent;
        color: var(--secondary);
        border: 2px solid var(--secondary);
    }

.stat-item {
    text-align: center;
}

    .stat-item h3 {
        font-size: 3.8rem;
        color: var(--secondary);
        margin-bottom: 0.25rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .stat-item p {
        font-size: 1rem;
        margin: 0;
        opacity: 0.9;
        font-weight: 500;
    }

.portfolio-container {
    background: #121212;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.portfolio-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.portfolio-section-title p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.portfolio-carousel {
    display: flex;
    gap: 25px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.portfolio-item {
    flex: 0 0 auto;
    width: 500px;
    aspect-ratio: 16 / 11;
    border-radius: 12px;
    overflow: hidden;
}

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.05);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .portfolio-item {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .portfolio-item {
        width: 200px;
    }
}

.reviews {
    padding: 80px 0;
    background: #000000;
    color: white;
    text-align: center;
    position: relative;
}

.section-title.testimonials {
    font-size: xx-large;
    font-weight: 400;
    padding: 1% 2%;
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.section-subtitle {
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: #ddd;
}

.review-box {
    border-radius: 15px;
    padding: 25px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.3s ease;
    margin: 15px;
    text-align: left;
}

    .review-box:hover {
        transform: translateY(-6px);
        background: #1b1b1b;
    }

    .review-box p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        color: #ddd;
        line-height: 1.6;
        text-align: left;
    }

    .review-box h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: bold;
        color: #fff;
        text-align: left;
    }

    .review-box .stars {
        color: var(--secondary);
        margin-top: 5px;
        text-align: left;
    }

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reviews-carousel .slick-list {
    padding: 20px 0;
}

.slick-dots li button:before {
    color: white;
    opacity: 0.5;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary);
}

@media (max-width: 992px) {
    .review-box {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .review-box {
        min-height: auto;
        margin: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.reviews-carousel .review-card {
    margin: 15px;
    height: 100%;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .review-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-author-details {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.review-client-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    opacity: 0.9;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

    .review-author-info h4 {
        margin-bottom: 2px;
    }

.review-stars {
    color: var(--secondary);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

    .review-text::before {
        content: "“";
        font-size: 4rem;
        position: absolute;
        top: -20px;
        left: -15px;
        color: rgba(255, 152, 61, 0.2);
        font-family: Georgia, serif;
    }

.review-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.btn-share-experience {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    background-color: transparent;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

    .btn-share-experience:hover {
        background-color: #fff;
        color: #000;
        transform: translateY(-3px);
        text-decoration: none;
    }

    .btn-share-experience:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
    }

.footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

    .footer h5::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary);
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: var(--transition);
}

    .social-links a:hover {
        background: var(--secondary);
        transform: translateY(-5px);
        color: var(--text-dark);
    }

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #777;
    transition: var(--transition);
    z-index: 10;
}

    .close-modal:hover {
        color: #333;
        transform: rotate(90deg);
    }

.modal-header {
    margin-bottom: 25px;
}

    .modal-header h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .modal-header p {
        color: #777;
        font-size: 1.1rem;
    }

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

    .project-images img {
        width: auto;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        transition: var(--transition);
        cursor: pointer;
    }

        .project-images img:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

.project-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.project-details p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 152, 61, 0.3);
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: white;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 152, 61, 0.4);
    }

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .project-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-collapse {
        background: black;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 130px 0 60px;
        text-align: center;
    }

        .hero h1 {
            font-size: 1.5rem;
        }

    .section-title h2 {
        font-size: 2rem;
    }

    .about {
        text-align: center;
    }

        .about h2 {
            font-size: 2rem;
        }

    .stats {
        margin-top: 30px;
    }

    .form-container {
        padding: 25px;
    }

    .project-images {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.dev-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-intro {
    text-align: center;
    padding-top: 10%;
}

    .team-intro h2 {
        font-size: 42px;
        font-weight: bold;
        color: var(--secondary);
        margin-bottom: 20px;
    }

    .team-intro p {
        font-size: 1rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

.engineer-title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 0 auto 1rem auto;
    border-radius: 2px;
}

.profile-card {
    display: flex;
    align-items: end;
    gap: 7%;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

    .profile-card.reverse {
        flex-direction: row-reverse;
    }

.image-container {
    border-radius: 20px;
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

    .image-container img {
        position: absolute;
        width: 100%;
        height: auto;
        border-radius: 15px;
        z-index: 5;
    }

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.content {
    flex: 1;
    color: white;
    text-align: left;
}

.name {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary);
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: rgb(51 51 51);
    position: relative;
    text-align: left;
}

    .description p {
        font-size: 1rem;
    }

.LinkedIn img {
    width: 7%;
}

@media (max-width: 768px) {
    .team-intro h2 {
        font-size: 32px;
    }

    .team-intro p {
        font-size: 16px;
        width: 85%;
    }

    .profile-card {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .image-container {
        width: 250px;
        height: 320px;
    }

    .name {
        font-size: 36px;
    }

    .description {
        font-size: 16px;
    }

    .LinkedIn img {
        width: 12%;
    }
}

.blog-section_wrapper {
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .blog-section_wrapper h2 {
        font-size: 42px;
        font-weight: bold;
        color: var(--secondary);
        margin-bottom: 20px;
    }

.featured-blog-post {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 20px;
}

.featured-blog-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.featured-blog-post .blog-post-content {
    padding: 30px;
}

.blog-post-date {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}

    .blog-post-date i {
        margin-right: 5px;
    }

.blog-post-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

    .blog-post-title a {
        text-decoration: none;
        color: #212529;
        transition: color 0.3s ease-in-out;
    }

        .blog-post-title a:hover {
            color: var(--secondary);
        }

.sidebar-blog-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 25px;
}

.sidebar-blog-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .sidebar-blog-item {
        flex-direction: row;
        height: 130px;
    }

    .sidebar-blog-image-link {
        flex: 0 0 120px;
    }

    .sidebar-blog-image {
        height: 100%;
    }
}

.sidebar-blog-content {
    padding: 20px;
    flex: 1;
}

.sidebar-blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

    .sidebar-blog-title a {
        text-decoration: none;
        color: #212529;
        transition: color 0.3s ease-in-out;
    }

        .sidebar-blog-title a:hover {
            color: var(--secondary);
        }

.Blog-title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 0 auto 5rem auto;
    border-radius: 2px;
}

.blog-post-summary,
.sidebar-blog-summary {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-blog-summary {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary);
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}

    .read-more-link:hover {
        letter-spacing: 1px;
    }

.btn-all-blogs {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    color: #ffffff;
    border: 2px solid #FE983D;
    border-radius: 50px;
    background-color: #FE983D;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

    .btn-all-blogs:hover {
        background-color: transparent;
        color: #FE983D;
        border: 2px solid #FE983D;
        transform: translateY(-3px);
        text-decoration: none;
    }
