
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
}

body {
    background-color: black;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow-x: hidden; 
}


nav {
    width: 100%;
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    top: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(5px); 
}

.logo h2 {
    font-size: 28px;
    font-weight: bold;
}

.logo span {
    color: #f2a65a;
}

.hamburger {
    display: none; 
    font-size: 26px;
    cursor: pointer;
    color: white;
}

nav ul {
    display: flex; 
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 10px 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    transition: color 0.25s ease-in-out;
    padding: 5px 0; 
}

nav ul li a:hover {
    color: #f2a65a;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #f2a65a;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Main Section */
#main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around;
    align-items: center;
    padding: 80px 20px 20px 20px; 
    text-align: center; 
}

#main .text {
    max-width: 600px;
    margin-bottom: 30px; 
    margin-top: 50px;
}

#main h1 {
    font-size: 50px;
    padding: 8px;
    line-height: 1.2; 
}

.image {
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeZoomIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%; 
    height: auto; 
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@keyframes fadeZoomIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.typing {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #f2a65a;
    font-family: monospace;
    font-size: 2em;
    animation: typing 4s steps(12) infinite, blink 0.6s step-end infinite alternate;
}

@keyframes typing {
    0% {
        width: 0;
    }
    50% {
        width: 12ch;
    }
    100% {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

button {
    padding: 12px 25px; 
    margin: 10px;
    color: black;
    background-color: #f2a65a;
    margin-top: 35px;
    font-weight: bold;
    font-size: 18px; 
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

button:hover {
    background-color: #ff9747;
    transform: scale(1.05);
    box-shadow: 0 0 10px #f2a65a, 0 0 20px #f2a65a, 0 0 30px #f2a65a;
}


#details {
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    padding: 50px 20px; 
    text-align: center; 
}

#details .img1 img {
    max-width: 100%; 
    height: auto; 
    border-radius: 8px;
}

#details .ptext {
    max-width: 600px;
    line-height: 1.6;
}

#details .ptext h1 {
    font-weight: bold;
    font-size: 38px;
    margin-bottom: 15px;
}

#details .ptext h4 {
    color: #f2a65a;
    margin-bottom: 10px;
}

/* Services Section */
#services {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

#services .stext {
    padding: 10px;
    line-height: 1.6;
    margin-bottom: 35px;
}

#services .stext h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 10px;
}

#services .stext span {
    color: #f2a65a;
}

#services .sboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    width: 100%; 
    max-width: 1200px; 
}

#services .sboxes .box {
    background-color: #1a1a1a; 
    border-radius: 12px;
    padding: 25px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .sboxes .box:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

#services .sboxes .box .fa-solid {
    font-size: 45px; 
    padding: 15px;
    color: #f2a65a;
    transition: color 0.25s ease-in-out;
}

#services .sboxes .box:hover .fa-solid {
    color: white;
}

#services .sboxes .box h2 {
    padding: 10px;
    font-weight: bold;
    transition: color 0.25s ease-in-out;
    font-size: 24px; 
}

#services .sboxes .box h2:hover {
    color: #ff9747;
}

#services .sboxes .box p {
    margin-top: 20px;
    font-weight: normal; 
    color: #ccc; 
}


.projects {
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around;
    align-items: center;
    gap: 30px; 
    text-align: center;
    background: linear-gradient(to right, black 0%, black 30%, #f2a65a 100%);
    padding: 40px 20px; 
}

.projects div {
    flex: 1; 
    min-width: 180px; 
    padding: 15px;
}

.projects h2 {
    font-size: 48px; 
    color: white;
    margin-bottom: 5px;
}

.projects p h3 {
    font-size: 18px;
    color: #eee;
}
#plans {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

#plans .pltext {
    padding: 15px;
    margin-bottom: 30px;
}

#plans .pltext h1 {
    font-size: 45px;
    font-weight: bold;
    padding: 15px;
}

#plans .pltext p {
    color: #ccc;
}

#plans .plbox {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: stretch; 
    gap: 25px;
    width: 100%;
    max-width: 1400px; 
}

#plans .plbox .pbox {
    flex: 1; 
    min-width: 280px; 
    height: auto; 
    text-align: center;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease-in-out, background 0.6s ease-in-out;
    padding: 30px 20px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

#plans .plbox .pbox:hover {
    background: linear-gradient(135deg, #000000, #FFD700); 
    transform: scale(1.05); 
}

