*{
    margin: 0;
    padding: 0;
    color: var(--white--);
    font-family: 'Poppins', sans-serif;
    z-index: 1;
}
html{
    scroll-behavior: smooth;
}
:root {
    --black--: #101010;      /* keep your dark background */
    --red--: #9EFF00;        /* main neon green (logo‑like) */
    --lightRed--: #C8FF66;   /* softer/lighter version for hovers */
    --white--: #efedef;
    --gray--: #212120;
    --gray2--: #959595;
    --gold--: #dfd001;
    --p--: clamp(0.8rem, 1vw, 1.5vw);
    --h3v2--: clamp(1.3rem, 1.5vw + 1rem, 2rem);
    --h3--: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    --h2--: clamp(2rem, 2.5vw, 4vw);
    --h1--: clamp(1.5rem, 2vw, 3vw);
}



/* Start of the HERO Section */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black--);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.splash-content {
  text-align: center;
  max-width: 80%;
}

.splash-logo {
  width: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(39, 161, 5, 0.5));
}

.splash-text h1 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white--);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.splash-text p {
  color: var(--gray2--);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  overflow: hidden;
}

.loading-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--lightRed--), transparent);
  animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

::-webkit-scrollbar {
    width: 5px; 
}
::-webkit-scrollbar-thumb {
    background: var(--red--);
    border-radius: 300%;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lightRed--);
}
::-webkit-scrollbar-track {
    background: var(--black--);
}
body{
    
    background-color: var(--black--);
    overflow-x: hidden;
    margin: 0;
}
.hero-section{
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    padding: 2% 4% 0 4%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding-top: 160px;
}
.scroll-down{
    display: none;
}
nav{
    display: flex;
    width: 100%;
    list-style: none;
    justify-content: space-evenly;
    flex-shrink: 1;
    flex-wrap: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.5rem 4%;
    box-sizing: border-box;
    z-index: 1000;
    background: rgba(16, 16, 16, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
/* Scroll-scaled navbar states */
nav.scrolled {
    padding: 0.5rem 4% !important;
    background: rgba(16, 16, 16, 0.92) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
nav.scrolled #logo {
    width: clamp(28px, 3.5vw, 55px) !important;
}
nav.scrolled #contact-me {
    padding: 0.35rem 1.2rem !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}
nav.scrolled ul li a {
    font-size: 0.85rem !important;
}
.left{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -1%;
    margin-right: auto;
    flex-shrink: 1;
    
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3%;
}
.right{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;

}
nav ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
nav ul li a {
    text-decoration: none;
    margin: 0 20px;
    font-size: clamp(1rem, 1.5vw, 3rem);
    position: relative; 
    padding: 5px 0;
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
    display: inline-block;
}
nav ul li:nth-child(1) a { animation-delay: 3.2s; }
nav ul li:nth-child(2) a{ animation-delay: 3.4s; }
nav ul li:nth-child(3) a{ animation-delay: 3.6s; }
nav ul li:nth-child(4) a{ animation-delay: 3.8s; }
nav ul li:nth-child(5) a{ animation-delay: 4s; }

/* Underline animation */
nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: var(--red--);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:hover{
    color: var(--red--);
    transition: .2s;
}
.active{
    color: var(--red--);
}
nav ul li a.active::after {
    transform: scaleX(1);
}
#logo{
    width: clamp(40px, 5vw, 80px);
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
    transition: all 0.3s ease-in-out !important; 
}
#logo:hover{
    transform: scale(1.1)!important;
}

#contact-me{
    text-decoration: none;
    display: flex;
    background-color: var(--red--);
    border: none;
    border-radius: 5px;
    padding: clamp(2px, 1vw, 5px) clamp(10px, 4vw, 30px);
    font-size: clamp(.1rem, 1.5vw, 3rem);
    cursor: pointer;
    flex-shrink: 0;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 3.8s;
    opacity: 0;
    outline: 1px solid;
    outline-color: var(--red--);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    color: #000000;          
}
#contact-me:hover{
    background-color: var(--lightRed--);
    transition: .2s;
    box-shadow: inset 0 0 20px rgba(170, 255, 0, 0.5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
}
.mainFirstSection{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.mainLeft{
    display: flex;
    flex: 0 0 33.33%;        
    max-width: 33.33%;
    min-width: 0;
    flex-direction: column;
    align-self: flex-start;
}
.mainLeft h1{
    font-weight: normal;
    font-size: clamp(0.5rem, 1.7vw, 2vw);
    line-height: 1.2;
    margin-bottom: 5%;
    white-space: normal;
    min-height: 2.4em;
}
.mainLeft .auto-type{
    font-weight: normal;
    color: var(--lightRed--);
    font-size: clamp(0.5rem, 1.7vw, 2vw);
    line-height: 1;
    z-index: 999;
}
.mainLeft > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.mainLeft > *:nth-child(1) { animation-delay: 4.4s; }
.mainLeft > *:nth-child(2) { animation-delay: 4.8s; }
.mainLeft > *:nth-child(3) { animation-delay: 5s; }
.mainLeft > *:nth-child(4) { animation-delay: 5.4s; }
.mainLeft > *:nth-child(5) { animation-delay: 5.8s; }

.mainLeft #p1{
    background-color: var(--gray--);
    padding: 1% 5%;
    font-size: clamp(1rem, 1.5vw, 2.8rem);
    text-wrap: nowrap;
}
.firstPart{
    display: flex;
    align-items: center;
}
.firstPart hr{
    width: 10vw;
    height: .3vw;
    margin-left: 10%;
    background-color: var(--red--);
    border: none;
}
.mainLeft h2{
    font-size: clamp(1rem, 3.75vw, 4vw);
    white-space: nowrap;
}
#moreAboutMe{
    color: white;
    background-color: var(--black--);
    border: solid var(--red--) 1.5px; 
    font-size: clamp(1vw, 1.7vw, 4vw);
    font-weight: 200;
    border-radius: 5px;
    transition: ease-out .2s;
    cursor: pointer;
    padding: 2% 10%;
    position: relative;
}


