@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');

:root {
	--white: #fff; 
	--gray: #636363;
	--primary: #1C4E80;
    --secondary: #E29A00;
	--success: #00A827; 
	--info: #36b9cc;
	--warning: #E29A00;
	--danger: #EA0000;
	--light: #f8f9fc;
    --light-dark: #404040;
	--dark: #000;
	--border-color: #D3D3D3; 
	--bg-light: #ffff;
    --bg-dark :#F9F6EE;
	--table-border: #F5F5F5;
	--light-primary: #E9E3D5;
}

* {
    padding: 0;
    margin: 0;
    box-shadow: none; 
  }
*,
  ::after,
  ::before {
      box-sizing: border-box
  }

html {
  scroll-behavior: smooth !important;
}

body {
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    font-family: "Maven Pro", sans-serif !important;
    text-rendering: optimizeLegibility;
    scroll-snap-type: y mandatory;
}
.fw-900{font-weight: 900 !important;}
.fw-800{font-weight: 800 !important;}
.fw-700{font-weight: 700 !important;}
.fw-600{font-weight: 600 !important;}
.fw-500{font-weight: 500 !important;}
.fw-400{font-weight: 400 !important;}

.primary{color: var(--primary) !important;}
.white{color: var(--white) !important;}
.dark{color: var(--dark) !important;}
.warning{color: var(--warning) !important;}

h1{
    font-size: 4.875rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-transform: uppercase;
}
h2{
    font-size: 5.375rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;           
    letter-spacing: -0.3125rem !important;
    text-transform: uppercase;
    background: linear-gradient(180deg, #1C4E80 0%, #06101A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3{
    font-size: 4.875rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-transform: uppercase;
    letter-spacing: -4.6px;
}
h6{
    font-size: 1.75rem !important;     
    line-height: 2.3625rem  !important;
}
p{
    font-size: 1.25rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.6875rem;
    margin: 0 !important;
}
small{
    font-size: 1.125rem !important;     
    color: var(--gray);
    font-weight: 500;
    line-height: 1.35rem !important;  
}

.place-center{place-content: center;}

.btn{
    padding: 14px 32px !important;
    border-radius: 47px !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    border: none !important;
    line-height: normal !important;
}
a{
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: normal !important;
    text-decoration: none !important;

}
.error{font-size: 16px;color: var(--danger)  !important;}
.btn-primary{
  background: linear-gradient(
    90deg,
    #1C4E80,
    #06101A,
    #1C4E80
  );
  background-size: 400% 100%;
  min-width: 250px;
}

.btn-primary:hover{
  animation: gradientMove 2s ease infinite;
}

@keyframes gradientMove{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}
.btn-outline-secondary{
    border: 1px solid var(--border-color) !important;
    background: var(--white);
    min-width: 250px;
    color: var(--dark) !important;
}
.btn-outline-secondary:hover{background: var(--gray) !important;color: var(--white) !important;border-color: var(--gray) !important;}

.btn-icon{width: 1.20rem;}

.navbar { 
    background: rgba(255, 255, 255, 0.64); 
    padding: 1rem 0 !important;  
    /* overflow: hidden; */
    z-index: 10;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  width: 0;
  transition: width 0.45s ease-in-out;
  z-index: -1;
}

.sticky-header .navbar::before {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.navbar-brand img { height: 60px; transition: transform 0.3s ease; }
.navbar-brand img:hover { transform: scale(1.05); }
.nav-link { font-size: 1.25rem !important;line-height: normal; color: var(--dark) !important; font-weight: 500 !important; padding: 0.5rem 1rem !important; transition: all 0.3s ease; position: relative; }
.navbar .nav-link.active{color: var(--primary)  !important;font-weight: 600 !important;}
.nav-link::after,.dropdown-item::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary); transition: all 0.3s ease; transform: translateX(-50%); }
.nav-link:hover,.dropdown-item:hover { color: var(--primary) !important; transform: translateY(-2px); }
.nav-link:hover::after,.dropdown-item:hover::after { width: 80%; }
.btn-phone { background: var(--primary); color: var(--white); border-radius: 25px; padding: 0.5rem 1.5rem; transition: all 0.3s ease; border: 2px solid var(--primary); }
.btn-phone:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(30, 77, 123, 0.3); }
.offcanvas { transition: transform 0.3s ease-in-out; }
.offcanvas .nav-link { border-bottom: 1px solid #eee;transition: transform 0.4s ease; }
.offcanvas .nav-link:hover { background: #f8f9fa; padding-left: 1.5rem !important; }
header {position: fixed;top: 0;width: 100%; z-index: 900;}
.navbar-toggler{border: none !important;}
.navbar-toggler:focus{box-shadow: none !important;}
.hotdog-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  padding: 0 !important;
  cursor: pointer;
}

.hotdog-toggler span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--primary);
  transition: all 0.3s ease-in-out;
}
.hotdog-toggler span:nth-child(1),
.hotdog-toggler span:nth-child(3) {
  width: 60%; 
  align-self: center;
}
.hotdog-toggler:hover span:nth-child(1),
.hotdog-toggler:hover span:nth-child(3) {
  width: 100%; 
  align-self: center;
}


