body {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    background-color: white;
    overflow-x: hidden !important;
}

body.loading {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}


/* Navbar  */

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23006bb6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom {
    background: #ffffff;
    border-bottom: 3px solid #006bb6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.nav-item {
    margin: 2px 20px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #021b3c !important;
    font-weight: 600;
    margin-left: 10px;
    padding: 8px 15px !important;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    border-radius: 4px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5%;
    background: #006bb6;
    z-index: -1;
    clip-path: polygon(0% 100%, 100% 100%, 100% 30%, 50% 0%, 0% 30%);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 992px) {
    .nav-link {
        text-align: center;
        padding: 15px 0px !important;
        width: 120px;
        margin: auto;
    }

}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link:hover::before {
    height: 100%;
}

.nav-link.active {
    color: #ffffff !important;
}

.nav-link.active::before {
    height: 100%;
    background: #021b3c;
}

.brand-text {
    font-size: 24px;       
    font-weight: 700;      
    color: #021b3c;        
    margin-left: 15px;     
    white-space: nowrap;   
    z-index: 2;            
}

.navbar-brand img {
    height: 90px;          
    position: static;      
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 18px;  
        margin-left: 10px;
    }
    
    .navbar-brand img {
        height: 60px;      
    }
}


/* Main Button  */

.btn-merge {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    transform: translate(0, 0);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.btn-merge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #C5A059, #C5A059 10px, #b18e47 10px, #b18e47 20px);
    z-index: -1;
    transform: translate(8px, 8px);
    border: 2px solid #1a1a1a;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-merge:hover {
    transform: translate(8px, 8px);
    color: #fff;
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-merge:hover::after {
    transform: translate(0px, 0px);
    border-color: #1a1a1a;
}

.btn-merge:active {
    transform: translate(8px, 8px);
}

.btn-merge:active::after {
    transform: translate(0px, 0px);
}


/* Contact Page Button  */

.btn-sheen {
    position: relative;
    padding: 15px 40px;
    background: #021b3c;
    color: #ffffff;
    border: 1px solid #006bb6;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-sheen:hover {
    color: white;
    background: #006bb6;
}


/* Home Page  */

.hero-parallax {
    background-image: url('images/house-2.jpg');
    height: 95vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}


.hero-watermark {
    position: absolute;
    top: -100px;
    left: -50px;
    font-size: 15rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04);
    z-index: -1;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    line-height: 0.8;
    transform: translateX(0);
    animation: fromleft 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 2s;
}

@keyframes fromleft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.gold-dash {
    width: 40px;
    height: 2px;
    background: #c5a059;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
}

.title-row {
    overflow: hidden;
    display: block;
}

.title-row span {
    display: block;
    transform: translateY(100%);
    animation: textReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.8s;
}

.text-outline {
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 5px;
    -webkit-text-stroke: 2px #fff;
}

.text-italic-gold {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c5a059;
    font-weight: 400;
    text-transform: none;
    font-size: 5rem;
}

@keyframes textReveal {
    from {
        transform: translateY(110%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .text-italic-gold {
        font-size: 3.5rem;
    }

    .hero-watermark {
        font-size: 5rem;
        top: -100px;
        left: 0;
        background-position: fixed;
    }
}


.holo-container {
    position: relative;
    height: 450px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-top: 4px solid #c5a059;
    border-radius: 8px;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-scene {
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(45deg);
}

.site-floor {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    background-image:
        linear-gradient(rgba(197, 159, 89, 0.5) 2px, transparent 2px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.5) 2px, transparent 2px);
    background-size: 50px 50px;
    border: 2px solid rgba(197, 160, 89, 0.7);
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.1);
}

.laser-beam {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fdb836;
    box-shadow: 0 0 15px #ffa600;
    animation: scanLand 4s ease-in-out infinite alternate;
}

@keyframes scanLand {
    0% {
        top: 0%;
        box-shadow: 0 0 15px #c5a059;
    }

    100% {
        top: 100%;
        box-shadow: 0 0 30px #c5a059;
    }
}

.structure-pillar {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #ffa600a8;
    background: rgba(197, 160, 89, 0.15);
    animation: extrudeBuild 4s infinite ease-in-out alternate;
}

.p1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.p2 {
    top: 50px;
    right: 50px;
    animation-delay: 0.5s;
}

.p3 {
    bottom: 50px;
    left: 50px;
    animation-delay: 1s;
}

.p4 {
    bottom: 50px;
    right: 50px;
    animation-delay: 1.5s;
}

@keyframes extrudeBuild {
    0% {
        transform: translateZ(0px);
        opacity: 0.2;
    }

    100% {
        transform: translateZ(60px);
        opacity: 1;
        background: rgba(197, 159, 89, 0.384);
    }
}


/* About Section  */

.overlap-section {
    padding-top: 80px;
    padding-bottom: 120px;
    background-color: #f4f4f4;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.overlap-img-box {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
    padding-left: 30px;
}

.overlap-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.structural-backdrop {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 80%;
    height: 80%;
    background: #1a1a1a;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    border: 1px solid #c5a059;
}

.structural-backdrop::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-right: 3px solid #c5a059;
    border-bottom: 3px solid #c5a059;
}