#moreAboutMe:before {
    content: '';
    background: linear-gradient(45deg, #9EFF00,#C8FF66, #7ff24e, #ff4f4f,  #456f01);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

#moreAboutMe:active {
    color: white;
}
#moreAboutMe:hover{
    
    text-shadow: 0 0 10px black;
    border: 1px solid white;
}
#moreAboutMe:hover:after {
    background: transparent;
}
#moreAboutMe:active:after {
    background: black;
}   
#moreAboutMe:hover:before {
    opacity: 1;
}

#moreAboutMe:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.socialsMainContainer{
    margin-top: 10%;
    position: relative;
    display: inline-block;
}
.socialsContainer{
    margin-top: 5%;
}
.socialsContainer a{
    text-decoration: none;
}
#p2{
    background-color: var(--gray--);
    padding: .5% 2%;
    display: inline;
    font-size: clamp(0.5vw, 1vw, 3vw);
    margin-top: 15%;
}
.fa-brands{
    color: var(--gray2--);
    transition: ease-in-out .2s;
    font-size: 2vw;
    background-color: var(--black--);
    margin-right: 3%;
    cursor: pointer;
}
.fa-brands:hover{
    color: var(--lightRed--);
    transform: scale(1.1);
}
.mainMiddle{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin-top: -15vh;
    z-index: 0;
    animation: bounceIn 1s ease-out forwards;
    animation-delay: 4.2s;
    opacity: 0;
}
.mainRight{
    flex: 0 0 33.33%; 
    max-width: 33.33%;
    min-width: 0;
    align-self: flex-start;
    position: relative;
}

.mainRight > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.mainRight > *:nth-child(1) { animation-delay: 4.4s; }
.mainRight > *:nth-child(2) { animation-delay: 4.8s; }
.mainRight > *:nth-child(3) { animation-delay: 5s; }
.mainRight > *:nth-child(4) { animation-delay: 5.4s; }


.mainRight h2{
    font-size: clamp(1.3rem, 2vw, 3vw);
    text-align: start;
}
.mainRight h2 span, .description span{
    color: var(--lightRed--);
}
.mainRight .description{
    margin-top: 3%;
    font-size: clamp(0.8rem, 1vw, 1.5vw);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

.slogan {
    margin-top: 8%;
    margin-left: 5%;
    position: relative;
    font-size: clamp(0.95rem, 1vw, 1.25vw);
    height: auto;
    width: 90%;
}
.auto-type-slogan {
    display: inline;
    font-size: clamp(1rem, 1vw, 1.5vw);
}

.auto-type-slogan p {
    font-weight: normal;
}
.auto-type-slogan span {
    color: var(--lightRed--);
}
.slogan::after{
    content: '';
    width: 0.5rem;
    height: 100%;
    display: block;
    background-color: var(--red--);
    position: absolute;
    left: -20px;
    top: 2px;
}
#mainDisplay{
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}


/* Overlay section */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 2000; /* stack on top of the fixed navbar */
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.95);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: var(--red--);
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}
.hrBelow{
    width: 100%;           
    left: 50%;
    transform: translateX(-50%);
    height: 0.5em;
    background-color: var(--red--);
    border: none;
    white-space: nowrap;
    transform-origin: center;
    animation: growFromCenter 1.5s ease-out forwards;
    animation-delay: 4.4s;
    opacity: 0;
}
/* End of the HERO Section */

/* Start of SERVICES Section (Professionalized & Glowing Glass) */
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6% 4%;
    background-color: var(--black--);
}
.services h1 {
    font-weight: 700;
    font-size: var(--h1--);
    text-align: center;
    color: var(--white--);
    margin-bottom: 0.8rem;
}
.services h3 {
    font-size: var(--h3--);
    font-weight: normal;
    width: 80%;
    text-align: center;
    color: var(--gray2--);
    margin-bottom: 2rem;
}
.services h3 span {
    font-weight: 600;
    color: var(--lightRed--);
}

/* Service Cards Container */
.service-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3.5% 0;
    width: 90%;
    max-width: 1300px;
}

/* Premium Service Card */
.service-card {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(158, 255, 0, 0.3);
    box-shadow: 0 15px 35px rgba(158, 255, 0, 0.08);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red--), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.service-card:hover::before {
    transform: translateX(100%);
}