.hotdog-toggler span:nth-child(2) {
  width: 100%;
  align-self: center;
}
.home-banner{height: 100dvh;place-content: end;}
.home-banner video{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
}
.home-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(28, 78, 128, 0.40) 0%, rgba(28, 78, 128, 0.40) 100%);
    z-index: 0;
}
.banner-content {
    opacity: 0;
    animation: contentSlideUp 1s ease-out forwards 0.8s;
}
@keyframes contentSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-banner .banner-content h1{
    max-width: 850px;
    letter-spacing: -4.6px;
}

.banner-content h1{
    letter-spacing: 2.76px;
    opacity: 0;
    animation: titleSlideIn 1s ease-out forwards 1.2s;
}

@keyframes titleSlideIn {        
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        }
    }

 .banner-content h1 span {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.6s ease-out forwards;
}
.banner-content h1 span:nth-child(1) { animation-delay: 1.2s; }
.banner-content h1 span:nth-child(2) { animation-delay: 1.35s; }
.banner-content h1 span:nth-child(3) { animation-delay: 1.5s; }
.banner-content h1 span:nth-child(4) { animation-delay: 1.65s; }
.banner-content h1 span:nth-child(5) { animation-delay: 1.8s; }
.banner-content h1 span:nth-child(6) { animation-delay: 1.95s; }

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}   
        
.home-banner .banner-content h6{
    max-width: 750px;
}
.banner-content h6{
    opacity: 0;
    animation: subtitleFadeIn 1s ease-out forwards 2.2s;
}
    @keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        }
    }
.scoll-banner{
    border-left: 3px solid var(--white); 
    max-width: 150px;
    text-align: start;
    padding-left: 1.25rem;
    padding-bottom: 1.25rem;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-out forwards 2.5s;
    cursor: pointer;
}
@keyframes scrollIndicatorFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
        }
    to {
        opacity: 1;
        transform: translateY(0);
        }
    }

.pooldesign-sec {  perspective: 1600px;}
.pooldesign-sec .image-container img {
    opacity: 0;
    transform-style: preserve-3d;
    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease;
}

.pooldesign-sec .img-1 img {
    transform:
        translateY(-220px)
        translateZ(-200px)
        scale(1.4)
        rotateX(35deg);
}

.pooldesign-sec .img-2 img {
    transform:
        translateZ(-600px)
        scale(0.85);
}

.pooldesign-sec .img-3 img {
    transform:
        translateY(240px)
        translateZ(-300px)
        scale(1.1);
}

.pooldesign-sec.animate .image-container img {
    opacity: 1;
    transform:
        translateX(0)
        translateY(0)
        translateZ(0)
        scale(1)
        rotateX(0);
}


.pooldesign-sec.animate .img-1 img { transition-delay: 0.1s; }
.pooldesign-sec.animate .img-2 img { transition-delay: 0.5s; }
.pooldesign-sec.animate .img-3 img { transition-delay: 1s; }
.pooldesign-sec{ background: url("../images/poolbg.webp") no-repeat left center / contain;padding-bottom: 2rem; overflow: hidden;}
.pooldesign-subtext{max-width: 560px;margin-left: auto;}
.pooldesign-subtext p{ max-width: 450px;}

.explore-btn{
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}
.explore-btn:hover::before{
    width: 100%;
}
.explore-btn::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary) !important;
    transition: width 0.3s ease;
}

