@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

@font-face {
    font-family: 'Magilio';
    src: url('font/MagilioRegular-8Mxvg.otf') format('opentype');
    font-style: normal;
}

/* OVER ALL */

* {
    text-decoration: none;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background-color: #EDEDED;
    font-family: 'Poppins', 'Sans Serif';
    scroll-behavior: smooth;
    overflow-y: auto;
}

p {
    font-family: 'Poppins', 'Sans Serif';
    font-size: 16px;
    font-weight: 400;
}

h1 {
    font-family: 'Magilio', 'Sans Serif';
    font-size: 100px;
    font-weight: 700;
}

.h1-dblue {
    color: #0d1b2a;
}

.h1-orange {
    color: #f77f00;
}

.h1-white {
    color: #EDEDED;
}

h2 {
    font-family: 'Magilio', 'Sans Serif';
    font-size: 60px;
    font-weight: 700;
}

.h2-beige {
    color: #d6c9a1;
}

h3 {
    font-size: 40px;
    font-weight: 700;
}

h4 {
    font-family: 'Poppins', 'Sans Serif';
    font-size: 26px;
    font-weight: 700;
}

h5 {
    font-size: 14px;
}

button {
    margin: 0;
    font-family: Poppins, sans-serif;
    width: 250px;
    height: 60px;
    background: transparent;
    color: #0d1b2a;
    font-size: 16px;
    border: 2px solid #415a77;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

button:hover {
    background-color: #415a77;
    color: #ededed;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

button:active {
    background-color: #0d1b2a;
}


/*          HEADER              */
.header {
    position: sticky;
    top: 0;
    padding: 15px 30px 15px 50px;
    background-color: #0d1b2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header img {
    width: 100px;
    height: auto;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    padding-right: 60px;
    padding-top: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 100px;
    flex-wrap: nowrap;
}

.nav-links li {
    position: relative;
    padding-bottom: 10px;
}

.nav-links a {
    position: relative;
    color: #EDEDED;
    font-weight: 300;
    padding-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #f77f00;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f77f00;
    font-weight: 700;
}

.nav-links .dropdown-toggle {
    color: #ededed;
    transition: color 0.3s ease;
}

.nav-links .dropdown-label:hover .dropdown-toggle,
.nav-links .dropdown-label.active .dropdown-toggle,
.nav-links .dropdown-label:hover {
    color: #f77f00;
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-checkbox {
    display: none;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d1b2a;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 150px;
    text-align: center;
    z-index: 999;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li {
    position: relative;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
}

.nav-links .dropdown-menu li a {
    display: block;
    width: 100%;
    color: #EDEDED;
    font-weight: 400;
    white-space: nowrap;
    padding-bottom: 10px;
    text-decoration: none;
    position: relative;
}

.nav-links .dropdown-menu li:hover::after {
    width: 90%;
}

.nav-links .dropdown-menu li:hover a {
    color: #f77f00;
    font-weight: 600;
}

.nav-links .dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.nav-links .dropdown-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: #f77f00;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav-links .dropdown-label:hover::after {
    width: 100%;
}

.nav-links .dropdown-label:hover,
.nav-links .dropdown-label.active {
    color: #f77f00;
    font-weight: 700;
}

.nav-links .dropdown-label:hover .dropdown-toggle {
    color: #f77f00;
}

.nav-links .dropdown-label:hover a {
    color: #f77f00;
    font-weight: 700;
}

.dropdown-toggle {
    color: white;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
}

.nav-links .dropdown.active-parent .dropdown-label a {
    color: #f77f00;
    font-weight: 700;
    position: relative;
}

.nav-links .dropdown.active-parent .dropdown-label .dropdown-toggle {
    color: #f77f00;
}

.nav-links .dropdown.active-parent .dropdown-label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #f77f00;
}




/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    position: relative;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #EDEDED;
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.menu-checkbox:checked~.navigation .nav-links {
    display: flex;
}

.menu-checkbox:checked+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-checkbox:checked+.hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked+.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/*              HOME                */
.home-section {
    display: flex;
    min-height: 100%;
    padding: 4% 4% 10% 4%;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.home-content h1 {
    padding-top: 50px;
}

.home-content p {
    padding-top: 2rem;
    max-width: 55ch;
}


#home-img img {
    width: 500px;
    height: auto;
}

.home-buttons {
    padding-top: 3rem;
    display: flex;
    gap: 2rem;
}

/*              FOOTER                      */
.footer {
    display: flex;
    flex-direction: column;
    min-height: 150px;
    width: 100%;
}

.top {
    background-color: #415a77;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    padding-top: 20px;
    color: #EDEDED;
}

/* All columns */
.first-col,
.second-col,
.third-col,
.last-col {
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    text-align: left;
}

.first-col {
    width: 30%;
    padding: 0;
    justify-content: center;
    align-items: flex-end;
}

.first-col img {
    height: auto;
    width: 100%;
    max-width: 400px;
}

.second-third {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 500px;
}

.second-col {
    width: 30%;
    justify-content: center;
}

.second-col a {
    color: #EDEDED;
    padding: 10px;
    text-decoration: none;
}

.second-col a:hover {
    color: #f77f00;
    transition: 0.3s ease;
}

.third-col {
    width: auto;
    justify-content: space-between;
    flex: 2;
    max-width: 70%;
    overflow-wrap: normal;
    word-wrap: break-word;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
}

.contact-item img {
    height: 20px;
}

.last-col {
    width: 30%;
}

.icons {
    display: flex;
    margin-top: 30px;
    gap: 0;
}

.icons img {
    height: 50px;
    width: 50px;
    margin: 5px;
    transition: filter 0.3s ease;
    max-width: 100%;
}

.icons img:hover,
.c-icons img:hover {
    filter: brightness(0) saturate(100%) invert(43%) sepia(91%) saturate(900%) hue-rotate(-10deg);
}

#bottom {
    background-color: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EDEDED;
    padding: 0.5rem;
}

.first-col::after,
.second-col::after,
.third-col::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 2px;
    background-color: #EDEDED;
}