/* Glowing Service Icon */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: rgba(158, 255, 0, 0.06);
    border: 1px solid rgba(158, 255, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background-color: rgba(158, 255, 0, 0.12);
    border-color: var(--red--);
    box-shadow: 0 0 15px rgba(158, 255, 0, 0.2);
}
.service-icon i {
    color: var(--red--);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon i {
    transform: none;
}

/* Service Typography */
.service-name {
    font-weight: 700;
    color: var(--white--);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
}
.service-description {
    font-size: 0.92rem;
    color: var(--gray2--);
    line-height: 1.6;
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Included Service Features */
.service-features {
    list-style-type: none;
    padding-left: 0;
    margin: auto 0 0 0; /* push to bottom of card */
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}
.service-features li {
    font-size: 0.86rem;
    color: #dddddd;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}
.service-features li i {
    color: var(--red--);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Exquisite Promo Banner (Early Bird Card) */
.promo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #161616 0%, #1c1c1b 100%);
    border: 1px solid rgba(158, 255, 0, 0.15);
    border-radius: 16px;
    padding: 3rem 4rem;
    width: 90%;
    max-width: 1300px;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(158, 255, 0, 0.02);
}
.promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 65%;
}
.promo-badge {
    background-color: rgba(158, 255, 0, 0.08);
    color: var(--red--);
    border: 1px solid rgba(158, 255, 0, 0.2);
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.promo-banner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white--);
    margin: 0 0 0.8rem 0;
    text-align: left;
}
.promo-banner h2 span {
    color: var(--red--);
}
.promo-banner p {
    font-size: 0.95rem;
    color: var(--gray2--);
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    text-align: left;
}
.promo-spots {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #888888;
}
.spot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--red--);
    position: relative;
}
.spot-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(158, 255, 0, 0.4);
    animation: spotPulse 2s infinite ease-out;
}
@keyframes spotPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
.promo-btn {
    color: rgb(0, 0, 0);
    background-color: var(--red--);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.promo-btn:hover {
    background-color: var(--lightRed--);
    box-shadow: 0 0 15px rgba(158, 255, 0, 0.35);
    transform: translateY(-2px);
}

/* 3-Step Process Flow */
.step-card {
    background-color: #131313;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.step-card:hover {
    background-color: #171717;
    border-color: rgba(158, 255, 0, 0.15);
}
.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red--);
    background-color: rgba(158, 255, 0, 0.05);
    border: 1px solid rgba(158, 255, 0, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(158, 255, 0, 0.02);
    transition: all 0.3s ease;
}
.step-card:hover .step-number {
    background-color: var(--red--);
    color: #000000;
    border-color: var(--red--);
    box-shadow: 0 0 15px rgba(158, 255, 0, 0.25);
}
.step-name {
    font-weight: 700;
    color: var(--white--);
    font-size: 1.25rem;
    margin: 0 0 0.8rem 0;
}
.step-description {
    font-size: 0.9rem;
    color: var(--gray2--);
    line-height: 1.55;
    margin: 0;
}

/* Bounce animation for Rating Stars */
.bounce-img {
    transition: transform 0.3s ease;
}
.bounce-img:hover {
    transform: translateY(-5px);
}

#services-v2 {
    margin-top: 0;
}
.reserve-button {
    color: rgb(0, 0, 0);
    background-color: var(--red--);
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    font-size: var(--p--);
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.reserve-button:hover {
    background-color: var(--lightRed--);
    box-shadow: 0 0 15px rgba(158, 255, 0, 0.35);
    transform: translateY(-2px);
}
.testimonials{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5% 0 6% 0;
    scroll-margin-top: 5rem;
}
.testimonial-slider{
    width: 100%;
    display: flex;
    justify-content: center;   /* centers the wrapper inside */
}
.testimonial-slide{
    display: none;
}
.testimonial-slide.active{
    display: block;
}
.testimonials h1{
    font-size: var(--h1--);
    font-weight: bold;
    text-align: center;
}
.testimonials h1 span{
    color: var(--lightRed--);
}


.testimonials-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60%;
    gap: 10%;
    margin: 5% auto 3% auto;   /* auto left/right centers the block */
}

#rod{
    transition: .3s ease-in-out;
}
.testimonials-wrapper img{
    height: 315px;
    width: 315px;
    border-radius: 10px;
    
}
#rod:hover{
    transform: rotate(-3deg) scale(1.02);
    animation: glow 1.5s infinite ease-in-out;
}
.testimonials-description-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.testimonials-p1{
    font-size: var(--h5--);
}
.stars-container{
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
}
.stars-container img{
    width: 3rem;
    height: 3rem;
}
.testimonials-p2{
    margin-top: 3rem;
    font-size: var(--p--);
}
.testimonial-bullets{
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.testimonial-bullets button{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray2--);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.testimonial-bullets button.active{
    background-color: var(--red--);
    transform: scale(1.2);
}
.works4{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 5% 0 10% 0;
}
.works4 h1{
    font-size: var(--h1--);
    margin-bottom: 1rem;
}
.works4 h3{
    font-size: var(--h3--);
}
.works4 h3 span{
    font-weight: bold;
    color: var(--lightRed--);
}
/* End of the SERVICES Section */

/* Start of the WORKS Section (YouTube Card Style) */
.works-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6% 4%;
    background-color: var(--black--);
}
.works-section h1 {
    font-weight: 700;
    text-align: center;
    font-size: var(--h1--);
    margin-bottom: 1rem;
    color: var(--white--);
}
.works-section h3 {
    font-size: var(--h3--);
    font-weight: normal;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray2--);
    width: 80%;
}
.works-section h3 span {
    color: var(--lightRed--);
    font-weight: 600;
}