.overlap-content {
    background: #fff;
    padding: 60px;
    margin-left: -100px;
    position: relative;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-top: 60px;
    border-left: 5px solid #c5a059;
}

@media (max-width: 991px) {
    .overlap-img-box {
        padding-left: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    .overlap-content {
        margin-left: 0;
        margin-top: 0;
        padding: 40px;
    }

    .overlap-img {
        height: 400px;
    }

    .hero-parallax {
        padding-top: 200px;
        padding-bottom: 200px;
        height: auto;
    }
}

.stat-row {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 30px;
}

.stat-item h2 {
    font-size: 2.5rem;
    line-height: 1;
}

/* Plans Section  */

.plans-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/banner.jpg');
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    position: relative;
}

.plan-card {
    overflow: hidden;
    height: 200px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 107, 182, 0.3);
}

.plan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c5a059;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    z-index: 999;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.draw-border {
    position: relative;
}

.draw-border::before,
.draw-border::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.draw-border::before {
    top: 0;
    left: 0;
}

.draw-border::after {
    bottom: 0;
    right: 0;
}

.draw-border:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #006bb6;
    border-right-color: #006bb6;
    transition: width 0.1s linear, height 0.1s linear 0.1s;
}

.draw-border:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #006bb6;
    border-left-color: #006bb6;
    transition: border-color 0s ease-out, width 0.1s linear 0.2s, height 0.1s linear 0.3s;
}


/* Faq Section  */

.blueprint-faq {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-card {
    border: none;
    background: transparent;
    margin-bottom: 20px;
    transition: all .4s ease;
    perspective: 1000px;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-header button {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #021b3c;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #021b3c;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.faq-num {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(223, 184, 110, 0.5);
    z-index: -1;
    transition: all 0.4s ease;
}

.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006bb6;
    transition: all 0.4s ease;
}

.faq-header button:hover {
    border-left-color: #006bb6;
}

.faq-header button:hover .faq-icon {
    background: #006bb6;
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: #021b3c !important;
    color: #fff !important;
    border-left-color: #006bb6;
    transform: translateX(0);
}

.accordion-button:not(.collapsed) .faq-num {
    color: rgba(255, 255, 255, 0.5);
    right: 80px;
}

.accordion-button:not(.collapsed) .faq-icon {
    transform: translateY(-50%) rotate(135deg);
    background: #006bb6;
    color: #fff;
}

.faq-body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),

        linear-gradient(rgba(0, 0, 0, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.09) 1px, transparent 1px),

        linear-gradient(rgb(186 220 255 / 20%) , rgb(186 220 255 / 20%));
        
    background-size: 10px 10px, 10px 10px, 40px 40px, 40px 40px, 100% 100%;
    background-position: 0 0;
    color: #021b3c !important;
    padding: 30px;
    padding-left: 40px;
    position: relative;
    border-left: 5px solid #000000;
    box-shadow: inset 5px 0 0 #006BB6;
}

.faq-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #006bb6 transparent;
    opacity: 0.5;
}

.faq-answer-text {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.5s forwards 0.3s;
    font-weight: 500;
    font-size: 18px;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-button::after {
    display: none !important;
}

/* Testimonial Section  */

.industrial-crane-section {
    background-color: #0f1012;
    padding: 100px 0;
    height: 750px;
    overflow: hidden;
    position: relative;
    border-top: 5px solid #c5a059;
    border-bottom: 5px solid #c5a059;
}

.industrial-crane-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.gantry-system {
    position: relative;
    height: 400px;
    width: 100%;
    perspective: 1000px;
}

.suspended-load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(-170%);
    animation: heavyDropCycle 18s infinite;
}

