@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&family=Montserrat&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}

:root {
    --bg-color: #fdfdfd;
    --text-color: #333;
    --main-color: #0f172a;
    --white-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, .2);
    --primary-color: rgb(209, 117, 13);
    --secondary-color: #ff9d4d;
    --gradient-bg: linear-gradient(135deg, rgba(209, 117, 13, 0.08), rgba(255, 157, 77, 0.08));
    --card-bg: rgba(255, 255, 255, 0.05);
}

.dark-mode {
    --bg-color: #0b061f;
    /* --bg-color: white; */
    /* --text-color: #fdfdfd; */
    --text-color: white;
    --main-color: white;
    /* --main-color: #0f172a; */
    --shadow-color: rgba(0, 0, 0, .7);
    --card-bg: rgba(15, 23, 42, 0.6);
    --gradient-bg: linear-gradient(135deg, rgba(209, 117, 13, 0.12), rgba(15, 23, 42, 0.15));
}




html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* #0f172a */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 7%;
    /* #0f172a */
    background: #0f172a;
    display: flex;
    align-items: center;
    z-index: 100;
    transition: .5s;
    /* color: white; */
}

.header .sticky {
    background: var(--bg-color);
    box-shadow: 0 .1rem 1rem var(var(--shadow-color));
    /* color: white; */
}

.logo {
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
    cursor: default;
    margin-right: auto;
}

.navbar a {
    position: relative;
    font-size: 1.7rem;
    color: white;
    font-weight: 500;
    margin-right: 3.5rem;
    transition: 0.3s ease;
}

.header.sticky .navbar a {
    color: white;
}

.header.sticky .navbar a.active {
    color: white;
}

.navbar a.active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: .2rem;
    background: white;
}

.header.sticky .navbar a::before {
    background: white;
    opacity: .7;
}

.header.sticky #darkMode-icon {
    color: white;
    opacity: .9;
}

#darkMode-icon {
    font-size: 2.4rem;
    color: white;
    cursor: pointer;
}

.header .sticky #darkMode-icon {
    color: white;
    /* opacity: .1; */
}

#menu-icon {
    font-size: 3.6rem;
    color: white;
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 7% 2rem;
    margin-top: 5rem;
}

.home {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.home .home-content {
    max-width: 44rem;
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: .3rem;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.6rem;
    line-height: 1.4;
}

.home-content .social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid rgb(131, 119, 91);
    border-radius: 50%;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 2rem;
    color: rgb(209, 117, 13);
    margin: 2.5rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.home-content .social-media a:hover {
    background: var(--main-color);
    color: rgb(209, 117, 13);
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--main-color);
    border-radius: .6rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: .5s ease;
}

.btn a {
    color: var(--bg-color);
}

.btn:hover {
    background: transparent;
    color: rgb(209, 117, 13);
    border-color: rgb(209, 117, 13);
    color: rgb(209, 117, 13);
}

.btn:hover a {
    color: rgb(209, 117, 13);
}

.home .profession-container {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 768px;
    height: 768px;
    overflow: hidden;
    pointer-events: none;
}

.home .profession-container .profession-box {
    position: absolute;
    top: 0;
    right: -15px;
    width: 768px;
    height: 768px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: professionRotate 13s ease-out infinite;
}

@keyframes professionRotate {

    0%,
    20% {
        transform: rotate(0deg);
    }

    25%,
    45% {
        transform: rotate(-90deg);
    }

    50%,
    70% {
        transform: rotate(-180deg);
    }

    75%,
    95% {
        transform: rotate(-270deg);
    }

    100% {
        transform: rotate(-360deg);
    }

}





.home .profession-box .profession {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* color: var(--bg-color); */
    /* color: #0f172a; */
    transform: rotate(calc(360deg / 4 * var(--i)));
    transform-origin: 384px;
    background: var(--bg-color);
    padding: 13px 0;

}

.home .profession-box .profession:nth-child(1) i {
    margin-right: 15px;
}

.home .profession-box .profession:nth-child(2),
.home .profession-box .profession:nth-child(4) {
    padding-bottom: 20px;
}