/* Category Filter Bar */
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    background-color: #212120;
    color: var(--white--);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.filter-btn:hover {
    background-color: #313130;
    color: var(--red--);
    border-color: rgba(158, 255, 0, 0.3);
}
.filter-btn.active {
    background-color: var(--red--);
    color: #000000;
    border-color: var(--red--);
    font-weight: 600;
    box-shadow: 0 0 12px rgba(158, 255, 0, 0.3);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Project YouTube-Style Card */
.project-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
.project-card:hover {
    border-color: rgba(158, 255, 0, 0.2);
    box-shadow: 0 10px 25px rgba(158, 255, 0, 0.12);
}

/* Card Thumbnail */
.project-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #0d0d0d;
}
.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card:hover .project-thumbnail img {
    /* Scaling effect removed */
}

/* YouTube Duration-Style Badge */
.project-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--white--);
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

/* Card Body */
.project-body {
    padding: 16px;
    display: flex;
    gap: 12px;
    flex-grow: 1;
}

/* YouTube Channel-Style Avatar */
.project-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2c2c2b;
    border: 1px solid var(--red--);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.project-avatar i {
    color: var(--red--);
    font-size: 0.95rem;
}
.project-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Project Text Details */
.project-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0; /* allows text-overflow clamping to work */
}
.project-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white--);
    margin-bottom: 5px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-channel {
    font-size: 0.85rem;
    color: var(--gray2--);
    margin-bottom: 2px;
    font-weight: 400;
}
.project-metadata {
    font-size: 0.8rem;
    color: #888888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Actions Footer */
.project-footer {
    display: flex;
    padding: 0 16px 16px 16px;
    gap: 8px;
    background-color: #1a1a1a;
}
.project-btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
}
.details-btn {
    background-color: #2a2a29;
    color: var(--white--);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.details-btn:hover {
    background-color: #383837;
    color: var(--lightRed--);
    border-color: rgba(200, 255, 102, 0.2);
}
.explore-btn {
    background-color: var(--red--);
    color: #000000;
    border: 1px solid var(--red--);
    font-weight: 600;
}
.explore-btn:hover {
    background-color: var(--lightRed--);
    border-color: var(--lightRed--);
    box-shadow: 0 0 10px rgba(158, 255, 0, 0.3);
}
.explore-btn.disabled {
    background-color: #212120;
    color: #666666;
    border-color: transparent;
    cursor: not-allowed;
    font-weight: 400;
}

/* PROJECT DETAILS MODAL STYLING */
.project-details-modal .modal-content {
    background-color: #161616;
    border: 1px solid rgba(158, 255, 0, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(158, 255, 0, 0.05);
    color: var(--white--);
    max-width: 900px;
    padding: 2.5rem;
    overflow: hidden;
}
.project-modal-close {
    color: var(--gray2--) !important;
    top: 15px;
    right: 20px;
    transition: color 0.2s;
}
.project-modal-close:hover {
    color: var(--red--) !important;
}
.project-modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.project-modal-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0d0d0d;
}
.project-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-modal-info {
    display: flex;
    flex-direction: column;
}
.project-modal-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white--);
    text-align: left;
    margin-bottom: 4px;
    line-height: 1.25;
}
.modal-project-sub {
    font-size: 1rem;
    color: var(--lightRed--);
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: left;
}
.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
}
.tech-pill {
    background-color: rgba(158, 255, 0, 0.08);
    color: var(--red--);
    border: 1px solid rgba(158, 255, 0, 0.25);
    padding: 4px 10px;
    font-size: 0.78rem;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.project-modal-description {
    margin-bottom: 1.5rem;
}
.project-modal-description h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 10px;
    font-weight: 600;
}
.project-modal-description ul {
    list-style-type: none;
    padding-left: 0;
}
.project-modal-description ul li {
    font-size: 0.88rem;
    color: #dddddd;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}
.project-modal-description ul li::before {
    content: "•";
    color: var(--red--);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}
.project-modal-actions {
    margin-top: 1rem;
}
.modal-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--red--);
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.modal-explore-btn:hover {
    background-color: var(--lightRed--);
    box-shadow: 0 0 15px rgba(158, 255, 0, 0.35);
}
.modal-explore-btn.disabled {
    background-color: #2a2a29;
    color: #555555;
    cursor: not-allowed;
    pointer-events: none;
}