.options-sec{
    border-radius: 60px 60px 0 0;
    background: linear-gradient(180deg, #1C4E80 0%, #06101A 100%);
    box-shadow: 0 -6px 24.9px 0 rgba(0, 0, 0, 0.25);
    margin-top: -3rem;
    padding: 3rem 0rem 24rem;
}

.options-head{max-width: 650px;margin: auto;}
.options-box img{border-radius: 24px;}
.options-box h6{padding: 20px;text-transform: uppercase;font-weight: 900;}

.ideas-sec{padding: 2rem 0 4rem;}
.ideas-sec::before{
    content: "";
    position: absolute;
    top: -320px;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url(../images/splash.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;   
}
.ideas-subtext{max-width: 900px;margin: auto;}

.ideas-box{
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: var(--white);
    text-align: center;
    padding: 46px;
    height: 100%;
}
.ideas-box h6{text-wrap: balance;}
.ideas-box img{width: 140px;height: 140px;border-radius: 30px;}


/* footer */

.footer-section{
    border-radius: 60px 60px 0 0;
    box-shadow: 0 -6px 24.9px 0 rgba(0, 0, 0, 0.25);
    background: var(--dark);
}
.footer-logo img{
    filter: brightness(0) invert(1);
    width: 280px;
    height: 110px;
    object-fit: contain;
}
.footer-block{
    padding: 64px 0 40px;
}
.copyright-block{
    background: linear-gradient(180deg, #1C4E80 0%, #06101A 100%), #1C4E80;
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
}

footer ul{list-style: none;}
footer .social-icons{display: flex;align-items: center;justify-content: start;gap: 10px;}
footer .social-icons a{
    background: var(--white);
    color: var(--dark);
    height: 40px;
    width: 40px;
    place-content: center;
    text-align: center;
    border-radius: 50%;
}


footer .footer-links  a,footer .social-icons a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links  a:hover::before,footer .social-icons a:hover::before {
  width: 100%;
}

footer .footer-links  a::before,footer .social-icons a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--white) !important;
  transition: width 0.3s ease;
}

/* footer  end */

.process-banner{
    background: url("../images/processbanner.webp") no-repeat center / cover;
    height: 95dvh;
    width: 100%;
    place-content: center;
    text-align: center;
}
.process-banner::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 6.32%, #FFF 89.74%);
    z-index: 0;
}
.blueprint-sec {margin-bottom: 8.5rem;}
.blueprint-sec h2{
    max-width: 1200px;
    margin: auto
}
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.process-grid .grid-item:nth-child(1){
    background-image: url(../images/gradientbg.webp);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    place-content: center;
}
.process-grid .grid-item.grid-odd-item{
    background-image: url(../images/lightgradient.webp);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 25px;
    place-content: center;
}
.num-block{
    font-size: 2.75rem; 
    font-weight: 900;
    line-height: 100%;  
    letter-spacing: -0.1375rem;
    color: var(--primary);
}
.num-block{
    background: var(--white);
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: block;
    place-content: center;
    text-align: center;
}
.inner-card{
    padding: 20px;
    background: var(--white);
    border-radius: 24px;
    height: 100%;
    text-align: center;
}
.icon-bg{
    background: #EAF4FF;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    padding: 10px;

}
.icon-bg span{
    color: var(--primary);
    font-size: 64px;
}
.build-swim {
    background: url(../images/gradientbg.webp);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    padding: 50px;
    display: block;
}
.build-swim  .process-grid {
    display: block !important;
}
.build-swim img {
    max-height: 500px;
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}
img.step01-img {
    width: 100%;
    object-fit: cover;
}



.design-banner{
    background: url("../images/designbanner.webp") no-repeat center / cover;
    height: 100dvh;
    width: 100%;
    place-content: center;
    text-align: center;
}
.design-banner::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 6.32%, #FFF 89.74%);
    z-index: 0;
}
.design-banner .banner-content h1{max-width: 900px;margin: auto;margin-bottom: 20px;}
.pool-type-section{padding-bottom: 10rem;}
.pool-type-section h2{max-width: 900px;margin: auto;}
.type-card{
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 4px 7.3px 0 rgba(0, 0, 0, 0.10);
    height: 100%;
}
.type-card h6{letter-spacing: -1.6px;}