.home .profession i {
    font-size: 3.8rem;
}

.home .profession h3 {
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 600;
}

.home .profession-box .circle {
    width: 560px;
    height: 560px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
}

.home .profession-container .overlay {
    position: absolute;
    top: 0;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 384px solid var(--main-color);
    border-right: 384px solid var(--main-color);
    border-bottom: 384px solid var(--main-color);
    border-left: 384px solid transparent;
}

.home-img img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
}

.logo {
    color: white;
}

span {
    color: rgb(209, 117, 13);
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    /* background: red; */
}

.about-img img {
    width: 40vw;
}

.heading {
    font-size: 4.5rem;
    text-align: center;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.7rem;
    line-height: 1.8;
    text-align: justify;
    margin: 2rem 0;
}

.about-content p br {
    margin-bottom: 1rem;
    display: block;
    content: "";
}

.services {
    min-height: auto;
    padding-bottom: 7rem;
}

.services h2 {
    margin-bottom: 5rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-box {
    position: relative;
    background: var(--bg-color);
    padding: 4rem 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.services-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgb(209, 117, 13), transparent);
    transform: translateX(-100%);
    transition: 0.5s ease;
}

.services-box:hover::before {
    transform: translateX(100%);
}

.services-box i {
    font-size: 4.5rem;
    color: rgb(209, 117, 13);
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.services-box:hover i {
    transform: translateY(-10px);
}

.services-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.services-box p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.services-box .btn {
    display: inline-flex;
    padding: 1.2rem 2.8rem;
    background: var(--main-color);
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: .5s ease;
}

.services-box .btn:hover {
    background: transparent;
    color: rgb(209, 117, 13);
    border-color: rgb(209, 117, 13);
}

.services-box .btn a {
    color: var(--bg-color);
}

.services-box .btn:hover a {
    color: rgb(209, 117, 13);
}

@media (max-width: 991px) {
    .services-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 450px) {
    .services-box {
        padding: 3rem 2rem;
    }

    .services-box h3 {
        font-size: 2.2rem;
    }
}

.portfolio {
    padding: 8rem 7% 6rem;
    background: linear-gradient(to bottom right, rgba(209, 117, 13, 0.05), transparent);
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(540px, 1fr));
    gap: 2.5rem;
    padding-top: 2rem;
    align-items: stretch;
}

.portfolio-box {
    position: relative;
    max-width: 540px;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-image a:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

.portfolio-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-box:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-layer {
    padding: 2rem;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content h4 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.portfolio-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.portfolio-tech {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.portfolio-tech span {
    padding: 0.4rem 1.2rem;
    background: rgba(209, 117, 13, 0.1);
    color: rgb(209, 117, 13);
    border-radius: 2rem;
    font-size: 1.2rem;
}

.portfolio-links {
    display: flex;
    gap: 1.5rem;
}

.portfolio-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: var(--main-color);
    border-radius: .6rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.8rem;
    color: var(--bg-color);
    border: .2rem solid transparent;
    transition: .5s ease;
}

.portfolio-links a:hover {
    background: transparent;
    color: rgb(209, 117, 13);
    border-color: rgb(209, 117, 13);
    box-shadow: none;
}

@media (max-width: 991px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 617px) {
    .portfolio-container {
        grid-template-columns: 2fr;
        max-width: 400px;
        gap: 2.5rem;
    }
}

@media (max-width: 450px) {
    .portfolio-layer {
        padding: 1.5rem;
    }

    .portfolio-content h4 {
        font-size: 1.8rem;
    }

    .portfolio-content p {
        font-size: 1.4rem;
    }

    .portfolio-tech span {
        font-size: 1.1rem;
    }
}

.testimonial-container {
    min-height: auto;
    padding: 8rem 7% 6rem;
    background: linear-gradient(to bottom right, rgba(209, 117, 13, 0.05), transparent);
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 3rem;
}

.testimonial-inner {
    background: var(--bg-color);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.quote-icon {
    margin-bottom: 2rem;
}

.quote-icon i {
    font-size: 5rem;
    color: rgb(209, 117, 13);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(209, 117, 13);
}

.author-info h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.author-info span {
    font-size: 1.4rem;
    color: rgb(209, 117, 13);
}

.swiper-pagination {
    position: relative;
    margin-top: 3rem;
}

.swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background: transparent;
    border: 2px solid rgb(209, 117, 13);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: rgb(209, 117, 13);
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-inner {
        padding: 3rem 2rem;
    }

    .testimonial-text {
        font-size: 1.6rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        width: 7rem;
        height: 7rem;
    }
}

.contact {
    min-height: auto;
    padding-bottom: 7rem;
}

.contact h2 {
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 0 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 1.4rem;
    color: #666;
}

.contact-form {
    background: var(--bg-color);
    padding: 3.5rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.input-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid #666;
    outline: none;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.6rem;
    color: #666;
    pointer-events: none;
    transition: 0.3s;
}

.input-group textarea {
    height: 10rem;
    resize: none;
}

.input-group input:focus~label,
.input-group textarea:focus~label,
.input-group input:valid~label,
.input-group textarea:valid~label {
    top: -2rem;
    font-size: 1.4rem;
    color: var(--main-color);
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--main-color);
}

.contact-form .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--main-color);
    padding: 1.2rem 2.8rem;
    border-radius: .6rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: .5s ease;
}