/* Media Queries for Works Grid */
@media screen and (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        width: 95%;
    }
    .project-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .project-details-modal .modal-content {
        padding: 1.5rem;
        margin: 5% auto;
        width: 95%;
    }
}
/* End of the WORKS Section */

/* Start of the FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 0;
  scroll-margin-top: 2rem;
  width: 80%;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: var(--h1--);
  margin-bottom: 2rem;
}

.faq-item {
  background: #f0f0f0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #000;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  
}

.faq-question h3 {
  margin: 0;
  font-size: var(--p--);
  font-weight: bold;
  color: #ff4f64;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #ff4f64;
}

.icon.minus {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0;
  color: black;
  font-size: var(--p--);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .icon.plus {
  display: none;
}

.faq-item.active .icon.minus {
  display: inline;
}
.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.icon {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.icon img {
  width: 20px; /* adjust size */
  height: 20px;
  display: block;
}

.icon.plus {
  opacity: 1;
  transform: rotate(0deg);
}

.icon.minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-item.active .icon.plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .icon.minus {
  opacity: 1;
  transform: rotate(0deg);
}

/* End of the FAQ Section */

/* FOOTER SECTION */
footer{
    background-color: var(--gray--);
}
.footer-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5% 0;
}
.footer-logo-wrapper{

}
.footer-nav-wrapper{

}
.footer-nav-wrapper ul{
    display: flex;
    list-style: none;
    justify-content: center;
}
.footer-nav-wrapper ul li{
    padding: 0 5%;
}
.footer-nav-wrapper ul li a{
    text-decoration: none;
    font-weight: normal;
    color: var(--gray2--);
}
.footer-nav-wrapper ul li:hover{
    transition: .3s;
    transform: scale(1.05);
}
.footer-nav-wrapper ul li a:hover{
    opacity: 1;
    transition: .2s;
    color: white;
}
.footer-logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20%;
    margin: 1.5% 0 1.5% 0;
}
.footer-logo-wrapper a i{
    border-radius: 50%;
    font-size: 2rem;
}
.footer-logo-wrapper a i:hover{
    color: var(--white--);
}
.footer-contacts-wrapper{
    display: flex;
    flex-direction: row;
    gap: 10%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-email-wrapper, .footer-phone-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer-phone-wrapper i,
.footer-email-wrapper i{
    color: var(--gray2--);
    margin-right: 5%;
    font-size: 1rem;
}
.footer-email-wrapper p, .footer-phone-wrapper p{
    white-space: nowrap;
    color: var(--gray2--);
    font-size: 1rem;
}
.footer-hr{
    position: relative;
    margin-top: 5%;
    opacity: 0.5;
}
.footer-p{
    color: var(--gray2--);
    margin-top: 1.5%;
    font-size: clamp(0.5rem, 1rem, 1.2rem);
    text-align: center;
}

/* MODALS */
.modal {
  display:none;
  position:fixed;
  z-index:1000;
  left:0; top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgba(0,0,0,0.5);
}

.modal-content {
  background-color:#fff;
  margin:3% auto;
  padding:2rem;
  border-radius:8px;
  width:90%;
  max-width:800px;
  box-sizing:border-box;
  position:relative;
}
.modal-content h2{
    font-size: var(--h2--);
    color: var(--lightRed--);
}
.close {
  position:absolute;
  top:10px;
  right:15px;
  font-size:24px;
  cursor:pointer;
  color: var(--red--);
}

h2 { text-align:center; margin-bottom:20px; }

/* Grid layout for two columns */
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 15px;
}

/* Inputs and labels inside columns */
.form-column label {
  display:block;
  margin-bottom:5px;
  font-weight:600;
  color: black;
  font-size: var(--p--);
}

.form-column input,
.form-column select,
.form-column textarea,
.form-column option {
  width:100%;
  box-sizing:border-box;
  padding:8px;
  border:1px solid black;
  border-radius:4px;
  margin-bottom:5px;
  font-size: var(--p--);
  color: black;
  transition: border-color 0.3s ease;
}

.form-column input:focus,
.form-column select:focus,
.form-column textarea:focus {
  outline: none;
}

/* Enhanced inline error styles */
.field-error {
  color: #f24e5c !important;
  font-size: 12px !important;
  margin-top: 2px !important;
  margin-bottom: 8px !important;
  display: block !important;
  font-weight: 500 !important;
  animation: fadeInError 0.3s ease-in-out;
}

.input-error {
  border-color: #f24e5c !important;
  background-color: rgba(242, 78, 92, 0.05) !important;
}