.chain-rig {
    position: absolute;
    top: -1000px;
    bottom: 100%;
    width: 8px;
    background-image: repeating-linear-gradient(to bottom, #333, #333 10px, #111 10px, #111 12px, #555 12px, #555 22px);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.left-chain {
    left: 20%;
}

.right-chain {
    right: 20%;
}

.concrete-slab {
    position: relative;
    width: 90%;
    max-width: 750px;
    background: #e0e0e0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.safety-header {
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 2px solid #c5a059;
}

.stripe-pattern {
    width: 100px;
    height: 100%;
    background: repeating-linear-gradient(45deg, #c5a059, #c5a059 10px, #1a1a1a 10px, #1a1a1a 20px);
}

.load-id {
    color: #c5a059;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 1px;
}

.slab-content {
    padding: 40px 50px;
    text-align: center;
}

.review-text {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.slab-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.stamp-approval {
    border: 2px solid #c5a059;
    color: #c5a059;
    padding: 5px 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-5deg);
    opacity: 0.8;
}

@keyframes heavyDropCycle {

    0% {
        transform: translateY(-150%);
        opacity: 0;
    }

    5% {
        transform: translateY(10%);
        opacity: 1;
    }

    7% {
        transform: translateY(-5%);
    }

    9% {
        transform: translateY(2%);
    }

    10% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(0);
        opacity: 1;
    }

    32% {
        transform: translateY(5%);
    }

    35% {
        transform: translateY(-150%);
        opacity: 1;
    }

    35.1% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.load-2 {
    animation-delay: 6s;
}

.load-3 {
    animation-delay: 12s;
}

@media (max-width: 768px) {

    .left-chain {
        left: 20px;
    }

    .right-chain {
        right: 20px;
    }

    .review-text {
        font-size: 1.1rem;
    }

    .slab-content {
        padding: 30px 20px;
    }

    .slab-footer {
        flex-direction: column;
        gap: 0px;
    }

    .stamp-approval {
        display: none;
    }

}


/* About Page  */

.anim-site {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 350px;
    background-color: #fcfcfc;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden;
    border: 1px solid #333;
    border-bottom: 4px solid #006bb6;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.site-ground,
.site-foundation,
.crane-tower,
.crane-arm,
.crane-trolley,
.crane-cable,
.crane-hook,
.house-body,
.house-roof,
.crane-box {
    position: absolute;
}

.site-ground {
    bottom: 0;
    width: 100%;
    height: 15px;
    background: #2a2a2a;
    border-top: 1px solid #444;
    z-index: 10;
}

.site-foundation {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 28%;
    max-width: 130px;
    height: 8px;
    background: #444;
    border-radius: 2px 2px 0 0;
    z-index: 5;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.crane-tower {
    right: 5%;
    bottom: 15px;
    width: 16px;
    height: 285px;
    border-left: 2px solid #555;
    border-right: 2px solid #555;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, #333 8px, #333 10px);
    z-index: 2;
}

.crane-arm {
    right: 5%;
    top: 60px;
    width: 90%;
    height: 12px;
    border-top: 2px solid #555;
    border-bottom: 2px solid #555;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, #333 8px, #333 10px);
    z-index: 3;
}

.crane-box {
    height: 40px;
    width: 40px;
    background: #333;
    z-index: 5;
    border: 1px solid #555;
    top: 45px;
    right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.crane-box::before {
    content: "LOG";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 16px;
    background: #006bb6;
}

.crane-trolley {
    top: -4px;
    width: 34px;
    height: 18px;
    background: #021B3C;
    transform: translateX(-50%);
    border: 1px solid #555;
    z-index: 6;
    border-radius: 2px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    animation: trolleyAction 12s ease-in-out infinite alternate;
}

.crane-cable {
    top: 14px;
    width: 2px;
    background: black;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: cableAction 12s ease-in-out infinite alternate;
}

.crane-hook {
    bottom: -12px;
    left: -7px;
    width: 14px;
    height: 12px;
    border: 3px solid #000000;
    border-top: 0;
    border-radius: 0 0 50% 50%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.house-body,
.house-roof {
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: translateX(-50%);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.house-body {
    bottom: 15px;
    width: 20%;
    max-width: 100px;
    height: 60px;
    background-color: white;
    border: 2px solid #006bb6;
    animation: bodyMove 12s ease-in-out infinite alternate;
}

.house-body .door {
    width: 30%;
    height: 70%;
    background: #333;
    border-top: 2px solid #006bb6;
}

.house-roof {
    bottom: 15px;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 45px solid #021b3c;
    animation: roofMove 12s ease-in-out infinite alternate;
}

@keyframes trolleyAction {

    0%,
    20% {
        left: 15%;
    }

    30%,
    45% {
        left: 50%;
    }

    55%,
    70% {
        left: 85%;
    }

    80%,
    95% {
        left: 50%;
    }

    100% {
        left: 15%;
    }
}

@keyframes cableAction {
    0% {
        height: 30px;
    }

    10% {
        height: 200px;
    }

    20% {
        height: 30px;
    }

    35% {
        height: 30px;
    }

    40% {
        height: 200px;
    }

    45% {
        height: 30px;
    }

    60% {
        height: 200px;
    }

    70% {
        height: 30px;
    }

    85% {
        height: 30px;
    }

    90% {
        height: 170px;
    }

    100% {
        height: 30px;
    }

}

@keyframes bodyMove {

    0%,
    10% {
        left: 15%;
        bottom: 15px;
        opacity: 1;
    }

    20% {
        left: 15%;
        bottom: 200px;
        opacity: 1;
    }

    30% {
        left: 50%;
        bottom: 200px;
        opacity: 1;
    }

    40% {
        left: 50%;
        bottom: 25px;
        opacity: 1;
    }

    100% {
        left: 50%;
        bottom: 25px;
        opacity: 1;
    }
}

@keyframes roofMove {

    0%,
    60% {
        left: 85%;
        bottom: 15px;
        opacity: 1;
    }

    70% {
        left: 85%;
        bottom: 200px;
        opacity: 1;
    }

    80% {
        left: 50%;
        bottom: 200px;
        opacity: 1;
    }

    90% {
        left: 50%;
        bottom: 85px;
        opacity: 1;
    }

    100% {
        left: 50%;
        bottom: 85px;
        opacity: 1;
    }
}

.stats-section {
    background: #021b3c;
    color: white;
    position: relative;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.stat-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    padding-bottom: 50px;
    border-left: 1px solid #ccc;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #006bb6;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 8px;
    height: 15px;
    background: #006bb6;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    animation: travelDown 8s linear infinite;
}

.timeline-item:nth-of-type(1)::after {
    animation-delay: 0s;
}

.timeline-item:nth-of-type(2)::after {
    animation-delay: 2s;
}

.timeline-item:nth-of-type(3)::after {
    animation-delay: 4s;
}

.timeline-item:nth-of-type(4)::after {
    animation-delay: 6s;
}

@keyframes travelDown {
    0% {
        top: 0;
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    25% {
        top: 100%;
        opacity: 0;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.timeline-year {
    font-weight: 900;
    color: #006bb6;
    font-size: 1.2rem;
}



/* Service Page  */

.process-section {
    background-color: #f8f9fa;
    position: relative;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.project {
    position: sticky;
    margin-bottom: 50px;
    z-index: 1;
}

.project i {
    color: #C5A059;
}

.service-tilt-card {
    position: relative;
    padding: 30px;
    padding-top: 50px;
    border-radius: 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    overflow: visible;
    height: 100%;
    width: auto;
    box-shadow: 3px 7px 30px rgba(0, 0, 0, 0.2);
}

.hide {
    position: absolute;
    top: -1px;
    left: 18px;
    width: 50px;
    height: 50px;
    z-index: 10000;
    overflow: hidden;
}

.ring {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 16px;
    left: -40px;
    border: 6px solid #C5A059;
    border-radius: 50%;
}

.card-ring {
    position: absolute;
    top: -36px;
    left: -22px;
    width: 70px;
    height: 70px;
    border: 6px solid #C5A059;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.card-hole {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    background-color: #f8f9fa;
    border-radius: 50%;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.tag-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    position: absolute;
    left: 0;
    top: 2px;
    color: #c5a059;
    font-size: 0.8rem;
}


.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.construction-beam {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #C5A059;
    z-index: 0;
    opacity: .7;
}

.phase-row {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.beam-node {
    position: absolute;
    left: 11px;
    top: 30px;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 4px solid #C5A059;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.2);
}

.connector-arm {
    position: absolute;
    left: 33px;
    top: 41px;
    width: 27px;
    height: 2px;
    background: #C5A059;
    z-index: 1;
}

.phase-card-v2 {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #C5A059;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phase-bg-num {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(197, 159, 89, 0.5);
    line-height: 0.8;
}

.final-cta {
    background: #1a1a1a;
    padding: 40px;
    text-align: center;
    border: 2px solid #C5A059;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


/* Contact Page  */

.contact-card {
    position: relative;
    background: #fff;
    padding: 25px;
    border: 1px solid #cccccc;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 4px;
    background: #006bb6;
    transition: width 0.4s ease;
}

.spec-marker {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: monospace;
    font-size: 24px;
    color: #cccbcb;
    font-weight: 300;
    transition: all 0.4s ease;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #021b3c;
    border: 1px solid #006bb6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.contact-icon-box::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #cccccc;
    transition: all 0.4s ease;
}

.contact-icon-box i {
    color: #006bb6;
    transition: color 0.4s ease;
}

.contact-content {
    padding-top: 5px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #006bb6;
}

.contact-card:hover::after {
    width: 100%;
}

.contact-card:hover .spec-marker {
    color: #006bb6;
    transform: rotate(90deg);
}

.contact-card:hover .contact-icon-box {
    background: #006bb6;
}

.contact-card:hover .contact-icon-box i {
    color: #fff;
}

.contact-card:hover .contact-icon-box::after {
    background: #006bb6;
}

.input-group-laser {
    position: relative;
    margin-bottom: 40px;
}

.laser-input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    outline: none;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.laser-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.laser-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #006bb6;
    transition: width 0.4s ease;
}



.laser-input:focus~.laser-label,
.laser-input:not(:placeholder-shown)~.laser-label {
    top: -20px;
    font-size: 0.9rem;
    color: #006bb6;
}

.laser-input:focus~.laser-line,
.laser-input:not(:placeholder-shown)~.laser-line {
    width: 100%;
}

.map-container {
    height: 400px;
    width: 100%;
    filter: grayscale(100%);
    margin-bottom: -200px;
}


/* Footer  */

.footer-cta-bar {
    background: #021B3C;
    padding: 40px;
    margin-bottom: -60px;
    border-radius: 4px;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid white;
}

.footer {
    background: url('images/bg-footer.jpg') no-repeat center center;
    background-size: cover;
    background-color: #021b3c;
    /* Navy Fallback */
    position: relative;
    padding-top: 120px;
    color: white;
    overflow: hidden;
}

.footer h5 {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4da6ff;
    margin-bottom: 25px;
    margin-top: 15px;
    padding-bottom: 8px;
}

.footer h5::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
    width: 50px;
    background-color: #4da6ff;
}

footer a {
    color: white;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 14px;
}

footer a:hover {
    color: #4da6ff;
}

.border-start-custom {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-brand-box {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    background: url('images/bg-footer-2.jpg') no-repeat bottom right;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #006bb6;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-menu a:hover::before {
    opacity: 1;
}

.text-gold {
    color: #006bb6 !important;
}

.contact-card-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    padding: 30px;
    padding-bottom: 50px;
    padding-top: 10px;
    border-radius: 4px;
}

.social-architect a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-architect a:hover {
    background: #006bb6;
    color: white;
    border-color: #006bb6;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}


/* Loader  */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all .5s ease;
}

.loader-wrapper.show {
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.load-house-roof {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 25px solid #021b3c;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.house-walls {
    width: 60px;
    height: 50px;
    border: 4px solid #021b3c;
    border-top: none;
    margin: -2px auto 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.construction-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #006bb6;
    animation: buildUp 2s ease-in-out infinite;
}

.loader-text {
    margin-top: 20px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #021b3c;
    font-size: 1.2rem;
    perspective: 500px;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    transform-origin: center;
    animation: hammerStamp 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.loader-text span:nth-child(1) {
    animation-delay: 0.0s;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.loader-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.loader-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.loader-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.loader-text span:nth-child(7) {
    animation-delay: 0.6s;
}

.loader-text span:nth-child(8) {
    animation-delay: 0.7s;
}

@keyframes hammerStamp {
    0% {
        opacity: 0;
        transform: scale(2) translateY(-20px);
        color: #021b3c;
    }

    10% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    50% {
        color: #021b3c;
    }

    60% {
        color: #006bb6;
    }

    80% {
        opacity: 1;
        transform: scale(1);
        color: #006bb6;
    }

    90% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

@keyframes buildUp {
    0% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    80% {
        height: 100%;
        opacity: 1;
    }

    100% {
        height: 0%;
        opacity: 0;
    }
}




/* Whatsapp Btn  */

.wa-float-btn {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #021b3c;
    /* Navy */
    border: 2px solid #006bb6;
    /* Blue Border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #006bb6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wa-float-btn:hover .icon-wrapper {
    background: #006bb6;
    color: #fff;
    transform: scale(1.05) rotate(360deg);
    border-color: #006bb6;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid #006bb6;
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    z-index: 1;
    opacity: 0;
}

@keyframes radarPulse {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
        border-width: 0px;
    }
}

.text-slide {
    position: absolute;
    right: 60px;
    background: #fff;
    color: #021b3c;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(20px);
    border: 1px solid #ccc;
}

.wa-float-btn:hover .text-slide {
    opacity: 1;
    visibility: visible;
    right: 75px;
    transform: translateX(0);
}


/* Top Button  */

.btn-roof-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid #c5a059;
    border-top: none;
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.99);
    clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0% 100%, 0% 40%);
    cursor: pointer;
}

.btn-roof-top.show {
    transform: translateY(0);
    opacity: 1;
}

.btn-roof-top i {
    color: #c5a059;
    font-size: 1.4rem;
    margin-top: 5px;
    transition: 0.3s;
}

.btn-roof-top:hover {
    background-color: #c5a059;
    transform: translateY(-5px);
    border-color: #c5a059;
}

.btn-roof-top:hover i {
    color: #1a1a1a;
}

.elevator-doors {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: flex;
}

.elevator-doors.doors-closed {
    pointer-events: auto;
}

.door-panel {
    width: 50%;
    height: 100%;
    background: #1a1a1a;
    transition: transform 0.5s ease-in-out;
    position: relative;
    z-index: 10;
}

.door-left {
    transform: translateX(-100%);
    border-right: 2px solid #c5a059;
}

.door-right {
    transform: translateX(100%);
    border-left: 2px solid #c5a059;
}

.doors-closed .door-left {
    transform: translateX(0);
}

.doors-closed .door-right {
    transform: translateX(0);
}


/* FLoating Object  */

#floating-obj {
    position: fixed;
    z-index: 9999;
    width: 90px;
    height: 90px;
    top: 0;
    left: 0;
    background: #fff;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    overflow: hidden;
    transform: translateY(-500px);
    transition: border-radius 0.3s ease;
}

#floating-obj img {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    will-change: transform;
}

.placeholder-img {
    opacity: 0;
}

.target-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    visibility: hidden;
    z-index: -1;
}


/* All Pages Header */

/* --- Page Header Container --- */
.page-header {
    width: 100%;
    height: 450px; /* Slightly taller for more visual impact */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    
    /* Elegant gradient overlay combined with your image */
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.85), rgba(32, 58, 67, 0.75), rgba(0, 107, 182, 0.6)), 
                url('images/page-header.jpg');
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    
    /* Modern diagonal cut */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* --- Subtitle Styling --- */
.header-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px; /* Increased letter spacing for an elegant look */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out forwards;
}

/* --- Glowing Animated Line --- */
.subtitle-line {
    height: 3px;
    width: 0px; /* Starts at 0 for animation */
    /* Glowing gradient effect using your original blue brand color */
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 12px auto 0 auto;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.3s forwards; /* Delays slightly after text */
}

/* --- Main Title Styling --- */
.header-title {
    font-size: clamp(45px, 10vw, 90px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    /* Clean, layered shadow for depth */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1),
                 5px 5px 15px rgba(0, 0, 0, 0.4);
    opacity: 0; /* Starts hidden for animation */
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

/* --- Entrance Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}


/* Floating Widget */

.hanging-widget {
    position: absolute;
    top: 0;
    right: 20px;
    width: 100px;
    height: 200px;
    z-index: 9999;
    pointer-events: none;
    animation: come 3s ease-in-out forwards;
}

@keyframes come {
    0% {
        top: -1000px;
    }

    100% {
        top: 0;
    }
}

.sway-wrapper {
    width: 100%;
    height: 100%;
    transform-origin: top center;
    animation: sway-gentle 3s linear infinite 7.5s;
}

.wire {
    width: 2px;
    background: #000000;
    margin: 0 auto;
    position: relative;
    height: 0px;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.5));
    animation: wire-unspool 2s cubic-bezier(0.5, 0, 0.5, 1) forwards 4s;
}

.wire::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.hard-hat {
    position: relative;
    width: 70px;
    margin: -4px auto 0;
    filter: drop-shadow(6px 4px 4px rgba(0, 0, 0, 0.3));
    pointer-events: auto;
    z-index: 10;
}

.dome {
    width: 60px;
    height: 35px;
    background: linear-gradient(135deg, #f1c40f 40%, #f39c12 100%);
    border-radius: 50px 50px 10px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.dome::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 25px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    transform: rotate(-20deg);
}

.brim {
    width: 70px;
    height: 8px;
    background: #f1c40f;
    border-radius: 10px;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 3;
    border-bottom: 2px solid #d35400;
}

.logo-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 24px;
    height: 24px;
    z-index: 4;
    opacity: 0.9;
}

.logo-v {
    position: absolute;
    border: 1px solid black;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 18px;
    background: #fff;
}

.logo-h {
    position: absolute;
    border: 1px solid black;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 6px;
    background: #fff;
}

.logo-box {
    position: absolute;
    border: 1px solid #fff;
    top: 20%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
}

@keyframes wire-unspool {
    0% {
        height: 0px;
        animation-timing-function: ease-in;
    }

    40% {
        height: 120px;
        animation-timing-function: ease-out;
    }

    60% {
        height: 90px;
    }

    80% {
        height: 105px;
    }

    100% {
        height: 100px;
    }
}

@keyframes sway-gentle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    33% {
        transform: rotate(3deg);
    }

    66% {
        transform: rotate(-3deg);
    }
}


/* Share Btn  */

.veer-tape-widget {
    position: fixed;
    bottom: 30px;
    left: 15px;
    z-index: 9998;
    height: 55px;
    display: flex;
    align-items: center;
}

.tape-case {
    width: 55px;
    height: 55px;
    background: #000000;
    border: 2px solid #C5A059;
    border-radius: 8px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.case-label {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tape-lock {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 6px;
    background: #1a1a1a;
    border: 1px solid #C5A059;
    border-radius: 2px;
}

.gold-tape {
    height: 40px;
    width: 0px;
    background: #C5A059;
    position: relative;
    margin-left: -10px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0 4px 4px 0;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
}

.tape-ticks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: repeating-linear-gradient(90deg, #000 0px, #000 1px, transparent 1px, transparent 5px);
    opacity: 0.3;
    pointer-events: none;
}

.tape-icons {
    display: flex;
    gap: 15px;
    padding-left: 5px;
    min-width: 160px;
    text-decoration: none;
}

.tape-icons a {
    border: 1px solid black;
    text-decoration: none;
}

.tape-link {
    color: #000000;
    font-size: 20px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.veer-tape-widget:hover .gold-tape {
    width: 180px;
}

.veer-tape-widget:hover .tape-case {
    transform: scale(1.05);
    border-color: #fff;
}

.tape-link:hover {
    color: white !important;
}

.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
}

.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates a responsive grid without media queries */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

/* --- Individual Gallery Items --- */
.gallery-item {
    border-radius: 12px;
    overflow: hidden; /* Ensures the image doesn't break out of the rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3; /* Keeps all image containers uniform */
    background-color: #ddd; /* Placeholder color while images load */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the space without stretching */
    display: block;
    transition: transform 0.4s ease-in-out; /* Smooth animation setup */
}

/* --- Hover Effect --- */
.gallery-item:hover img {
    transform: scale(1.1); /* Zooms the image in slightly */
}