.pool-wrapper-section{
    background-image: url(../images/bluebg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 100%;
    margin-top: -5rem;
    padding: 3rem 0;
    border-radius: 60px 60px 0 0;
    box-shadow: 0 -6px 24.9px 0 rgba(0, 0, 0, 0.10);
}
.depth-card{
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 0 46.2px 0 rgba(0, 0, 0, 0.10);
    height: 100%;
}
/* .step-imgs{max-width: calc(500px - (100vw - 576px) * 0.15) !important;} */
.steps-wrapper{display: flex;gap: 20px;justify-content: center;flex-wrap: nowrap;}

.interior-section{padding: 3rem 0;}

        .interior-card {
            position: relative;
            max-width: 100%;
            height: 100%;
            border-radius: 12px;
            border: 1px solid #D3D3D3;
            box-shadow: 0 0 46.2px 0 rgba(0, 0, 0, 0.10);
            overflow: hidden;
            cursor: pointer;
        }

        .card-image-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 75%; /* 4:3 aspect ratio */
            overflow: hidden;
            height: 100%;
        }

        .base-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .base-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hover-overlay {
            position: absolute;
            top: 0;
            left: 100%;
            width: 100%;
            height: 100%;
            transition: left 0.6s ease-in-out;
        }

        .hover-overlay img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hover-badge {
            position: absolute;
            top: 60px;
            right: 30px;
            background-color: var(--dark);
            color: var(--white);
            padding: 12px;
            border-radius: 12px;
        }

        .hover-badge small {
            font-size: 12px;
            line-height: 14.4px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .hover-badge h4 {
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0 0 3px 0;
            line-height: 1;
        }

        .hover-badge h5 {
            font-size: 1.1rem;
            font-weight: 400;
            margin: 0;
        }

        .interior-label {
            position: absolute;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
            padding: 25px 121px 20px 35px;
            z-index: 10;
        }

        .interior-label h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #2c5282;
            margin: 0;
        }

        .interior-card:hover .hover-overlay {
            left: 0;
        }


    .interior-section h2{max-width: 900px;margin: auto;}

    .contct-section{
        background-image: url(../images/gradientbg.webp);
        height: 100%;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 4rem 0 4rem;
        place-content: center;
        border-radius: 60px 60px 0 0;
        box-shadow: 0 -6px 24.9px 0 rgba(0, 0, 0, 0.10);
    }
    .contct-section h3{max-width: 870px;margin: auto;}
    .form-label{
        font-size: 1.25rem;
        color: var(--dark);
        font-weight: 500 !important;
        line-height: normal;
        margin: 0 !important;
    }


    .project-card {
      background: #fff;
      border-radius: 24px;
      padding: 40px;
    }

    .section-divider {
      height: 2px;
      background: linear-gradient(
        90deg,
        #D9D9D9 0%,
        #1C4E80 49.04%,
        #B8B8B8 100%
      );
      margin: 24px 0 24px;
    }

    .form-label {
      font-weight: 600;
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
        border-radius: 24px !important;
        border: 1px solid #000 !important;
        padding: 14px 20px !important;
        margin-top: 10px;
    }

    .form-control:focus,
    .form-select:focus {
      box-shadow: none;
      border-color: #000;
    }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem) !important;
}
    .visual-img img{
        max-height: 250px;
        width: 100%;
        object-fit: contain;
    }
    .visual-img{border-bottom: 1px solid var(--border-color);}

.step-form {
  display: none;
}
.step-form.active {
  display: block;
}
.form-check-input {
    width: 1.437em !important;
    height: 1.437em !important;
    margin-top: .09em !important;
    border: 1px solid var(--dark) !important;
    margin-left: -1.45em !important;
}
.form-check{margin-bottom: 1rem !important;}
.project-card label {
  display: inline-block;
  color: #484848;
  font-weight: 400 !important;
  font-size: 1.125rem !important;
  line-height: 1.35rem !important;
  margin-left: 8px;
}
.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.form-floating-textarea {position: relative;}

