@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
    --primary-color: #232323;
    --secondary-color: #ffffff;
    --bg-color: #131313;
    --btn-bg : #232323;
    --text-opacity : 70%;
}

*{
    font-family: 'karla', sans-serif;
    text-decoration: none;
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
}

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

aside{
    height: 100vh;
    width: 8vw;
}

header svg path{
    fill: var(--secondary-color);
}

header svg{
    fill: var(--secondary-color);
}

header nav{
    height: 70px;
}

header .container-fluid{
    padding: 2vh 8vw !important;
}

.toggle-btn path {
    fill: var(--bg-color);
}

header svg path{
    stroke: var(--secondary-color);
}

aside{
    padding: 3vh;
}

aside svg path{
    fill: var(--secondary-color);
}

header .navbar-toggler span{
    font-size: 14px;
}

aside .toggle-btn{
    background: var(--secondary-color);
    width: 34px;
    height: 34px;
}

aside .toggle-btn svg{
    width: 20px;
    height: 20px;
}

aside .follow-icons hr{
    border: 1px solid var(--secondary-color);
    height: 9vh;
}

aside .follow-icons span{
    writing-mode: vertical-lr;
    letter-spacing: 1.4px;
    font-size: 14px;
}

header .offcanvas{
    background: var(--bg-color);
}

header .offcanvas a{
    color: var(--secondary-color);
    opacity: 65%;
}

header .navbar-nav .nav-link.active,header .navbar-nav .nav-link.show {
    color: var(--secondary-color);
    opacity: 100%;
}

/*toggle-btn dark/light mode*/
.theme-toggle-container {
    position: relative;
    width: 100px;
    height: 50px;
    margin: 20px auto;
}

/* Hidden checkbox */
.theme-toggle-checkbox {
    display: none;
}

/* Label for the toggle */
.theme-toggle-label {
    position: relative;
    display: block;
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, #ffe98e, #ff8b6a);
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.5s;
}

/* Rocket element */
.rocket {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s, background 0.5s;
}

/* Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 1.5s infinite alternate;
}

.star:nth-child(1) {
    top: 10px;
    left: 20px;
    animation-delay: 0.2s;
}
.star:nth-child(2) {
    top: 20px;
    left: 60px;
    animation-delay: 0.5s;
}
.star:nth-child(3) {
    top: 35px;
    left: 30px;
    animation-delay: 0.8s;
}
/* Twinkle animation for stars */
@keyframes twinkle {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Checkbox checked - dark mode */
.theme-toggle-checkbox:checked + .theme-toggle-label {
    background: linear-gradient(135deg, #202020, #2a2a72);
}

/* Rocket transforms for dark mode */
.theme-toggle-checkbox:checked + .theme-toggle-label .rocket {
    transform: translateX(50px) rotate(45deg);
    background: #ffe98e;
}

/* Stars visible in dark mode */
.theme-toggle-checkbox:checked + .theme-toggle-label .stars {
    opacity: 1;
}

header .follow-icons h5{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

header .follow-icons > div > div{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
}

.main-section{
    padding: 15vh 8vw 0 8vw;
}

#home-section .carousel{
    position: relative;
    height: 68vh;
    width: 29vw;
}

.carousel-item.active {
    display: flex !important;
}

.carousel-item{
    /*transition: wipeAnimation .6s ease-in-out;*/
    transition: none;
    animation: wipeAnimation .6s ease-in-out;
}

@keyframes wipeAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }

}

.offcanvas{
    padding: 10px;
}

.offcanvas-title{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

#navbar .navbar-nav .nav-link{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

#navbar .navbar-nav .nav-link:hover{
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 100%;
}

#navbar .navbar-nav .nav-link.active {
    color: var(--secondary-color);
    opacity: 100%;
    font-size: 20px;
}


#navbar .navbar-brand{
    color: var(--secondary-color) !important;
    font-family: 'Caveat', cursive;
}

#home-section .carousel span{
    inset: 5px;
    background: var(--primary-color);
}

#home-section{
    height: 69vh !important;
}

#home-section svg circle{
    fill: var(--secondary-color);
}

#home-section h3{
    font-family: 'karla', sans-serif;
    font-size: 22px;
    font-weight: 400;
}

#home-section h1{
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.88px;
}

#home-section h2{
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.88px;
}