#plans .plbox .pbox .fl {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 25px 0; 
}

#plans .plbox .pbox .cp1 {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: #f2a65a;
    display: flex;
    justify-content: center;
    align-items: center;
}

#plans .plbox .pbox .cp2 {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#plans .plbox .pbox .cp2 span {
    font-size: 35px;
    font-weight: bold;
}

#plans .plbox .pbox h2 {
    padding: 10px;
    font-size: 28px;
}

#plans .plbox .pbox .borde {
    line-height: 1.8; 
    padding: 10px;
    font-weight: bold;
    border-bottom: 0.5px groove rgba(255, 255, 255, 0.3); 
    margin-bottom: 10px; 
}

#plans .plbox .pbox button {
    margin-top: auto; 
}


footer {
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around;
    align-items: flex-start; 
    background: linear-gradient(to right, black 0%, black 30%, #f2a65a 100%);
    padding: 50px 20px;
    text-align: center; 
}

footer div {
    max-width: 400px; 
    line-height: 1.6;
    margin-bottom: 30px; 
}

footer div h2 {
    color: #ff9747;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 15px;
}

footer div p {
    color: #eee;
}

footer div p h3 {
    display: inline; 
}

input[type="email"] {
    padding: 12px; 
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #f2a65a;
    background-color: #333; 
    color: white;
    width: calc(100% - 40px); 
    max-width: 250px; 
}

input[type="email"]::placeholder {
    color: #aaa;
}

footer div .fa-solid {
    font-size: 25px; 
    cursor: pointer;
    color: #f2a65a;
    margin-left: 10px;
}

footer .fa-brands {
    font-size: 30px;
    color: black;
    cursor: pointer;
    padding: 5px;
    margin: 0 5px; 
    transition: color 0.3s ease;
}

footer .fa-brands:hover {
    color: #f2a65a;
}


@media (max-width: 1024px) {
    nav {
        justify-content: space-between;
        padding: 15px 20px;
    }

    
    nav .list { 
        position: fixed;
        top: 0;
        right: -250px; 
        width: 250px; 
        height: 100vh; 
        background-color: rgba(0, 0, 0, 0.95); 
        padding-top: 80px; 
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5); 
        transition: right 0.3s ease-in-out; 
        display: block; 
        z-index: 999;
    }

    nav .list.active {
        right: 0; 
    }

    nav ul {
        flex-direction: column; 
        width: 100%;
        padding: 0; 
        text-align: center;
    }

    nav ul li {
        padding: 15px 0; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    }

    nav ul li:last-child {
        border-bottom: none; 
    }

    nav ul li a {
        display: block;
        padding: 10px; 
    }

    .hamburger {
        display: block; 
    }

    #main {
        flex-direction: column-reverse; 
        padding-top: 100px;
    }

    #main .text {
        margin-bottom: 50px;
    }

    #main h1 {
        font-size: 40px;
    }

    .typing {
        font-size: 1.5em;
    }

    #details {
        flex-direction: column;
    }

    #details .img1 {
        margin-bottom: 30px;
    }

    #details .ptext h1 {
        font-size: 32px;
    }

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

    .projects {
        flex-direction: column;
        gap: 20px;
    }

    .projects div {
        min-width: 100%;
    }

    #plans .plbox {
        flex-direction: column;
        align-items: center;
    }

    #plans .plbox .pbox {
        width: 90%; 
        max-width: 350px; 
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer div {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 15px;
    }

    .logo h2 {
        font-size: 24px;
    }

    .hamburger {
        font-size: 24px;
    }

    #main h1 {
        font-size: 36px;
    }

    .typing {
        font-size: 1.2em;
    }

    #details .ptext h1 {
        font-size: 28px;
    }

    #services .stext h1 {
        font-size: 38px;
    }

    #services .sboxes .box {
        padding: 20px;
    }

    .projects h2 {
        font-size: 40px;
    }

    #plans .pltext h1 {
        font-size: 38px;
    }

    footer div h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #main h1 {
        font-size: 30px;
    }

    .typing {
        font-size: 1em;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
    }

    #details .ptext h1 {
        font-size: 24px;
    }

    #services .stext h1 {
        font-size: 30px;
    }

    #services .sboxes .box h2 {
        font-size: 20px;
    }

    .projects h2 {
        font-size: 36px;
    }

    #plans .pltext h1 {
        font-size: 30px;
    }

    #plans .plbox .pbox h2 {
        font-size: 24px;
    }
}
