@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Shrikhand&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Ubuntu", sans-serif !important;
}


/* Header */
header {
    padding: 35px 50px;
    /* position: sticky; */
    top: 0;
    left: 0;
    z-index: 100;
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    text-decoration: none;
}

header h1 {
    /* width: 33%; */
}

nav {
    /* width: 33%; */
}
.logo {
    width: 25%;
}
#logoLink img {
    height: 125px;
    width: 125px;
    margin-left: 25px;

}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
}

.nav-buttons {
    /* width: 33%; */
    display: flex;
    width: 25%;
    justify-content: flex-end;
}

.nav-buttons a {
    margin: 0px 15px;
    padding: 10px 30px;
    border-left: 2px solid #e76a4d;
    border-radius: 5px;
}

.nav-buttons a {
    margin-left: 10px;
}
.nav-buttons svg {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 25px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 11px;
}
.hamburger span:nth-child(3) {
    bottom: 0;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 11px;
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 1700px) {
    .home-images-wrapper {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .home-images {
        flex-direction: column;
        margin-top: 0px !important;
    }
    .home-image {
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 1500px) {
    header {
        width: 100%;
        background-color: #000; /* or match your design */
        z-index: 100;
        transition: height 0.3s ease;
        overflow: hidden;
        height: auto; /* default size when menu is closed */
    }

    header.open {
        height: 100vh; /* fullscreen when menu is open */
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
    }

    nav {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
        text-align: center;
    }
    .logo {
        margin: 0 auto;
        text-align: center;
        width: auto;
        padding-right: 25px;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .nav-buttons {
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-buttons a {
        margin: 10px 10px;
        padding: 10px 20px;
        font-size: 16px;
        width: 150px;
        text-align: center;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }
    .info-panel p {
        width: 50% !important;
    }
    .logo-row {
        display: inline-block;
    }
}

@media screen and (max-width: 1300px) {
    .gallery-row {
        width: 100% !important;
    }
}
@media screen and (max-width: 1000px) {
    /* 90% */
    .home-image,
    .home-image img {
        width: 293px !important;
        height: 225px !important;
    }
    .gallery-row-wrapper {
        gap: 15px !important;
    }
    .gallery-row {
        margin: 0px auto !important;
    }
    .gallery-track {
        gap: 15px !important;
    }
    .gallery-item {
        /* 75% */
        width: 263px !important;
        height: 169px !important;
    }
}
@media screen and (max-width: 800px) {
    /* 75% */
    .home-image,
    .home-image img {
        width: 244px !important;
        height: 188px !important;
    }
    .form-wrapper {
        width: 100% !important;
        grid-template-columns: 100px 1fr;
        
    }
    form {
        display: block !important;
    }
    input,
    .cloudBox {
        margin-bottom: 25px;
    }
    .support-inner {
        width: 100% !important;
    }
    .logo-card img {
        height: 90px !important;
    }
    .logo-card {
        display: block !important;
    }
    .gallery-item {
        /* 50% */
        width: 175px !important;
        height: 113px !important;
    }
}
@media screen and (max-width: 700px) {
    /* 66% */
    .home-image,
    .home-image img {
        width: 215px !important;
        height: 166px !important;
    }
}
@media screen and (max-width: 600px) {
    /* 50% */
    .home-image,
    .home-image img {
        width: 163px !important;
        height: 125px !important;
    }
}



.curve-box {
    background: #666;
}

.curve-box2 {
    background: #b2ebf2;
}
.curve-box3 {
    background: #fff;
}
.curve-box4 {
    background: #fff;
}
.curve-box5 {
    background: #666;
}
.curve-box6 {
    background: #b2ebf2;
}

/* Sections */
section {
    padding: 100px 0px;
    text-align: center;
}

section .btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

section .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

section .btn:hover::before {
    left: 100%;
}

section .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 126, 95, 0.4);
}

/* Home Section */
#home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.home-content {
    width: 100%;
}

.home-content h2 {
    line-height: 60px;

}
.home-content h2 span {
    display: block;
}

.home-content p {
    margin: 50px 0px;
}

.home-content .btn {
    padding: 15px 20px;
    display: inline-block;
    text-decoration: none;
}
.home-images-wrapper {
    width: 80%;
    margin-top: 100px;
}
.home-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.m-top {
    margin-top: 25px;
}

.home-image {
    width: 325px;
    height: 250px;
    text-align: center;
    transition: transform 0.5s ease;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    overflow: hidden;

}

.home-images img {
    height: 250px;
    width: 325px;
    aspect-ratio: 1;
}

/* About Section */
#about {
    text-align: center;
}

#about h2 {
    margin-bottom: 25px;
}

#about h3 {
    font-weight: 500;
    margin-bottom: 50px;
}

.about-text {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

.cta-banner {
    margin: 50px auto;
    padding: 25px 30px;
    border-left: 6px solid #ffb347;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    width: 80%;
    max-width: 800px;
}

.cta-banner .pop-orange {
    font-weight: bold;
    animation: glowPulseOrange 1.5s ease-in-out infinite alternate;
}

.cta-banner .pop-blue {
    font-weight: bold;
    animation: glowPulseBlue 1.5s ease-in-out infinite alternate;
}

@keyframes glowPulseOrange {
    from {
        text-shadow: 0 0 5px #ffb347;
    }

    to {
        text-shadow: 0 0 15px #ffd580, 0 0 25px #ffb347;
    }
}

@keyframes glowPulseBlue {
    from {
        text-shadow: 0 0 5px #b2ebf2;
    }

    to {
        text-shadow: 0 0 15px #97f3ff, 0 0 25px #b2ebf2;
    }
}

.credentials {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 500;
}

.credentials li {
    list-style: none;
    position: relative;
    padding-left: 1em;
}

.credentials li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Fade-in on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-fade.visible {
    animation: fadeInUp 1.5s ease-out forwards;
}

.credentials li::before {
    content: "• ";
    margin-right: 4px;
}

.special-note {
    text-align: center;
    margin-top: 50px;
}

.special-note .cta-button {
    display: inline-block;
    margin-left: 10px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.special-note .cta-button::after {
    content: " →";
    transition: transform 0.3s ease;
    display: inline-block;
}

.special-note .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 126, 95, 0.4);
}