/*                      ABOUT ME                */
.basic-info {
    min-height: 100%;
    margin: 0;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.basic-info img {
    width: 400px;
    height: 400px;
    border-radius: 100%;
    border: 10px solid #f77f00;
}

.basic-info p {
    max-width: 55ch;
    text-align: justify;
    margin-bottom: 10px;
}


#my-journey {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* width: 50%; */
    align-self: center;
    text-align: justify;
}

#my-journey p {
    max-width: 55ch;
}

.journey-exp {
    min-height: 100%;
    padding: 100px;
    background-color: #415a77;
    display: flex;
    justify-content: center;
    text-align: justify;
    gap: 50px;
}


.aboutme-slider-container {
    align-self: center;
    position: relative;
    width: 80%;
    height: 80%;
    max-width: 450px;
    max-height: 450px;
    overflow: hidden;
    border-radius: 40px;
    border: 2px solid white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    box-sizing: border-box;
}

.aboutme-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.aboutme-slider img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
}

/* Dots and other styles remain unchanged */
.aboutme-dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}

.aboutme-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.aboutme-dot.active {
    background-color: #333;
}

.aboutme-dot:hover {
    background-color: #555;
}


.journey-exp p {
    color: #EDEDED;
    gap: 10px;
    max-width: 60ch;
}