.input-error:focus {
  border-color: #f24e5c !important;
  box-shadow: 0 0 0 2px rgba(242, 78, 92, 0.2) !important;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form validation summary */
.form-summary-error {
  background-color: rgba(242, 78, 92, 0.1);
  border: 1px solid #f24e5c;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
  color: #f24e5c;
  font-size: 14px;
  display: none;
}

.form-summary-error.show {
  display: block;
  animation: fadeInError 0.3s ease-in-out;
}

.form-column textarea{
  resize: vertical;
  min-height: 48px;
  max-height: 200px;
}
/* Consent row full-width */
.consent-row {
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  margin-top:15px;
justify-content: center;
}
.consent-row input { margin-right:10px; }
.consent-row label{
    color: black;
    text-align: center;
}
/* Submit button */
.modal button {
  padding:.5rem 4rem;
  background:var(--red--);
  color:#000000;
  border:none;
  font-size: var(--p--);
  border-radius:4px;
  cursor:pointer;
  transition: .3s ease-in-out;
}
.modal button:hover { background:var(--lightRed--); }


/* MODALS END */

/* MEDIAS ASPECT RATIOS */
@media (min-width: 1921px) and (max-width: 2560px) {
  .slogan{
    margin-top: 10%;
  }
  .socialsMainContainer{
    margin-top: 5%;
  }
  .mainLeft{
    padding-top: 3%;
  }
  .mainMiddle{
    margin-top: 0;
  }
  .mainRight{
    padding-top: 3%;
  }
  .mainFirstSection{
    margin-top: 2.5%;
  }
  .works-content-container{
    width: 70%;
  }
  #service-card-v2 {
    max-width: 500px;
    height: 500px;
    justify-content: center;
  }
    #service-card-image-v2 {
    width: 100%;
    max-width: 480px;
    height: auto;
  }
  .modal-content {
    max-width:1500px!important;
    }
}
@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
}
  .overlay a {
    font-size: 20px
}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
/* End of Overlay Section */

.burgerButton{
    display: none;
    font-size: 1.5rem;
}
/* Laptop View Large */
@media screen and (max-width: 1440px) {
    .mainRight h3{
        font-size: 1.5rem;
    }
    .mainRight h2{
        font-size: 1.5rem;
    }
    #mainDisplay{
        margin-top: -5rem;
    }
    .auto-type-slogan{

    }
    .mainMiddle{
        margin-top: -3rem;
    }
    .service-cards-container{
        grid-template-columns: repeat(2, 1fr);
    }
    #service-card-v2{
        max-height: 350px;
    }
}
/* Laptop View */
@media screen and (max-width: 1024px) {
    nav{
        margin-top: 2%;
    }
    #mainDisplay{
        margin-top: 1rem;
    }
    .mainRight h2 {
        font-size: 1rem;
    }
    #moreAboutMe {
        font-size: 1.65vw;
    }
    .slogan::after {
        width: 0.2rem;
    }
    .auto-type-slogan{
        font-size: 0.8rem;
    }
    .mainMiddle{
        margin-top: -6rem;
    }
    .testimonials-wrapper{
        flex-direction: column;
        text-align: center;
    }
    .testimonials-p1{
        margin-top: 5%;
    }
    .testimonials-p2{
        text-align: center;
        width: 100%;
    }
    .stars-container{
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 3%;
    }
    .works-content-container{
        flex-direction: column;
    }
    #works-content-container3{
        flex-direction: row;
    }
    #works2 img, #works3 img{
        max-width: 282.5px;
        max-height: 407.5px;
    }
}
/* Tablet View */
@media screen and (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    main {
        margin-top: 0;
        padding-top: 120px;
        overflow: visible !important;
    }
    .mainFirstSection {
        overflow: visible !important;
    }
    nav.scrolled #logo {
        width: 3.5rem !important;
    }
    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
    .promo-content {
        max-width: 100%;
    }
    .promo-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }
    #logo{
        width: 7rem;
        margin-top: 0;
    }
    .burgerButton{
        display: block;
        margin-top: 0;
        position: relative;
        z-index: 99;
        font-size: 3.5rem;
    }
    .center,.right{
        display: none;
    }
    .slogan{
        margin-top: 15%;
    }
    .mainFirstSection{
        flex-wrap: wrap;
        margin-bottom: 15%;
        padding-bottom: 8%;
        margin-top: 1.5rem;
    }
    .slogan::after {
        width: 0.5rem;
    }
    .mainLeft {
        flex: 1 0 100%;
        max-width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 5%;
    }
    .mainLeft h1 {
        font-size: 1.2rem;
        height: auto;
        line-height: normal;
    }
    .mainLeft h2{
        font-size: 2.5rem;
        margin: 3% 0;
    }
    .mainLeft .auto-type {
        font-size: 1.2rem;
        text-wrap: wrap;
    }
    #p2{
        font-size: 1rem;
    }
    .fa-brands{
        font-size: 1.5rem;
    }
    .mainMiddle{
        flex: 1 0 100%;
        max-width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
        margin-top: 3rem !important;
        z-index: 1;
        position: relative;
    }
    #mainDisplay {
        width: 70%;
        max-width: 450px;
        margin-top: 0;
    }
    .mainRight{
        flex: 1 0 100%;
        max-width: 100%;
        order: 3;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .mainRight h2 {
        font-size: 2rem;
    }
    .description{
        margin-top: 3%;
        font-size: 1.2rem !important;
        text-align: center;
    }
    .slogan{
        margin-top: 5%;
        margin-left: 5%;
        font-size: 1.3rem!important;
    }
    .hrBelow{
        display: none;
    }
    #moreAboutMe {
        font-size: 1.3rem;
        padding: 5% 0;
    }
    .auto-type-slogan {
        font-size: 1.3rem;
    }
    .service-cards-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .works-content-container{
        width: 80%;
    }
    .works-content-container{
        padding: 0;
        gap: 2rem;
    }
    .works-content-container img{
        max-width: 30rem;

    }
    #works2, #works3{
        margin-top: 5rem;
    }
    #works3{
        margin-bottom: 3rem;
    }
    #works-content-container2,#works-content-container3{
        flex-direction: column;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
    }
    
}