.contact-form .btn:hover {
    background: transparent;
    color: rgb(209, 117, 13);
    border-color: rgb(209, 117, 13);
    box-shadow: none;
}

.contact-form .btn:hover i {
    color: rgb(209, 117, 13);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        min-width: 250px;
    }
}

@media (max-width: 540px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
    }

    .contact-form {
        padding: 2rem;
    }
}

.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 7% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: rgb(209, 117, 13);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: white;
    font-size: 1.6rem;
    transition: .3s ease;
}

.footer-section ul li a:hover {
    color: rgb(209, 117, 13);
    padding-left: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid rgb(209, 117, 13);
    border-radius: 50%;
    color: rgb(209, 117, 13);
    font-size: 2rem;
    transition: .5s ease;
}

.footer-social a:hover {
    background: rgb(209, 117, 13);
    color: var(--bg-color);
}

.footer-section p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-section p i {
    color: rgb(209, 117, 13);
    font-size: 2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: .1rem solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-section p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* BREAK POINTS */

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .home .profession-container {
        height: 85.8rem;
    }

    .home .profession-container .profession-box {
        right: -12rem;
        height: 85.8rem;
    }

    .home .profession-container .overlay {
        right: -9rem;
    }

}

@media (max-width: 1024px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .home .profession-container .profession-box {
        right: -22rem;
    }

    .home .profession-container .overlay {
        right: -15rem;
    }
}