#home-section p{
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.54px;
    width: 33vw;
    margin-top: 12px;
}

#home-section .home-content > div{
    margin-left: 6vw;
}

/* From Uiverse.io by Mike11jr */
#home-section .btn {
    padding: 0.8em 2em;
    font-size: 16px;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: var(--btn-bg);
    backdrop-filter: opacity(0.1%);
    font-weight: 400;
    letter-spacing: 0.48px;
    border: 2px solid var(--primary-color);
}

#home-section .btn:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: var(--btn-bg);
    top: 50%;
    transform: skewX(30deg) translate(-203%, -50%);
    transition: all 0.5s;
}

#home-section .btn:hover {
    background-color: var(--secondary-color);
    color: var(--bg-color);
    box-shadow: 0 2px 0 2px #0d3b66;
}

#home-section .btn:hover::before {
    transform: skewX(30deg) translate(210%, -50%);
    transition-delay: 0.1s;
}

#home-section .btn + .btn:hover::before {
    transform: skewX(30deg) translate(250%, -50%);
    transition-delay: 0.1s;
}

#home-section .btn:active {
    transform: scale(0.9);
}

#home-section .btn hr{
    border: 1px solid var(--secondary-color);
    width: 5vw;
    opacity: 100%;
}

#home-section .btn:hover hr{
    border-color: var(--bg-color);
}

/* #home-section .carousel-inner .carousel-item{
    width: 14vw;
    height: 25vw;
    transform: translateY(11vh);
} */

#home-section .carousel-item{
    width: 25vw;
    height: 25vw;
    display: flex;
    transform: translateX(4vw);
}

#home-section .carousel-item img{
    object-fit: cover;
}

#home-section .home-content > div{
    gap: 6vw;
}

#about-section{
    margin-top: 25vh;
    transform: translateX(8vw);
}

#about-section h1{
    font-size: 40px;
    font-weight: 500;
}

#about-section .content .side-about {
    writing-mode: vertical-lr;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 18.3px;
}

#about-section .content hr {
    border-left: 2px solid var(--secondary-color);
    height: 68px;
    width: 0;
}

#about-section .content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    width: 29vw;
}

#about-section button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

#about-section button.learn-more {
    width: 12rem;
    height: auto;
}

#about-section button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 1.625rem;
}

#about-section button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--secondary-color);
}

#about-section button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

#about-section button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

#about-section button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 10px;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#about-section button:hover .circle {
    width: 100%;
}

#about-section button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

#about-section button:hover .button-text {
    color: #fff;
}

#about-section img{
    width: 72%;
}

#about-section h4{
    font-size: 18px;
    font-weight: 400;
    margin-top: 7rem;
    letter-spacing: 0.58px;
}
#about-section h5{
    font-size: 16px;
    font-weight: 400;
    width: 18.5vw;
    margin-top: 9px;
    line-height: 20px;
    opacity: var(--text-opacity);
    font-family: 'karla', sans-serif;
}

#about-section .vision{
    transform: translateX(-3vw);
}

#my-resume-section .title{
    margin-top: 20vh;
}

#my-resume-section .title h1{
    font-size: 45px;
    font-weight: 700;
    font-family: 'karla', sans-serif;
    letter-spacing: 1.34px;
}

#my-resume-section .title p{
    font-size: 16px;
    font-weight: 400;
    padding: 0 28vw;
    text-align: center;
    opacity: 70%;
}

#my-resume-section .resume-content{
    gap: 5vw;
    margin-top: 6vh;
}

#my-resume-section .resume-content > div{
    background: var(--primary-color);
    padding: 56px 33px 33px 33px;
    width: 311px;
    height: 348px;
}

#my-resume-section .resume-content img{
    width: 62px;
    height: auto;
}

#my-resume-section .resume-content h2{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-top: 18px;
    color: #ffffff;
}

#my-resume-section .resume-content p{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.39px;
    text-align: center;
    margin-top: 14px;
    color: #ffffff;
}

#my-resume-section .resume-content h3{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
    color: #ffffff;
}

#my-resume-section .resume-content span{
    position: absolute;
    font-size: 105px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    color: transparent;
    transform: translateX(5.6vw) translateY(-5vh);
    font-family: "Open Sans", serif;
}

#services{
    margin-top: 20vh;
}