/* Mobile View Large */
@media screen and (max-width: 425px) {
    
    body{
        margin: 0;
    }
    #logo{
        margin-top: 0;
        width: 4rem;
    }
    nav.scrolled #logo {
        width: 2rem !important;
    }   
    .burgerButton{
        display: block;
        margin-top: 0;
        position: relative;
        z-index: 99;
        font-size: 2.5rem;
    }
    main{
        margin-top: 0;
        padding-top: 100px;
    }
    .center,.right{
        display: none;
    }
    .mainLeft{
        margin-top: 0;
        flex: 1 0 100%;
        max-width: 100%;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .firstPart{
        font-size: 1rem;
    }
    .mainLeft h1{
        min-height: 2.4em;
    }
    .mainLeft h2{
        margin: 4% 0;
        font-size: 2rem;
    }
    .firstPart hr {
        display: none;
    }
    .mainFirstSection{
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }
    #moreAboutMe{
        padding: 3% 5%;
        font-size: 1.5rem;
    }  
    .fa-brands{
        font-size: 4vw;
    }
    .mainMiddle{
        flex: 1 0 100%;
        max-width: 100%;
        z-index: 1;
        order: 2;
        display: inline-block; /* shrink to image size */
        margin-top: 2rem !important;
    }
    #mainDisplay{
        z-index: 1;
        width: 70%;
        margin-top: 1.5rem;
        display: flex;
    }
    .mainMiddle::after {
        content: "";
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--red--);
        margin-top: 0;
        position: relative;
        z-index: 500;
    }
    .mainRight{
        flex-basis: 100%;
        max-width: 100%;
        margin-top: 8%;
        order: 3;
    }
    .mainRight h2 {
        font-size: 1.5rem;
    }
    .description{
        font-size: 1rem!important;
    }
    .socialsMainContainer {
        margin-top: 5%; 
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .socialsMainContainer p{
        text-wrap: nowrap;
        font-size: 1rem;
    }
    .slogan{
        margin-top: 8%;
        margin-left: 5%;
        width: 90%;
        position: relative;
        display: block;
        font-size: 1rem!important;
        overflow-y: visible;
    }
    
    .hrBelow{
        margin-top: -66%;
        height: 0.3rem;
        z-index: 55;
        position: relative;
    }
    .mainLeft .auto-type {
        font-size: 1.2rem;
    }
    .mainLeft h1 {
        font-size: 1.2rem;
    }
    .socialsContainer {
        margin-top: 5%;
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    .socialsContainer a i{
        font-size: 2rem;
        margin-top: 20%;
    }
    .footer-nav-wrapper ul li,.footer-email-wrapper p ,.footer-logo-wrapper a i, .footer-phone-wrapper p, .footer-p{
        font-size: 0.8rem;
    }
    .footer-logo-wrapper a i{
        font-size: 1rem;
    }
    .services{
        margin-top: 0;
    }
    .service-cards-container{
        width: 80%;
        padding: 0 5%;
    }
    .service-card{
        padding: 1.5rem 1rem;
    }
    .services h3{
        width: 100%;
    }
    #service-card-v2{
        max-height: 300px;
    }
    .works-content-container img{
        max-width: 20rem;
    }
    #works-content-container2{
        flex-direction: column;
    }
    .faq-section {
        margin: 0px 5%;
        width: 90%;
    }
    .faq-toggle{
        padding: 0;
    }
}   

/* Mobile View Medium */
@media screen and (max-width: 375px) {
    .mainFirstSection{
        margin-bottom: 3rem;
    }
    .hrBelow{
        margin-top: -72%;
        height: 0.3rem;
        z-index: 55;    
        position: relative;
    }
    .burgerButton{
        font-size: 2.2rem;
    }
    #logo{
        width: 60px;
        margin-bottom: 10%;
    }
    .mainLeft{
        margin-top: 0;
    }
    .mainLeft h2{
        font-size: 2rem;
    }
}

/* Mobile View Small */
@media screen and (max-width: 320px) {
    main{
        margin-top: 0;
        padding-top: 80px;
    }
    .burgerButton{
        font-size: 2rem;
    }
    #logo{
        width: 50px;
    }
    .hrBelow{
        margin-top: -86%;
        height: 0.1rem;
        z-index: 55;
        position: relative;
    }
    .mainLeft h2{
        font-size: .85rem;
    }
    .mainLeft{
        margin-top: 0;
    }
    .mainLeft h2{
        font-size: 2rem;
    }
    #moreAboutMe {
        font-size: 1rem;
    }
    .mainFirstSection {
        margin-bottom: 3rem;
        margin-top: 4rem;
    }
    .footer-nav-wrapper ul li,.footer-email-wrapper p ,.footer-logo-wrapper a i, .footer-phone-wrapper p, .footer-p{
        font-size: 0.6rem;
    }
    .mainLeft #p1, #p2{
        font-size: 0.8rem;
    }
    .mainRight h2{
        font-size: 1.2rem;
    }
    .promo-p{
        margin-top: 10%;
        width: 80%;
    }
    .services h2{
        margin-top: 10%;
    }
    .reserve-button{
        margin-bottom: 10%;
    }
    .testimonials-wrapper{
        width: 90%;
    }
    .testimonials-wrapper img{
        height: 215px;
        width: 215px;
    }
    .stars-container img {
        width: 2rem;
        height: 2rem;
    }
    .testimonials-p2 {
        margin-top: 2rem;
    }
    .works-content-container img{
        max-width: 15rem;
    }
    .works h3{
        margin-bottom: 1rem;
    }
}