.form-floating-textarea textarea{
    padding-left: 14px !important;
    padding-top: 28px !important;
}
.form-floating-textarea label{
    position: absolute;
    top: 3px;
    padding: 0;
    font-size: 1rem;
    color: #000 !important;
    font-weight: 400 !important;
    width: calc(100% - 30px);
    background: var(--white);
    overflow: hidden;
    left: 16px;
}
.form-group{position: relative;}
.invalid-feedback{position: absolute;
  bottom: -20px;
  font-size: 12px !important;
  color: var(--danger) !important;
  font-weight: 400;
}
.slide img{
    max-height: 500px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.file-upload-wrapper {
    position: relative;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.25s ease;
    overflow: hidden;
    cursor: default;
    border: 1px solid #e3e3e3;
}

/* Hover effect */
.file-upload-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* ===== Floating Action Buttons ===== */
.file-upload-wrapper .top-actions {
    position: absolute;
    top: 10px;
    left: 50%;
    display: flex;
    gap: 8px;
    z-index: 10;
    justify-content: end;
}

/* View button (pill style like screenshot) */
.file-upload-wrapper .view-file {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0f355e, #1f4f7c);
    border: none;
    box-shadow: 0 6px 14px rgba(15, 53, 94, 0.35);
}

.file-upload-wrapper .view-file i {
    color: #fff;
    font-size: 16px;
}

/* Remove button */
.file-upload-wrapper .remove-preview {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--danger);
    border: none;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

.file-upload-wrapper .remove-preview i {
    color: #fff;
}

/* ===== File Preview Area ===== */
.file-upload-wrapper img {
    object-fit: cover;
    height: 160px !important;
    border-bottom: 1px solid #eee;
}

/* PDF Icon Center */
.file-upload-wrapper .fa-file-pdf {
    font-size: 56px;
    margin-bottom: 10px;
}

/* ===== File Meta ===== */
.file-upload-wrapper .card-body:last-child {
    background: #fafafa;
    border-top: 1px solid #eee;
}

.file-upload-wrapper small:first-child {
    font-weight: 600;
    color: #333;
}

.file-upload-wrapper small.text-muted {
    font-size: 12px;
}


        .submit-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            width: 100%;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }

        .submit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #3b82f6, var(--primary));
        }

       .submit-card .project-title {
            font-size: 2.5rem !important;
            font-weight: 300;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .submit-card .project-lead {
            font-size: 1.125rem !important;
            font-weight: 300;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 40px;
        }

      .submit-card  .project-info {
            list-style: none;
        }

        .submit-card .project-info li {
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

       .submit-card  .project-info li:last-child {
            border-bottom: none;
        }

        .submit-card .project-info strong {
            font-size: 0.875rem !important;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .submit-card .project-info span {
            font-size: 1.125rem !important;
            font-weight: 300;
            color: var(--gray);
            line-height: 1.6;
        }

       .submit-card  .project-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.2s ease;
        }

       .submit-card  .project-info a:hover {
            color: var(--primary);
            text-decoration: underline;
        }


        .cards-container {
            position: relative;
        }
        .cards-container h3{
            max-width: 850px;
            margin: auto;
        }


        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 20px;
        }

        .pool-card-grid {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 500px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .pool-card-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 77, 122, 0.3) 0%, rgba(10, 37, 64, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .pool-card-grid:hover::before {
            opacity: 1;
        }

        .pool-card-grid:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .pool-card-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .pool-card-grid:hover img {
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
            padding: 50px 35px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            z-index: 2;
            transition: padding 0.4s ease;
        }

        .pool-card-grid:hover .card-overlay {
            padding-bottom: 50px;
        }

        .pool-card-grid h2 {
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
            letter-spacing: 1px;
            margin: 0;
            transition: all 0.3s ease;
        }

        .pool-card-grid:hover h2 {
            transform: translateY(-5px);
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
        }

        .discover-btn {
            background: white;
            color: #0a2540;
            padding: 14px 45px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .discover-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: #0a2540;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
            z-index: -1;
        }

        .discover-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .discover-btn:hover {
            color: white;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
        }





        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #1a4d7a;
        }

        .feature-item h3 {
            color: #0a2540;
            margin-bottom: 10px;
        }

.dropzone .dz-preview .dz-details .dz-filename {
    max-width: 140px;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dz-remove{
    color: var(--danger);
    font-size: 1.25rem !important;
    font-weight: 500 !important;
}
.shrinkToFit{margin: auto !important;}


        /* Dropdown Icon */
.dropdown-icon {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

/* Rotate icon on hover */
.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display:  block !important;
}


.dropdown-item {
    display: block;
    padding: 12px 16px !important;
    color: var(--dark) !important;
    font-weight: 500 !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 1.25rem !important
}


.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}
.dropdown-item:active{background: var(--white) !important;}

.form-wrapper #_builder-form .multiselect__option--highlight {
  background-color: #1C4E80FF;
  color: #fff !important;
}
.grecaptcha-badge{bottom: 170px !important;z-index: 99;}

        @media (max-width: 768px) {
            .text-center h3 {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .pool-card-grid {
                height: 420px;
            }

            .pool-card-grid h2 {
                font-size: 1.8rem;
            }

            .discover-btn {
                padding: 12px 35px;
                font-size: 0.95rem;
            }
        }

    

        @media (max-width: 640px) {
            .submit-card {
                padding: 40px 30px;
            }

            .project-title {
                font-size: 2rem;
            }

            .project-lead {
                font-size: 1rem;
            }

            .project-info span {
                font-size: 1rem;
            }
        }

@media (min-width: 1199px) {
    .process-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
}

/* @media (max-width: 1599.98px) {
    .step-imgs {
    max-width: calc(375px - (100vw - 576px) * 0.15) !important;
    }
} */

@media (max-width: 1399.98px) {
    .navbar-brand img {height: 50px;}
    h1,h3 {font-size: 4rem !important;}
    h6{font-size: 1.5rem !important;line-height: 2.025rem !important;}
    h2{font-size: 4.875rem !important;}
    p{font-size: 1.125rem;line-height: 1.51875rem;}
    a,.btn {font-size: 1.125rem !important;}
    .ideas-sec{padding-top: 0;}
    .ideas-box img { width: 125px; height: 125px;}
    .footer-logo img {  width: 250px;height: 100px}
}

@media (max-width: 1199.98px) { 
    .offcanvas { width: 280px !important; }
    .ideas-box{padding: 30px;}
    h1, h3 {font-size: 3.75rem !important;}
    img.step01-img {max-height: 430px;}
    img.step-03-img {margin: 0 auto; text-align: center; width: 100%; display: block; height: 500px; object-fit: contain;}
    .design-banner .banner-content h1 { max-width: 860px;}
}
@media (max-width: 991.98px) {
    .banner-content h1,.banner-content h6 {margin: auto;} 
    .content-box{text-align: center;}
    h2{max-width: 680px; margin: auto;font-size: 3.75rem  !important;
    /* padding-top: 4rem */
    }
    .pooldesign-subtext p{margin: auto !important;}
    .pooldesign-subtext{max-width: 100%;}
    .options-sec{margin-top: -6rem;}
    .ideas-sec::before { top: -250px;height: 290px;}
    .options-sec { padding: 3rem 0rem 20rem;}
    .footer-block {padding: 50px 0 25px;}
    .footer-logo img {width: 200px; height: 100px;}
    img.step01-img {height: 400px;}
    .error{font-size:14px;}
}



@media (max-width: 767.98px) { 
    h1, h3{font-size: 3.375rem !important;}
    h6 {font-size: 1.25rem !important;line-height: 1.6875rem !important;}
    .footer-block{text-align: center;}
    footer  .social-icons{justify-content: center;align-items: center;}
    .footer-logo img {height: 60px;}
    p{ font-size: 1rem !important;line-height: 1.35rem !important;}
    .ideas-box img {width: 100px;height: 100px;}
    .ideas-sec::before { top: -190px;height: 225px;}
    .options-sec { padding: 3rem 0rem 14rem;}
    img.step-03-img {height: 300px;}
    .build-swim {padding: 25px}
    .process-grid .grid-item:nth-child(1) {padding: 25px;}
    .project-card {border-radius: 20px;padding: 20px;}

}

@media (max-width: 575.98px) {

    h1 {font-size: 3rem !important; letter-spacing: -1px;}
    h3{font-size: 2.25rem !important; letter-spacing: -1px;}
    .home-banner .banner-content h1 {letter-spacing: -3.5px;}
    .options-sec {margin-top: -4rem; }
    h2 { font-size: 3.25rem !important;}
    .pooldesign-subtext p{margin-bottom: 1rem !important;}
    .ideas-sec::before {top: -120px;height: 120px;}
    .options-sec {padding: 3rem 0rem 10rem;}
    .navbar-brand img { height: 36px;}
    .process-grid {display: block;}
    .process-grid .grid-item.grid-odd-item {padding: 30px 15px;}
    .inner-card {padding: 20px;}
    .steps-wrapper{flex-wrap: wrap;}
    .steps-wrapper img{max-width: 150px;}
    .blueprint-sec {margin-bottom: 4.5rem;}
    .num-block { height: 60px;width: 60px;}
    .num-block { font-size: 2rem;}


  }