@media (max-width: 991px) {
    .home .home-content {
        max-width: 50rem;
    }

    .home .profession-container .profession-box {
        right: -45rem;
    }

    .home .profession-container .overlay {
        right: -39.5rem;
    }

    .home-img img {
        display: none;
    }

    .navbar a:nth-child(1),
    .navbar a:nth-child(2) {
        color: var(--main-color);
    }

    .navbar a.active::before {
        background: var(--main-color);
        opacity: .7;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    #darkMode-icon {
        position: absolute;
        right: 7rem;
        font-size: 2.6rem;
        color: white;
        margin: .1rem;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        /* background: var(--bg-color); */
        background: black;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        /* color: black; */
        color: white;
    }

    /* .navbar .home{
  color: white;
 }  */
    .navbar a:nth-child(1),
    .navbar a:nth-child(2) {
        /* color: var(--text-color); */
        color: white;
    }

    /* .navbar a.active {
  color: white;
 } */
    .navbar a::before {
        display: none;
    }

    .home {
        padding: 0 3% 23rem;
        justify-content: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 4rem;
    }

    .home-content .social-media a {
        margin: 2.5rem .75rem 3rem;
    }

    .home .profession-container {
        left: 0;
        width: 100%;
        height: 100%;
    }

    .home .profession-container .profession-box {
        position: fixed;
        top: 60%;
        left: 0;
        border-radius: 0;
        width: 100%;
    }

    .home .profession-box .profession {
        padding: 0 13px;
        left: auto;
        transform-origin: 0;
    }

    .home .profession-box .profession:nth-child(1) {
        transform: rotate(-90deg) translate(-120px, -210px);
        /* color: white; */
        /* color: white; */
    }

    .home .profession-box .profession:nth-child(1) i {
        margin-right: 0;
        /* color: white; */
    }

    .home .profession-box .profession:nth-child(2) {
        transform: rotate(0deg) translate(0, -335px);
        /* color: white; */
    }

    .home .profession-box .profession:nth-child(3) {
        transform: rotate(90deg) translate(-115px, -450px);
        /* color: white; */
    }

    .home .profession-box .profession:nth-child(4) {
        transform: rotate(180deg) translate(-220px, -335px);
        /* color: white; */
    }

    .home .profession-box .circle {
        position: fixed;
        width: 670px;
        height: 670px;
        z-index: -1;
        /* color: white; */
    }


    .home .profession-container .overlay {
        position: fixed;
        top: 70rem;
        left: 50%;
        right: 0;
        transform: rotate(90deg) translate(-50%, 50%) scaleY(3);
        border-width: 23.9rem;
        ;
    }

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

    .about-content h2 {
        text-align: center;
    }

    .about-img img {
        width: 70vw;
        margin-top: -2rem;
    }

    .services h2,
    .portfolio h2 {
        margin-bottom: 3rem;
    }

    .portfolio .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-container .testimonial-wrapper {
        padding: 5rem 0;
    }

    .testimonial-content .testimonial-slide {
        padding: 3rem 2rem;
    }

    .testimonial-box .swiper-button-next,
    .testimonial-box .swiper-button-prev {
        display: none;
    }

}

@media (max-width: 617px) {
    .portfolio .portfolio-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2.5rem;
    }

    .portfolio-container .portfolio-box {
        min-height: 300px;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    #darkMode-icon {
        right: 6rem;
    }

    .home {
        padding: 0 3% 30rem;
    }

    .home .profession-box .profession:nth-child(1) {
        transform: rotate(-90deg) translate(-110px, -220px);
    }

    .home .profession-box .profession:nth-child(2) {
        transform: rotate(0deg) translate(5px, -335px);
    }

    .home .profession-box .profession:nth-child(3) {
        transform: rotate(90deg) translate(-105px, -440px);
    }

    .home .profession-box .profession:nth-child(4) {
        transform: rotate(180deg) translate(-210px, -335px);
    }

    .contact form .input-box input {
        width: 100%;
    }
}

@media (max-width: 365px) {
    .about-img img {
        width: 90vw;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        text-align: center;
        margin-top: 2rem;
    }
}

/* Add cursor pointer to navigation links */
.navbar a,
.logo {
    cursor: pointer;
}

/* Add cursor pointer to buttons and social media links */
.btn,
.social-media a,
.services-box a,
.portfolio-layer a,
.footer-iconTop a {
    cursor: pointer;
}

/* Add cursor pointer to dark mode icon and menu icon */
#darkMode-icon,
#menu-icon {
    cursor: pointer;
}

/* Add cursor pointer to contact form elements */
.input-group input,
.input-group textarea,
.contact-form .btn {
    cursor: pointer;
}

/* Add cursor pointer to testimonial navigation */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet {
    cursor: pointer;
}

.about-content {
    max-width: 800px;
}

.about-text {
    margin-top: 2rem;
}

.about-description {
    margin: 2rem 0;
}

.about-description p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.skills-container {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.skills-container h4 {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
}

.skills-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}

.skills-list i {
    color: rgb(209, 117, 13);
    font-size: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        padding: 0 2rem;
    }
}

.footer-text p {
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0.05rem;
}

/* Add hover effect */
.footer-text p:hover {
    color: rgb(209, 117, 13);
    transition: .3s ease;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .footer-text p {
        font-size: 1.6rem;
    }
}