#services .title h1{
    font-size: 45px;
    font-weight: 700;
    font-family: 'karla', sans-serif;
    letter-spacing: 1.34px;
}

#services .title p{
    font-size: 16px;
    font-weight: 400;
    padding: 0 28vw;
    text-align: center;
    opacity: 70%;
}

#services .card-set > div{
    border: 2px solid var(--primary-color);
    padding: 30px 0;
    border-radius: 18px;
}

#services .card-set > div .circle{
    width: 62px;
    height: 62px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

#services .circle svg{
    transform: rotate(-45deg);
    width: 16px;
    height: 16px;
}

#services .card-set .circle svg path{
    stroke: var(--secondary-color);
}

#services .card-set span{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
}

#services .card-set h5{
    font-size: 18px;
    font-weight: 600;
    width: 16vw;
}

#services .card-set p{
    font-size: 14px;
    font-weight: 400;
    opacity: 78%;
    width: 16vw;
}

#services .card-set{
    grid-template-columns: 1fr 1fr;
    padding: 5vh 10vw 0 10vw;
}

#my-project{
    margin-top: 20vh;
}

.card-set {
    margin-top: 12vh;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
	width: 25vw;
	height: 360px;
	display: flex;
	align-items: flex-end;
	padding: 2rem 1rem;
	position: relative;
	transition: 0.5s all ease-in-out;
    border: 0;
}
.card:hover {
	transform: translateY(-10px);
}
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(13, 36, 63, 0.3), rgba(13, 36, 63, 1));
	z-index: 2;
	opacity: 0;
	transition: 0.5s all;
}
.card:hover::before {
	opacity: 1;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.card .info {
	position: relative;
	color: #fff;
	z-index: 3;
	opacity: 0;
	transform: translateY(30px);
	transition: 0.5s all;
}
.card:hover .info {
	opacity: 1;
	transform: translateY(0);
}

.card .info h1 {
	line-height: 40px;
	margin-bottom: 10px;
}
.card .info p {
	font-size: 15px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.card .info .btn {
	background: #fff;
	padding: 0.5rem 1rem;
	color: #000;
	font-size: 12px;
	cursor: pointer;
	border-radius: 20px;
	text-decoration: none;
	font-weight: bold;
	transition: .4s ease-in-out;
}
.card .info .btn:hover {
	background: var(--primary-color);
	color: #fff;
	box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
}


footer {
    border-top: 3px solid var(--primary-color);
    margin-top: 20vh;
    padding: 5vw 0;
}

footer .title h1{
    font-size: 40px;
    font-weight: 500;
    text-align: center;
}

footer .title h1 span{
    font-weight: 900;
}

footer button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

footer button.learn-more {
    width: 12rem;
    height: auto;
}

footer button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 1.625rem;
}

footer button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
}

footer button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

footer button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #ffffff;
    border-right: 0.125rem solid #ffffff;
    transform: rotate(45deg);
}

footer button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

footer button:hover .circle {
    width: 100%;
}

footer button:hover .circle .icon.arrow {
    background: var(--secondary-color);
    transform: translate(1rem, 0);
}

footer button:hover .button-text {
    color: #ffffff;
}

footer .footer-body h1{
    font-size: 34px;
    font-weight: 500;
    font-family: 'Caveat', cursive;
}