.skills {
    min-height: 80%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.skills h1 {
    color: #f77f00;
    margin-top: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #d6c9a1;
    padding-top: 20px;
}

.skills h2 {
    text-align: center;
    color: #0d1b2a;
}

.skills img {
    width: 100px;
    height: 100px;
    border-radius: 20%;
    gap: 100px;
}


.skill-columns {
    padding: 0px 100px 100px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.techdev-col {
    display: flex;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    flex-direction: column;
    gap: 20px;
}

.techdev-col div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.logo-info {
    margin: 50px;
    display: flex;
    padding: 10px 0px 10px 60px;
    justify-content: center;
    align-items: center;
    background-color: #f77f00;
}

.logo-info img {
    height: 400px;
    margin: 0;
}

.logo-info p {
    color: #EDEDED;
    text-align: justify;
    margin-top: 20px;
    max-width: 60ch;
}

.logo-info h3 {
    color: #EDEDED;
}


.aboutme-vid {
    display: flex;
    padding: 5%;
    padding-top: 80px;
    gap: 20px;
}

.aboutme-vid video {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.aboutme-vid h3 {
    padding-top: 5%;
}


/*                               PORTFOLIO                       */
.portfolio-section {
    min-height: 100%;
    margin-bottom: 100px;
}

.ps-top {
    display: flex;
    height: 80vh;
    background-color: #d6c9a1;
    text-align: left;
    justify-content: center;
    flex-direction: column;
    padding: 100px;
    gap: 20px;
    margin-bottom: 50px;
}

.ps-top p {
    max-width: 50ch;
}


/* TEXT TYPING */
.p-text {
    flex-direction: column;

    span {
        position: relative;
    }
}

.p-text span::before {
    content: "Works";
    color: #f77f00;
    animation: p-content 20s infinite;
}

.p-text span::after {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 70px;
    background-color: #d6c9a1;
    border-left: solid 2px #f77f00;
    right: -8px;
    animation: cursor 0.7s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
    to {
        border-left: solid 2px #f77f0000;
    }
}

@keyframes p-content {

    0%,
    20% {
        content: "Creative World";
    }

    21%,
    40% {
        content: "Designs and Art";
    }

    41%,
    60% {
        content: "Visual Works";
    }

    61%,
    80% {
        content: "Creative Space";
    }

    81%,
    100% {
        content: "Portfolio Showcase";
    }
}

@keyframes typing {

    10%,
    15%,
    30%,
    35%,
    50%,
    55%,
    70%,
    75%,
    90%,
    95% {
        width: 0;
    }

    5%,
    20%,
    40%,
    45%,
    60%,
    65%,
    80%,
    85% {
        width: calc(100% + 8px);
    }
}

.container,
.container1 {
    display: flex;
    padding: 0 100px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.c-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 50%;
    padding: 20px;
    gap: 50px;
}

.image-container {
    position: relative;
    width: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
}

.image-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.5) blur(3px);
    transition: 0.3s;
}

.image-container h2 {
    font-family: Poppins;
    color: #EDEDED;
    display: flex;
    letter-spacing: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out;
}

.image-container img:hover {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: 0.2s ease-in;
    filter: brightness(1) blur(0px);
}

.image-container:hover h2 {
    opacity: 0;
    z-index: -1;
}

.image-container img:hover {
    transform: scale(1.05);
    transition: 0.4s ease;
}

.portfolio-title {
    color: #f77f00;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    background-color: #d6c9a1;
    padding-top: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-title h1 {
    letter-spacing: 5px;
    text-align: center;
}

.photo-container {
    max-width: 1224px;
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.photo-gallery {
    column-width: 300px;
    column-gap: 20px;
}

.photo {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: white;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    width: 95%;
    display: none;
    text-align: center;
}

.photo:hover .caption {
    display: block;
}

#lightbox {
    display: none;
}

.lightbox {
    display: flex;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-content {
    text-align: center;
    position: relative;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

.caption-lightbox {
    color: white;
    font-size: 16px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
}

.lightbox button:hover {
    color: #f77f00;
    background-color: transparent;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
}

.lightbox .close {
    top: 15px;
    right: 35px;
}

.lightbox .prev {
    left: 15px;
    transform: translateY(-50%);
}

.lightbox .next {
    right: 15px;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .photo:hover .caption {
        display: none;
    }
}

#lightbox .lightbox-image {
    border-radius: 10px;
    background-color: #ededed;
    padding: 10px;
    object-fit: contain;
}

/* #lightbox .lightbox-image[src$=".png"] {
    background-color: white;
} */

.portfolio-button {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 30px;
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 50px;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #0d1b2a;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#left-arrow {
    transform: scaleX(-1);
}

.portfolio-button button:hover svg {
    stroke: #EDEDED;
    stroke-width: 2;
}

.portfolio-button button {
    padding: 20px;
    flex-grow: 1;
}

.portfolio-button a,
.left-btn a,
.right-btn a {
    color: #0d1b2a;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.portfolio-button button:hover a {
    color: #ededed;
}

.center-btn {
    max-width: 250px;
    flex-grow: 1;
}

.left-btn,
.right-btn {
    min-width: max-content;
    max-width: 250px;
}

.container2 {
    display: flex;
    margin: 50px 0;
    gap: 20px;
    display: flex;
    padding: 0 100px;
    justify-content: center;
}

.interface-desc,
.vid-desc {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-top: 20px;
    gap: 20px;
    width: 90%;
    text-align: justify;
}

.interface-desc h3,
.vid-desc h3 {
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    user-select: none;
    background-color: #1c1c1c;
}

.slider {
    width: 90%;
}

.slider-container input {
    display: none;
}

.slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide-img img {
    width: 100%;
    height: 100%;
}

.prev,
.next {
    width: 8%;
    height: 20%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0d1b2a30;
    z-index: 2;
    transition: background-color 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next {
    right: 0;
    padding-left: 3%;
}

.prev {
    left: 0;
    padding-right: 3%;
}

.prev:hover,
.next:hover {
    background-color: #0d1b2a;
}

.prev span,
.next span {
    border: solid 12px;
    border-color: transparent;
}

.prev span {
    border-right-color: #ededed;
}

.next span {
    border-left-color: #ededed;
}

#slide1-1:checked~#s1-1,
#slide1-2:checked~#s1-2,
#slide1-3:checked~#s1-3,
#slide2-1:checked~#s2-1,
#slide2-2:checked~#s2-2,
#slide2-3:checked~#s2-3,
#slide3-1:checked~#s3-1,
#slide3-2:checked~#s3-2,
#slide3-3:checked~#s3-3,
#slide4-1:checked~#s4-1,
#slide4-2:checked~#s4-2,
#slide4-3:checked~#s4-3,
#slide5-1:checked~#s5-1,
#slide5-2:checked~#s5-2,
#slide5-3:checked~#s5-3,
#slide6-1:checked~#s6-1,
#slide6-2:checked~#s6-2,
#slide6-3:checked~#s6-3,
#slide7-1:checked~#s7-1,
#slide7-2:checked~#s7-2,
#slide7-3:checked~#s7-3,
#slide8-1:checked~#s8-1,
#slide8-2:checked~#s8-2,
#slide8-3:checked~#s8-3 {
    opacity: 1;
    z-index: 1;
}

#nav-slide {
    width: 100%;
    bottom: 12%;
    height: 1px;
    position: absolute;
    text-align: center;
    z-index: 3;
}

.dots {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ededed90;
    transition: background-color 0.3s;
    cursor: pointer;
}

/* Active Dot Highlight */
#slide1-1:checked~#nav-slide #dot1,
#slide1-2:checked~#nav-slide #dot2,
#slide1-3:checked~#nav-slide #dot3,
#slide2-1:checked~#nav-slide #dot1,
#slide2-2:checked~#nav-slide #dot2,
#slide2-3:checked~#nav-slide #dot3,
#slide3-1:checked~#nav-slide #dot1,
#slide3-2:checked~#nav-slide #dot2,
#slide3-3:checked~#nav-slide #dot3,
#slide4-1:checked~#nav-slide #dot1,
#slide4-2:checked~#nav-slide #dot2,
#slide4-3:checked~#nav-slide #dot3,
#slide5-1:checked~#nav-slide #dot1,
#slide5-2:checked~#nav-slide #dot2,
#slide5-3:checked~#nav-slide #dot3,
#slide6-1:checked~#nav-slide #dot1,
#slide6-2:checked~#nav-slide #dot2,
#slide6-3:checked~#nav-slide #dot3,
#slide7-1:checked~#nav-slide #dot1,
#slide7-2:checked~#nav-slide #dot2,
#slide7-3:checked~#nav-slide #dot3,
#slide8-1:checked~#nav-slide #dot1,
#slide8-2:checked~#nav-slide #dot2,
#slide8-3:checked~#nav-slide #dot3 {
    background: #0d1b2a;
}

.container3 {
    display: flex;
    width: 100%;
    padding: 50px;
    gap: 20px;
}

iframe {
    aspect-ratio: 16 / 9;
}

.video-container {
    max-width: 100%;
    width: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.video-container iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.text-ani {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    background-color: #d6c9a1;
    padding: 30px 0;
}

.text-ani img {
    max-width: 350px;
    width: 80%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.text-ani h2 {
    color: #0d1b2a;
    align-self: center;
    text-align: center;
}



/*      CONTACT      */

.contact-section {
    display: flex;
    justify-content: center;
    min-height: 100%;
    margin: 50px;
}

#contact-me {
    width: 400px;
    border-radius: 10%;
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.4);
}

.contact {
    color: #0d1b2a;
    display: flex;
    gap: 50px;
    padding: 20px;
    padding-left: 50px;
    align-items: center;
    border-radius: 40px;
}

.contact-details h2 {
    font-family: Poppins;
    font-weight: 700;
}

.contact-details h4 {
    font-family: Poppins;
    font-weight: 400;
}

.contact-title {
    display: flex;
    margin-top: 20px;
    background-color: #d6c9a1;
    color: #f77f00;
    justify-content: center;
    padding-top: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details hr {
    width: 100%;
    margin-top: 10px;
    padding-bottom: 2px;
    background-color: #0d1b2a;
}

.c-details {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 10px;
}

.c-details img {
    height: 30px;
    width: 30px;
}

.c-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-cta h5 {
    max-width: 50ch;
    font-style: italic;
}

.c-icons {
    display: flex;
    gap: 10px;
}

.c-icons img {
    height: 50px;
    width: auto;
}

.download {
    display: flex;
    align-content: center;
}

.download a {
    color: #0d1b2a;
}

.download img {
    width: 20px;
    height: 20px;
}

.h-cv {
    width: 100%;
}

/*  DROPDOWN MENU */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links .dropdown .dropdown-menu {
        display: none;
        position: relative;
        background-color: #0d1b2a;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .dropdown-toggle:checked,
    .dropdown-menu::after,
    .nav-links::after {
        display: none;
    }

    .dropdown-toggle:checked {
        display: block;
    }

    .aboutme-vid {
        flex-direction: column;
    }
}

/* CONTACT */
@media (max-width: 1024px) {
    .container3 {
        flex-direction: column;
    }

    .contact {
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .contact-details h2 {
        text-align: center;
    }

    .contact-details h4 {
        text-align: center;
    }

    .c-details img {
        height: 30px;
        width: 30px;
    }

    .c-cta {
        justify-content: center;
        align-items: center;
    }

    .c-cta h5 {
        text-align: center;
    }

    .c-icons img {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .download {
        justify-content: center;
    }

    .contact {
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .contact-section img {
        width: 350px;
    }

    .contact-details h2 {
        font-size: 60px;
        text-align: center;
    }

    .contact-details h4 {
        font-size: 20px;
        text-align: center;
    }

    .contact-title h1 {
        font-size: 80px;
    }

    .c-details img {
        height: 30px;
        width: 30px;
    }

    .c-cta {
        justify-content: center;
        align-items: center;
    }

    .c-cta h5 {
        text-align: center;
    }

    .c-icons img {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .contact {
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .contact-section img {
        width: 300px;
    }

    .contact-details h2 {
        font-size: 60px;
        text-align: center;
    }

    .contact-details h4 {
        font-size: 20px;
        text-align: center;
    }

    .contact-title h1 {
        font-size: 80px;
    }

    .c-details {
        padding-left: 5%;
    }

    .c-details img {
        height: 30px;
        width: 30px;
    }

    .c-cta {
        justify-content: center;
        align-items: center;
    }

    .c-cta h5 {
        text-align: center;
    }

    .c-icons img {
        height: 50px;
        width: auto;
    }
}

/*  PORTFOLIO GALLERY  */
@media (max-width: 1024px) {
    .photo-gallery {
        column-count: 3;
    }

    .portfolio-title h1 {
        font-size: 80px;
    }

    .portfolio-button {
        padding: 5%;
        gap: 5%;
    }

    .portfolio-button button {
        width: max-content;
    }

    .portfolio-button {
        padding: 5%;
        gap: 5%;
    }

    .center-btn {
        min-width: 120px;
        max-width: 250px;
    }

    .left-btn,
    .right-btn {
        min-width: 10px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .portfolio-button button {
        padding: 20px;
        font-size: 16px;
    }

    .photo-gallery {
        column-count: 2;
    }

    .portfolio-title h1 {
        font-size: 70px;
    }

    .portfolio-button button {
        width: max-content;
    }

    .portfolio-button {
        padding: 5%;
        gap: 5%;
    }

    .center-btn {
        min-width: 200px;
        max-width: 250px;
    }

    .left-btn,
    .right-btn {
        min-width: 10px;
        max-width: auto;
    }

}

@media (max-width: 480px) and (min-width: 0px) {
    .photo-gallery {
        column-count: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .photo {
        width: 300px;
    }

    .logo-section {
        margin-bottom: 50px;
    }

    .portfolio-title h1 {
        font-size: 70px;
        letter-spacing: 5px;
    }

    .portfolio-button button {
        width: max-content;
    }

    .portfolio-button {
        padding: 5%;
        gap: 5%;
    }

    .center-btn {
        min-width: 120px;
        max-width: 250px;
    }

    .left-btn,
    .right-btn {
        min-width: 10px;
        max-width: 100px;
    }
}


/*           ALL          */

@media (max-width: 480px) and (min-width: 0) {

    /*   HEADER PART    */
    .header {
        padding: 15px 10px 15px 20px;
    }

    .header img {
        height: 80px;
        width: auto;
    }

    .logo {
        margin-right: auto;
        padding-left: 1%;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        z-index: 1001;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        left: 10;
        top: 0;
        gap: 20px;
        width: 80%;
        max-width: 300px;
        background: #0d1b2a;
        padding: 30px 0;
        border-radius: 10px 0 0 10px;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    /*   HOME PART    */

    .home-section {
        padding: 3rem 2rem;
        flex-direction: column;
        align-items: center;
        align-content: center;
        text-align: center;
        margin-bottom: 30px;
    }

    #home-img img {
        width: 350px;
        height: auto;
    }

    .home-content h1 {
        padding-top: 1%;
        font-size: 5rem;
    }

    .home-content p {
        padding: 1rem;
    }

    .home-buttons {
        display: flex;
        padding-top: 2rem;
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .top {
        flex-direction: column;
        padding: 2rem;
    }

    .first-col,
    .second-col,
    .third-col,
    .last-col,
    .second-third {
        width: 100%;
    }

    .first-col {
        justify-content: center;
        align-items: center;
    }

    .first-col img {
        width: 300px;
        height: auto;
    }

    .second-third {
        justify-content: space-between;
        flex-direction: column;
    }

    .second-col {
        align-items: center;
    }

    .third-col {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .third-col h4 {
        font-size: 28px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-item img {
        height: 20px;
    }

    .last-col {
        text-align: left;
    }

    .icons {
        justify-content: left;
        gap: 10px;
    }

    .icons img {
        width: 50px;
        height: auto;
    }

    .first-col::after,
    .second-col::after,
    .third-col::after {
        display: none;
    }

    #bottom {
        padding: 1rem 0;
    }

    #bottom p {
        font-size: 12px;
    }

    /*    ABOUT ME   */
    .basic-info {
        padding: 3rem 2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .basic-info p {
        text-align: justify;
        margin-bottom: 10px;
        padding-top: 1rem;
    }

    .basic-info img {
        width: 300px;
        height: auto;
        border-radius: 100%;
        border: 10px solid #f77f00;
    }

    .basic-info h1,
    .journey-exp h1 {
        font-size: 5rem;
        text-align: center;
    }

    .journey-exp {
        padding: 3rem 2rem;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .journey-exp p {
        color: #EDEDED;
        gap: 10px;
    }

    .journey-exp h2 {
        font-size: 3rem;
    }

    .skills {
        display: flex;
        gap: 50px;
    }

    .skill-columns {
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }

    .techdev-col h3 {
        font-size: 30px;
    }

    .skills h1 {
        font-size: 5rem;
    }

    .skills img {
        width: 80px;
        height: auto;
        border-radius: 20%;
    }

    .techdev-col div {
        flex-direction: row;
        gap: 20px;
    }

    .logo-info {
        margin: 50px 10px 100px 10px;
        flex-direction: column;
        padding: 2.5rem;
        gap: 30px;
    }

    .logo-info img {
        height: 200px;
    }

    /*      PORTFOLIO SECTION      */
    .portfolio-section {
        min-height: 100vh;
        margin-bottom: 100px;
    }

    .ps-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
        gap: 20px;
        margin-bottom: 50px;
        height: 60vh;
    }

    .ps-top p {
        padding-right: 4px;
        font-size: 1em;
        font-weight: normal;
        margin-bottom: 5px;
    }

    .p-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .p-text h2,
    .p-text span {
        font-size: 2.5rem;
        font-weight: bold;
        line-height: 1.2;
    }

    .p-text span {
        position: relative;
        white-space: nowrap;
        display: block;
    }

    /* Typing effect */
    .p-text span::before {
        content: "Works";
        color: #f77f00;
        animation: p-content 20s infinite;
    }

    .p-text span::after {
        height: 2.8rem;
        right: -1px;
    }

    .container {
        padding: 0 10px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 70px;
    }

    .container h2 {
        font-size: 3rem;
    }

    .container1 {
        display: flex;
        padding: 0 10px;
        text-align: center;
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 70px;
    }

    .container1 h2 {
        font-size: 3rem;
    }

    .c-desc {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 30px;
    }

    .c-desc button {
        margin-top: 0px;
    }

    .c-desc p {
        padding-top: 0px;
    }

    .image-container {
        width: 300px;
        height: 300px;
        overflow: hidden;
        display: flex;

    }

    .image-container h2 {
        font-family: Poppins;
        color: #EDEDED;
        display: flex;
        letter-spacing: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease-in-out;
    }

    .image-container img:hover {
        object-fit: cover;
        height: 100%;
        width: 100%;
        transition: 0.2s ease-in;
        filter: brightness(1) blur(0px);
    }

    .image-container:hover h2 {
        opacity: 0;
        z-index: -1;
    }

    .image-container img:hover {
        transform: scale(1.05);
        transition: 0.4s ease;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    /*   HEADER PART    */

    .header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.5%;
        width: 100%;
        background-color: #0d1b2a;
    }

    .header img {
        height: 120px;
        width: auto;
        padding: 10px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        z-index: 1001;
        margin-left: 0;
    }

    .logo {
        margin-right: auto;
        padding-left: 3%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        left: 10;
        top: 0;
        gap: 20px;
        width: 80%;
        max-width: 300px;
        background: #0d1b2a;
        padding: 30px 0;
        padding-bottom: 50px;
        border-radius: 10px 0 0 10px;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 24px;
    }

    /*              HOME PART            */

    .home-section {
        padding: 50px 2rem 100px 2rem;
        flex-direction: column;
        align-items: center;
        align-content: center;
        text-align: center;
        min-height: 95vh;
    }

    #home-img img {
        width: 400px;
        height: auto;
    }

    .home-content h1 {
        padding: 1%;
        font-size: 6rem;
    }

    .home-content p {
        padding: 1rem;
    }

    .home-buttons {
        padding-top: 3rem;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top {
        flex-direction: column;
        padding: 2rem;
    }

    .first-col,
    .second-col,
    .third-col,
    .last-col,
    .second-third {
        width: 100%;
    }

    .first-col {
        justify-content: center;
        align-items: center;
    }

    .first-col img {
        width: 400px;
        height: auto;
    }

    .second-third {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 auto;
        width: fit-content;
        gap: 20px;
    }

    .second-col {
        text-align: left;
        width: 50%;
        position: relative;
    }

    .second-col::after {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        right: 0;
        width: 2px;
        background-color: #EDEDED;
    }

    .third-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        margin-left: 20px;
        width: 60%;
        gap: 1rem;
        padding: 30px 0;
    }

    .third-col h4 {
        font-size: 30px;
    }

    .last-col {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto;
        width: fit-content;
    }

    .icons {
        justify-content: left;
    }

    .first-col::after,
    .second-col::after,
    .third-col::after {
        display: none;
    }

    #bottom {
        padding: 1rem 0;
    }

    /*    ABOUT ME   */
    .basic-info {
        padding: 2rem 2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: fit-content;
    }

    .basic-info p {
        text-align: justify;
        margin-bottom: 10px;
        padding-top: 10px;
    }

    .basic-info img {
        width: 300px;
        height: auto;
        border-radius: 100%;
        border: 10px solid #f77f00;
    }

    .basic-info h1 {
        text-align: center;
    }

    .journey-exp {
        padding: 3rem 2rem;
        flex-direction: column-reverse;
        min-height: fit-content;
        text-align: left;
        gap: 20px;
    }

    .journey-exp p {
        color: #EDEDED;
        gap: 10px;
    }

    .journey-exp h2 {
        font-size: 3rem;
    }

    .skills {
        display: flex;
        gap: 50px;
        min-height: fit-content;
        padding-bottom: 20px;
    }

    .skill-columns {
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }

    .techdev-col h3 {
        font-size: 30px;
    }

    .skills h1 {
        font-size: 5rem;
    }

    .skills img {
        width: 80px;
        height: auto;
        border-radius: 20%;
    }

    .techdev-col div {
        flex-direction: row;
        gap: 20px;
    }

    .logo-info {
        margin-top: 50px;
        margin: 50px 20px;
        display: flex;
        flex-direction: column;
        padding: 2.5rem;
        justify-content: center;
        align-items: center;
        background-color: #f77f00;
        margin-bottom: 100px;
    }

    .logo-info img {
        height: 400px;
        margin: 0;
    }

    .logo-info p {
        padding: 0px;
        color: #EDEDED;
        text-align: justify;
        margin-top: 20px;
    }

    .logo-info h3 {
        color: #EDEDED;
    }

    /*      PORTFOLIO SECTION      */
    .ps-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px;
        gap: 5px;
        margin-bottom: 50px;
        height: 60vh;
    }

    .ps-top p {
        padding-right: 4px;
        margin-bottom: 5px;
    }

    .p-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .p-text h2,
    .p-text span {
        font-size: 3.5rem;
        font-weight: bold;
        line-height: 1.2;
    }

    .p-text span {
        position: relative;
        white-space: nowrap;
        display: block;
    }

    .p-text span::after {
        content: "";
        position: absolute;
        width: calc(100% + 8px);
        height: 3.85rem;
        background-color: #d6c9a1;
        border-left: solid 2px #f77f00;
        right: -1px;
        animation: cursor 0.7s infinite, typing 20s steps(14) infinite;
    }

    .container {
        padding: 0 10px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 70px;
    }

    .container h2 {
        font-size: 3rem;
    }

    .container1 {
        display: flex;
        padding: 0 10px;
        text-align: center;
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 70px;
    }

    .container1 h2 {
        font-size: 3rem;
    }

    .c-desc {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 40px;
    }

    .image-container {
        width: 400px;
        height: 400px;
        overflow: hidden;
        display: flex;
    }

    .image-container h2 {
        font-family: Poppins;
        color: #EDEDED;
        display: flex;
        letter-spacing: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease-in-out;
    }

    .image-container img:hover {
        object-fit: cover;
        height: 100%;
        width: 100%;
        transition: 0.2s ease-in;
        filter: brightness(1) blur(0px);
    }

    .image-container:hover h2 {
        opacity: 0;
        z-index: -1;
    }

    .image-container img:hover {
        transform: scale(1.05);
        transition: 0.4s ease;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {

    /*   HEADER PART    */
    .header {
        padding: 15px 30px 15px 50px;
        width: 100%;
    }

    .nav-links {
        gap: 75px;
    }

    .home-buttons {
        justify-content: center;
        gap: 2rem;
    }

    /*              HOME PART            */

    .home-section {
        padding: 50px 2rem 100px 2rem;
        flex-direction: column;
        align-items: center;
        align-content: center;
        text-align: center;
        min-height: 60vh;
    }

    #home-img img {
        width: 400px;
        height: auto;
    }

    .home-content h1 {
        padding: 1%;
    }

    .home-content p {
        padding: 1rem;
    }

    .top {
        flex-wrap: wrap;
        padding: 2rem;
    }

    .first-col,
    .second-col,
    .third-col,
    .last-col,
    .second-third {
        width: 100%;
    }

    .first-col {
        justify-content: center;
        align-items: center;
    }

    .first-col img {
        width: 500px;
        height: auto;
    }

    .second-third {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 auto;
        width: fit-content;
        gap: 20px;
        padding-right: 10px;
    }

    .second-col {
        text-align: left;
        width: 50%;
        position: relative;
    }

    .second-col::after {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        right: 0;
        width: 2px;
        background-color: #EDEDED;
    }

    .third-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        margin-left: 20px;
        width: 60%;
        gap: 1rem;
        padding: 30px 0;
    }

    .third-col h4 {
        font-size: 30px;
    }

    .last-col {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto;
        width: fit-content;
    }

    .icons {
        justify-content: left;
    }

    .first-col::after,
    .second-col::after,
    .third-col::after {
        display: none;
    }

    #bottom {
        padding: 1rem 0;
    }

    /*    ABOUT ME   */
    .basic-info {
        padding: 2rem 2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: fit-content;
    }

    .basic-info p {
        text-align: justify;
        margin-bottom: 10px;
        padding-top: 10px;
    }

    .basic-info img {
        width: 300px;
        height: auto;
        border-radius: 100%;
        border: 10px solid #f77f00;
    }

    .basic-info h1 {
        text-align: center;
    }

    .journey-exp {
        padding: 3rem 2rem;
        flex-direction: column-reverse;
        min-height: fit-content;
        text-align: left;
        gap: 20px;
    }

    .journey-exp p {
        color: #EDEDED;
        gap: 10px;
    }

    .journey-exp h2 {
        font-size: 3rem;
    }

    .skills {
        display: flex;
        gap: 50px;
        min-height: fit-content;
        padding-bottom: 20px;
    }

    .skill-columns {
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }

    .techdev-col h3 {
        font-size: 30px;
    }

    .skills h1 {
        font-size: 5rem;
    }

    .skills img {
        width: 100px;
        height: auto;
        border-radius: 20%;
    }

    .techdev-col div {
        flex-direction: row;
        gap: 20px;
    }

    .logo-info {
        margin: 50px 20px;
        padding: 30px;
        justify-content: center;
        align-items: center;
        background-color: #f77f00;
        margin-bottom: 100px;
        gap: 10px;
    }

    .logo-info img {
        height: 300px;
        margin: 0;
    }

    .logo-info p {
        padding: 0px;
        color: #EDEDED;
        text-align: justify;
        margin-top: 20px;
    }

    .logo-info h3 {
        color: #EDEDED;
    }

    /*      PORTFOLIO SECTION      */
    .portfolio-section {
        min-height: 100vh;
        margin-bottom: 100px;
    }

    .portfolio-section {
        min-height: 100vh;
        margin-bottom: 100px;
    }

    .ps-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px;
        gap: 5px;
        margin-bottom: 50px;
        height: 60vh;
    }

    .ps-top p {
        padding-right: 4px;
        font-size: 1em;
        font-weight: normal;
        margin-bottom: 5px;
    }

    .p-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .p-text h2,
    .p-text span {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .p-text span {
        position: relative;
        white-space: nowrap;
        display: block;
    }

    .p-text span::before {
        content: "Works";
        color: #f77f00;
        animation: p-content 20s infinite;
    }

    .p-text span::after {
        height: 4.5rem;
    }

    .container {
        padding: 0 10px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 70px;
    }

    .container1 {
        display: flex;
        padding: 0 10px;
        text-align: center;
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 70px;
    }

    .c-desc {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 40px;
    }

    .image-container {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 1166px) and (min-width: 1025px) {
    .header {
        position: sticky;
        top: 0;
        width: 100%;
        padding: 15px 50px;
        background-color: #0d1b2a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }

    .home-section {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .home-buttons {
        justify-content: center;
        gap: 2rem;
    }

    .home-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-content h1 {
        padding-top: 50px;
    }

    .home-content p {
        padding-top: 2rem;
        max-width: 60ch;
        text-align: center;
    }

    #home-img img {
        width: 500px;
        height: auto;
    }
}