/* Service Detail Page Styles */
.service-detail {
    position: relative;
    padding-top: 15rem;
    background: var(--bg-color);
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right,
            rgba(209, 117, 13, 0.05),
            transparent 70%);
    pointer-events: none;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(209, 117, 13, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.service-intro .service-icon {
    font-size: 6rem;
    color: rgb(209, 117, 13);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.service-intro p {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-features {
    margin-bottom: 5rem;
}

.service-features h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-features li {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-color);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(209, 117, 13, 0.1);
    transition: all 0.3s ease;
}

.service-features li i {
    color: rgb(209, 117, 13);
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.service-features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(209, 117, 13, 0.2);
}

.service-process {
    margin-bottom: 5rem;
}

.service-process h3 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-color);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(209, 117, 13, 0.1);
    transition: all 0.4s ease;
}

.step i {
    font-size: 4rem;
    color: rgb(209, 117, 13);
    margin-bottom: 1.5rem;
}

.step h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.6rem;
    line-height: 1.6;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(209, 117, 13, 0.15);
}

.cta-section {
    position: relative;
    margin-top: 8rem;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to right, rgba(209, 117, 13, 0.1), transparent, rgba(209, 117, 13, 0.1));
    border-radius: 20px;
    animation: fadeIn 1s ease-out;
}

.cta-section h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Dark Mode Enhancements */
.dark-mode .service-intro {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(209, 117, 13, 0.2);
}

.dark-mode .service-features li,
.dark-mode .step {
    background: rgba(15, 23, 42, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-features ul {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-intro {
        padding: 2rem;
    }
}

/* Animation styles for web development page */
.service-detail {
    animation: fadeInPage 1s ease-out;
}

.service-intro {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.service-features li {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 0.5s ease-out forwards;
}

/* Stagger the list items */
.service-features li:nth-child(1) {
    animation-delay: 0.4s;
}

.service-features li:nth-child(2) {
    animation-delay: 0.5s;
}

.service-features li:nth-child(3) {
    animation-delay: 0.6s;
}

.service-features li:nth-child(4) {
    animation-delay: 0.7s;
}

.service-features li:nth-child(5) {
    animation-delay: 0.8s;
}

.service-features li:nth-child(6) {
    animation-delay: 0.9s;
}

.step {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.6s ease-out forwards;
}

/* Stagger the process steps */
.step:nth-child(1) {
    animation-delay: 0.6s;
}

.step:nth-child(2) {
    animation-delay: 0.8s;
}

.step:nth-child(3) {
    animation-delay: 1.0s;
}

.step:nth-child(4) {
    animation-delay: 1.2s;
}

.cta-section {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.4s;
}

/* Scroll progress indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1000;
    background: rgba(209, 117, 13, 0.1);
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgb(209, 117, 13);
    transition: width 0.3s ease;
}

/* Animation Keyframes */
@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hover animations */
.service-features li {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(209, 117, 13, 0.2);
}

.step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(209, 117, 13, 0.15);
}

.step i {
    transition: transform 0.3s ease;
}

.step:hover i {
    transform: rotateY(180deg);
}

/* Enhanced hover effects for service features */
.service-features li {
    position: relative;
    overflow: hidden;
    transform-origin: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 117, 13, 0.1), transparent);
    transition: 0.5s ease;
}

.service-features li:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(209, 117, 13, 0.2);
}

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

.service-features li:hover i {
    transform: rotateY(360deg);
    color: rgb(209, 117, 13);
}

/* Enhanced hover effects for process steps */
.step {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.step::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(209, 117, 13, 0.1), transparent);
    transition: 0.5s ease;
}

.step:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 30px rgba(209, 117, 13, 0.25);
}

.step:hover::before {
    top: 100%;
}

.step:hover::after {
    margin: 4px;
}

.step i {
    font-size: 4rem;
    color: rgb(209, 117, 13);
    transition: all 0.5s ease;
}

.step:hover i {
    transform: rotateX(360deg);
    color: #ff9d4d;
}