footer .footer-body .follow-icons div{
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-body > div > :nth-child(2){
    margin-top: 2vh;
}

footer .footer-body .navigation hr , footer .footer-body .contact hr , footer .footer-body .address hr{
    width: 100px;
    border: 1px solid var(--secondary-color);
    opacity: 20%;
}

footer .footer-body svg path{
    fill: var(--secondary-color);
}

footer h6{
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    background: var(--primary-color);
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 5px;
}

footer .footer-body ul{
    list-style: none;
    padding: 0;
}

footer .footer-body ul li{
    font-size: 14px;
    font-weight: 400;
    opacity: 70%;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

footer .follow-icons > div:hover {
    transition: .5s ease-in-out;
    background: var(--secondary-color);
}

footer .follow-icons > div:hover svg path{
    transition: .5s ease-in-out;
    fill: var(--bg-color);
}

@media screen and (max-width: 1440px){
    .main-section #home-section .carousel {
        height: 117%;
    }
    #home-section h3{
        font-size: 18px;
    }

    #home-section h1{
        font-size: 34px;
    }

    #home-section h2{
        font-size: 34px;
    }

    #home-section p{
        font-size: 14px;
    }
    #home-section .btn {
        padding: 0.8em 1.5em;
        font-size: 14px;
    }

    #home-section .carousel {
        width: 31vw;
    }

    #home-section .carousel .carousel-item{
        width: 30vw;
        height: 30vw;
        transform: translateX(0);
    } 

    #about-section {
        margin-top: 28vh;
    }

    #about-section h1{
        font-size: 30px;
    }

    #about-section .content .side-about {
        font-size: 12px;
    }

    #about-section .content hr {
        height: 58px;
    }

    #about-section .content p{
        font-size: 16px;
        width: 29vw;
    }

    #about-section button .button-text{
        font-size: 14px;
    }
    #about-section h4{
        font-size: 16px;
    }
    #about-section h5{
        font-size: 14px;
    }

    #my-resume-section .title h1{
        font-size: 38px;
    }

    #my-resume-section .title p{
        font-size: 14px;
        padding: 0px 21vw
    }

    #my-resume-section .resume-content h2{
        font-size: 18px;
    }

    #my-resume-section .resume-content p{
        font-size: 12px;
    }

    #my-resume-section .resume-content h3{
        font-size: 16px;
    }

    #my-resume-section .resume-content span{
        transform: translateX(8vw) translateY(-5vh);
    }

    #services .title h1{
        font-size: 43px;
    }

    #services .title p{
        font-size: 14px;
    }

    #services .card-set > div{
        padding: 20px 20px;
    }

    #services .card-set > div .circle{
        width: 60px;
        height: 60px;
    }

    #services .circle svg{
        width: 14px;
        height: 14px;
    }

    #services .card-set span{
        font-size: 16px;
        margin-right: 10px;
    }

    #services .card-set h5{
        font-size: 16px;
    }

    #services .card-set p{
        font-size: 12px;
    }

    #my-project .card h3{
        font-size: 16px;
    }

    #my-project .card h2{
        font-size: 20px;
    }

    #my-project .card p{
        font-size: 14px;
    }

    footer .title h1{
        font-size: 38px;
    }

    footer .button-text{
        font-size: 16px;
    }

    footer .footer-body h1 {
        font-size: 32px;
    }

    footer .footer-body .follow-icons div {
        width: 45px;
        height: 45px;
    }

    footer .footer-body .follow-icons div svg {
        width: 13px;
        height: 13px;
    }

    footer .footer-body .navigation hr , footer .footer-body .contact hr , footer .footer-body .address hr{
        width: 80px;
    }

    footer h6{
        font-size: 14px;
    }

    footer .footer-body ul li{
        font-size: 12px;
    }

}

@media screen and (max-width: 1024px){
    .main-section #home-section .carousel {
        height: 130%;
        width: 50%;
    }
    #home-section .btn {
        gap: 0.5rem !important;
    }
    #home-section .home-content > div {
        height: 21vh;
    }
    #home-section .carousel {
        width: 40vw;
    }

    #home-section .carousel .carousel-item{
        width: 39vw;
        height: 39vw;
    }
    #about-section {
        margin-top: 22vh;
    }
    #services .card-set{
        padding: 5vh 8vw 0 4vw;
    }

    footer .footer-body .navigation hr , footer .footer-body .contact hr , footer .footer-body .address hr{
        width: 50px;
    }

    footer .footer-body ul li{
        font-size: 12px;
    }

    footer .contact .email br{
        display: block !important;
    }
}