/* Animation Section */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes growFromCenter {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*End of Animation Section*/

/* Honeypot (anti-bot) fields: hidden visually, present in DOM */
.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.hp-wrap label,
.hp-wrap input,
.hp-wrap textarea,
.hp-wrap select {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form actions wrapper to replace inline styles */
.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 15px;
}

/* Accent text to replace inline span styles in typed slogan */
.accent {
  color: #C8FF66 !important;
}

/* Toast notifications (no inline styles required) */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(90vw, 360px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #000 !important; /* force black text */
  font-size: 0.95rem;
  gap: 12px;
  border: 1px solid transparent;
  background: #fff;
  opacity: 0;
  transform: translateY(-6px);
  animation: toast-in 200ms ease forwards;
}

.toast--success { background: #e6ffed; border-color: #2ecc71!important; color: #000 !important; }
.toast--error { background: #ffe6e6; border-color: #e74c3c!important; color: #000 !important; }

.toast__close {
  background: transparent;
  border: none;
  color: #000!important;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

/* Force all toast content to render black, overriding globals */
.toast, .toast * {
  color: #000 !important;
  fill: #000 !important;   /* for svg icons */
  stroke: #000 !important; /* for svg paths */
}

@keyframes toast-in {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SKILLS SECTION
========================================= */
.skills-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6% 4%;
    background-color: var(--black--);
}
.skills-section h1 {
    font-weight: 700;
    font-size: var(--h1--);
    text-align: center;
    color: var(--white--);
    margin-bottom: 0.8rem;
}
.skills-section h3 {
    font-size: var(--h3--);
    font-weight: normal;
    text-align: center;
    color: var(--gray2--);
    margin-bottom: 3rem;
}
.skills-section span {
    color: var(--lightRed--);
    font-weight: 600;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 90%;
    max-width: 1300px;
}
.skill-category {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.skill-header i {
    font-size: 1.8rem;
    color: var(--red--);
}
.skill-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white--);
}
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.skill-tags span {
    background: rgba(158, 255, 0, 0.05);
    border: 1px solid rgba(158, 255, 0, 0.15);
    color: #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.skill-tags span:hover {
    background: rgba(158, 255, 0, 0.15);
    color: var(--red--);
    border-color: var(--red--);
}

/* =========================================
   EXPERIENCE SECTION
========================================= */
.experience-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6% 4%;
    background-color: var(--black--);
}
.experience-section h1 {
    font-weight: 700;
    font-size: var(--h1--);
    text-align: center;
    color: var(--white--);
    margin-bottom: 0.8rem;
}
.experience-section h3 {
    font-size: var(--h3--);
    font-weight: normal;
    text-align: center;
    color: var(--gray2--);
    margin-bottom: 3rem;
}
.experience-section span {
    color: var(--lightRed--);
    font-weight: 600;
}
.timeline {
    width: 90%;
    max-width: 1000px;
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 4px;
    background: rgba(158, 255, 0, 0.15); /* Dim track */
    border-radius: 2px;
}
.timeline::after {
    content: '';
    position: absolute;
    left: 10px;
    transform: translateX(-50%);
    top: 0;
    width: 4px;
    background: var(--red--);
    box-shadow: 0 0 12px rgba(158, 255, 0, 0.8);
    height: var(--scroll-progress, 0%);
    transition: height 0.4s ease-out;
    border-radius: 2px;
    z-index: 0;
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 2;
}
.timeline-dot {
    position: absolute;
    left: -30px;
    transform: translateX(-50%);
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--black--);
    border: 2px solid var(--red--);
    box-shadow: 0 0 10px rgba(158, 255, 0, 0.5);
    transition: all 0.4s ease-out;
}
.timeline-dot.active {
    background: var(--red--);
    box-shadow: 0 0 15px var(--red--);
}
.timeline-content {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    border-color: rgba(158, 255, 0, 0.3);
    box-shadow: 0 10px 30px rgba(158, 255, 0, 0.05);
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 10px;
}
.timeline-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white--);
}
.timeline-date {
    color: var(--red--);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(158, 255, 0, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}
.timeline-company {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.timeline-content ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}
.timeline-content li {
    font-size: 0.95rem;
    color: var(--gray2--);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.timeline-tech {
    font-size: 0.85rem;
    color: var(--white--);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }
    .timeline-dot {
        left: -20px;
    }
}