.step h4 {
    font-size: 2rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.step:hover h4 {
    color: rgb(209, 117, 13);
    transform: scale(1.05);
}

.step p {
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

/* Dark mode adjustments */
.dark-mode .service-features li {
    background: rgba(15, 23, 42, 0.6);
}

.dark-mode .step::after {
    background: rgba(15, 23, 42, 0.9);
}

.dark-mode .service-features li:hover,
.dark-mode .step:hover p {
    color: #ff9d4d;
}

/* Enhanced CTA Section Styles */
.cta-section {
    position: relative;
    padding: 8rem 4rem;
    text-align: center;
    overflow: hidden;
    background: var(--bg-color);
    border: 2px solid transparent;
    box-shadow: 0 20px 40px var(--shadow-color);
}

/* Updated gradient border animation */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(45deg,
            transparent,
            #0f172a,
            /* Dark Blue */
            rgb(209, 117, 13),
            /* Orange */
            #0f172a,
            /* Dark Blue */
            transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}

.cta-section h3 {
    font-size: 4rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #0f172a, rgb(209, 117, 13));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s ease-in-out infinite;
}

.cta-section .btn {
    position: relative;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    background: #0f172a;
    border: none;
    color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    transform-origin: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(209, 117, 13, 0.3);
    background: rgb(209, 117, 13);
}

/* Dark mode adjustments */
.dark-mode .cta-section {
    background: var(--bg-color);
}

.dark-mode .cta-section::before {
    background: linear-gradient(45deg,
            transparent,
            #1a2744,
            /* Lighter Dark Blue */
            rgb(229, 137, 33),
            /* Lighter Orange */
            #1a2744,
            /* Lighter Dark Blue */
            transparent);
    opacity: 0.8;
}

.dark-mode .cta-section .btn {
    background: #1a2744;
}

.dark-mode .cta-section .btn:hover {
    background: rgb(229, 137, 33);
}

/* Animation Keyframes */
@keyframes borderRotate {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

@keyframes textShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 2rem;
    }

    .cta-section h3 {
        font-size: 3rem;
    }

    .cta-section .btn {
        padding: 1.2rem 3rem;
        font-size: 1.6rem;
    }
}

/* Update card backgrounds */
.service-intro,
.service-features li,
.step {
    background: var(--bg-color);
    border: 1px solid rgba(209, 117, 13, 0.1);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Update CTA section background */
.cta-section {
    background: var(--bg-color);
    border: 2px solid rgba(209, 117, 13, 0.2);
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Dark mode adjustments */
.dark-mode .service-detail {
    background: var(--bg-color);
}

.dark-mode .service-intro,
.dark-mode .service-features li,
.dark-mode .step,
.dark-mode .cta-section {
    background: var(--bg-color);
    border-color: rgba(209, 117, 13, 0.2);
}

/* Update CTA button to match Download CV button */
.cta-section .btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--main-color);
    border-radius: .6rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: .5s ease;
}

.cta-section .btn:hover {
    background: transparent;
    color: rgb(209, 117, 13);
    border-color: rgb(209, 117, 13);
}

/* Remove these previous styles */
.dark-mode .cta-section .btn {
    background: #1a2744;
}

.dark-mode .cta-section .btn:hover {
    background: rgb(229, 137, 33);
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
    transition: .5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem rgb(209, 117, 13);
}

.footer-iconTop a:hover i {
    color: rgb(209, 117, 13);
}

/* Add hover effect for navbar links */
.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: rgb(209, 117, 13);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    color: rgb(209, 117, 13);
}

/* Dark mode adjustments */
.dark-mode .navbar a:hover {
    color: rgb(209, 117, 13);
}

.dark-mode .navbar a::after {
    background: rgb(209, 117, 13);
}

/* Make contact button visible in dark mode for service pages */
.dark-mode .service-detail .cta-section .btn {
    background: var(--bg-color);
    color: var(--main-color);
}

.dark-mode .service-detail .cta-section .btn:hover {
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 1rem var(--main-color);
}