@media screen and (max-width: 990px){
    header .navbar-toggler span{
        font-size: 13px;
    }
    header .navbar-brand{
        font-size: 18px;
    }
    #home-section > div{
        flex-direction: column;
    }
    .main-section #home-section .carousel {
        width: 97%;
    }
    #home-section .home-content > div {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 108%;
        height: auto;
        margin-top: 6vh;
        align-items: center;
    }

    #home-section .home-content > div * {
        text-align: center;
        justify-content: center;
    }

    #home-section p{
        width: 86vw;
    }

    #home-section .carousel .carousel-item{
        width: 39vw;
        height: 39vw;
        transform: translateX(21vw);
    }

    #about-section .content{
        flex-direction: column;
        gap: 10vh;
    }

    #about-section .content > :first-child{
        align-items: flex-start !important;
    }

    #about-section .content p {
        width: 90%;
    }

    #about-section {
        margin-top: 21vh;
        transform: translateX(0px);
    }

    #about-section img {
        transform: translateX(8vw);
    }

    #about-section .vision {
        transform: translateX(0vw);
        flex-direction: column;
    }

    #about-section .vision .text-center{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #about-section h4{
        margin-top: 3rem;
    }

    #about-section h5{
        width: 90%;
    }

    #my-resume-section .title {
        margin-top: 14vh;
    }

    #my-resume-section .title p{
        padding: 0px 11vw;
    }

    #my-resume-section .resume-content > div {
        width: 47vw;
        height: auto;
    }
    #my-resume-section .resume-content span {
        transform: translateX(20vw) translateY(-5vh);
    }

    #services{
        margin-top: 14vh;
    }

    #services .title h1{
        font-size: 40px;
    }

    #services .title p {
        font-size: 16px;
        padding: 0 10vw;
    }

    #services .card-set > div{
        padding: 18px 18px;
    }

    #services .card-set > div .circle{
        width: 58px;
        height: 58px;
    }

    #services .circle svg{
        width: 12px;
        height: 12px;
    }

    #services .card-set span{
        font-size: 14px;
        margin-right: 10px;
    }

    #services .card-set h5{
        font-size: 14px;
    }

    #services .card-set{
        grid-template-columns: 1fr;
    }

    #services .card-set p , #services .card-set h5{
        width: auto;
    }

    footer .footer-body{
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        gap: 2vw;
    }

    #my-project .card-set {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-set .card {
        width: 37vw;
    }


}

@media screen and (max-width: 550px){
    header .navbar-toggler span{
        font-size: 12px;
    }
    header .navbar-brand{
        font-size: 14px;
    }
    header svg{
        width: 18px;
        height: 18px;
    }
    #home-section h3{
        font-size: 18px;
    }

    #home-section h1{
        font-size: 30px;
    }

    #home-section h2{
        font-size: 30px;
    }

    #home-section p{
        font-size: 12px;
    }
    #home-section .btn {
        padding: 0.8em 1.5em;
        font-size: 12px;
    }

    #home-section .carousel .carousel-item {
        width: 60vw;
        height: 60vw;
        transform: translateX(11vw);
        margin-bottom: 1vh;
    }

    #about-section h1{
        font-size: 28px;
    }

    #about-section .content .side-about {
        font-size: 10px;
    }

    #about-section .content p{
        font-size: 14px;
    }

    #my-resume-section .title p {
        font-size: 14px;
        padding: 0 11vw;
    }

    #my-resume-section .title h1{
        font-size: 30px;
    }

    #my-resume-section .title p{
        font-size: 12px;
    }

    #my-resume-section .resume-content h2{
        font-size: 16px;
    }

    #my-resume-section .resume-content p{
        font-size: 10px;
    }

    #my-resume-section .resume-content h3{
        font-size: 14px;
    }

    #my-resume-section .resume-content span{
        transform: translateX(32vw) translateY(-5vh);
    }

    #my-resume-section .resume-content > div {
        width: 79vw;
        height: auto;
    }
    #services .card-set > div{
        flex-direction: column;
        gap: 10px;
    }
    #services .card-set p , #services .card-set h5{
        text-align: center;
    }
    
    #my-project .card {
        height: 30vh;
        width: auto !important;
    }

    #my-project .card-set{
        flex-direction: column;
    }

    footer .footer-body{
        grid-template-columns: 1fr;
        gap: 4vw;
        text-align: center;
    }

    footer .footer-body .contact .email br{
        display: none !important;
    }

    #my-project .card-set {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media screen and (max-width: 375px){
    #about-section .side-sec{
        display: none !important;
    }
    #my-resume-section .resume-content span {
        transform: translateX(30vw) translateY(-5vh);
    }
    #home-section .carousel .carousel-item {
        width: 80vw;
        height: 80vw;
        transform: translateX(3vw);
        margin-bottom: 1vh;
    }
}

@media screen and (max-width: 320px){
    header .navbar-toggler span{
        display: none;
    }
    #my-resume-section .resume-content span {
        transform: translateX(28vw) translateY(-5vh);
        font-size: 32vw;
    }
}

@media screen and (max-height: 874px){
    #home-section {
        height: auto !important;
    }
}