.special-note .cta-button:hover::after {
    transform: translateX(5px);
}

/* Reviews Section */
#reviews {
    position: relative;
    overflow: hidden;
}

/* Estimate Form */
#estimate {
    margin: 0px auto;
    overflow: hidden;
}

#estimate h2 {
    text-align: center;
    margin-bottom: 50px;
}

.estimate-info {
    padding: 30px;
    border-radius: 5px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto 50px auto;
    border: 1px solid rgb(224, 224, 224);

}
.estimate-info h3 {
    margin-bottom: 20px;
}

.estimate-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

.estimate-info ul li::before {
    content: "✔";
    margin-right: 10px;
    font-weight: bold;
}

.form-wrapper {
    backdrop-filter: blur(8px);
    border-radius: 5px;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgb(224, 224, 224);
}

form {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

label {
    font-weight: 600;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"],
input[type="number"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}
.cloudBox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
#uploadedFilesList {
    overflow: hidden;
    margin-left: 25px;

}
.file-item {
    margin-bottom: 10px;
    text-align: left;
}
.file-item span {
    margin-left: 10px;
}
.remove-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
  }
  
  .remove-btn:hover {
    background-color: darkred;
  }
textarea {
    resize: vertical;
}

button[type="submit"] {
    grid-column: span 2;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 126, 95, 0.2);
    margin: 40px auto 0 auto;
    display: block;
}

button[type="submit"]:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 126, 95, 0.3);
}

.assurance {
    text-align: center;
    font-style: italic;
    margin-top: 25px;
}

.payment {
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 1000;
}
.payment-options {
}
.payment-options li {
    margin: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    font-weight: 600;
    flex-wrap: wrap;
}
.payment-options svg {
    height: 25px;
    width: 25px;
    margin-right: 10px;
}

.payment-options span {
    margin-right: 15px;
}
.bit-logo {
    height: 25px;
    width: 25px;
    margin-right: 10px;
}

/* Services Section */
#services {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-content {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#services h2 {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    border-radius: 20px;
    padding: 50px 40px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.service-card svg {
    height: 25px;
    width: 25px;
}

/* .service-card.active {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(95, 210, 255, 0.5);
}

.info-panel {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: bottom 0.5s ease;
    z-index: 9;
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    z-index: -200;
}

.info-panel.show {
    bottom: 0;
    opacity: 1;
    z-index: 50;
}

.info-panel h3 {
    margin-top: 0;
    margin-bottom: 50px;
}

.info-panel p {
    line-height: 1.6;
    margin-bottom: 20px;
    width: 25%;
    margin: 0px auto 50px auto;
}

.info-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin: 20px auto;
    width: 50%;
}

.info-images img {
    width: 100%;
    max-width: 180px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.estimate-link {
    display: block;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 30px;
    transition: background 0.3s ease;
    width: 300px;
    margin: 50px auto;
}

.close-panel {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    width: 300px;
    cursor: pointer;
}


/* Support Section */
#support {
    position: relative;
    overflow: hidden;
}

.support-inner {
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#support p {
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 60px;
}

#support span {
    font-weight: 900;
    animation: glow 1.5s infinite alternate ease-in-out;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #b2ebf2, 0 0 10px #ff87f7;
    }

    100% {
        text-shadow: 0 0 10px #ffd6a5, 0 0 20px #ff87f7;
    }
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;

}

.logo-card {
    border-radius: 20px;
    padding: 20px;
    max-width: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    min-width: 0px;
    width: auto;
}

.logo-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.logo-card img {
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    height: 100px;
    padding: 15px 50px;
}

.logo-card h3 {
    margin: 0;
}

/* Gallery Section */
#gallery {
    text-align: center;
    overflow: hidden;
}


.carousel-heading {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery-row-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.gallery-row {
    width: 80%;
    overflow: hidden;
    position: relative;
    margin: 25px auto;
}

.gallery-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .gallery-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    transition: transform 0.3s ease-out;
}

.row2 .gallery-track {
    animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    height: 225px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgb(182, 182, 182);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-track.paused {
    animation-play-state: paused !important;
  }

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Footer */
footer {
    padding: 100px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
}

.contact h2 {
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}

.contact p {
    line-height: 1.5;
}
.contact svg {
    height: 15px;
    width: 15px;
    margin-right: 10px;
}
footer a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.disclaimer,
.legal {
    max-width: 80%;
    margin: 25px auto 0 auto;
}

.disclaimer a {
    text-decoration: underline;
    font-weight: bolder;
}
.legal p:last-child {
    margin-top: 10px;
}

.socials {
    margin-top: 10px;
}

.socials svg {
    height: 25px;
    width: 25px;
}

/* Media Queries */
/* Tablet (landscape & small laptops) */
@media (max-width: 1024px) {
}

/* Mobile (portrait & small screens) */
@media (max-width: 768px) {
    
}

/* Extra small (tiny phones / narrow viewports) */
@media (max-width: 480px) {
    
}