:root {
    --primary-color: #E56734;
    --secondary-color: white;
    --accent-color: #f4f4f4;
    --text-color: #333;
    --primary-light: #f0824a;
    --primary-dark: #d14d1f;
    --dark-bg: #1a1a1a;
    --dark-card: #2d2d2d;
    --dark-text: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    min-height: 400px;
    max-height: 640px;
    height: 80dvh;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
}

.hero-subtitle {
    font-weight: 500;
    font-size: clamp(1rem, 2dvw + 0.5rem, 1.5rem);
    line-height: 1.5;
    margin-bottom: 3rem;
}

.bg-text {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: clamp(10rem, 25dvw, 28rem);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.158);
    line-height: 1;
    transform: translateY(20%);
}

h3 {
    font-weight: 600;
    font-size: clamp(1.25rem, 2.6dvw + 0.6rem, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fd7e14;
    border: none;
    color: white;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    
}

.nav-button:hover {
    background-color: #e8590c;
    transform: scale(1.05);
}

.nav-button:disabled {
    background-color: #dee2e6;
    cursor: not-allowed;
    transform: none;
}

/* navbar */

:root {
    --primary-color: #E56734;
    --secondary-color: white;
    --accent-color: #f4f4f4;
    --text-color: #333;
    --navbar-height: 90px;
    /* Define navbar height variable */
}

body {
    /* Add padding to the top of the body equal to navbar height */
    padding-top: var(--navbar-height);
}

/* Navbar Base Styling */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%) !important;
    box-shadow: 0 4px 20px rgba(229, 103, 52, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    font-weight: 800;
    height: var(--navbar-height);
    /* Set fixed height for navbar */
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 6px 30px rgba(229, 103, 52, 0.15);
}

/* Brand Logo */
.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 10px;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #f0824a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Active Link */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(229, 103, 52, 0.25);
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.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='%23E56734' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler:hover .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='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--secondary-color);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(229, 103, 52, 0.15);
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: var(--accent-color);
        transform: translateX(10px);
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover::after {
        content: '→';
        position: absolute;
        right: 20px;
        color: var(--primary-color);
        font-weight: bold;
    }

    /* Adjust body padding for mobile */
    body {
        padding-top: 80px;
    }
}

/* Container Responsive */
.navbar .container {
    max-width: 1200px;
    padding: 0 20px;
}

/* Smooth Scroll Effect */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Animation for navbar items */
.navbar-nav .nav-item {
    animation: fadeInDown 0.6s ease forwards;
    opacity: 0;
}

.navbar-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.navbar-nav .nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.navbar-nav .nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.navbar-nav .nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for entire navbar */
.navbar:hover {
    box-shadow: 0 8px 35px rgba(229, 103, 52, 0.2);
}

/* Brand hover effect */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 103, 52, 0.1), transparent);
    transition: left 0.6s ease;
}

.navbar-brand:hover::before {
    left: 100%;
}

/*======================================= navbar-section ========================================*/

/*======================================= main-section ==========================================*/


/*============ pra-scrolling-section ===========*/
@media (max-width: 1199px) {
    .service-details-wrapper .service-details-content .work-box-items.style-2 {
        margin-right: 0;
    }
}



@media (max-width: 1199px) {
    .project-wrapper-3 {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .project-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }
}

.project-wrapper .project-image-items {
    margin-top: 30px;
    width: 160px;
    height: 550px;
    position: relative;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

@media (max-width: 991px) {
    .project-wrapper .project-image-items {
        margin-top: 0;
    }
}

.project-wrapper .project-image-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.project-wrapper .project-image-items .content {
    position: absolute;
    left: 28%;
    bottom: 40px;
    transform: rotate(180deg) translateX(-50%);
    z-index: 9;
    writing-mode: vertical-rl;
}

.project-wrapper .project-image-items .content h4 {
    font-size: 20px;
}

.project-wrapper .project-image-items .content h4 a {
    color: var(--white);
}

.project-wrapper .project-image-items .content h4 a:hover {
    color: var(--theme-color);
}

.project-wrapper .project-image-items .content p {
    display: none;
    color: #fff;
    margin-top: 8px;
}

.project-wrapper .project-image-items .icon {
    width: 74px;
    height: 74px;
    line-height: 74px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme-color-2);
    color: var(--white);
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 0;
    visibility: hidden;
}

.project-wrapper .project-image-items .icon i {
    transform: rotate(-45deg);
}

.project-wrapper .project-image-items .icon:hover {
    background-color: var(--header);
}

@media (max-width: 991px) {
    .project-wrapper .project-image-items {
        width: 445px !important;
    }

    .project-wrapper .project-image-items .content {
        left: 30px;
        right: 20px;
        bottom: 30px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
        writing-mode: initial;
    }

    .project-wrapper .project-image-items .content p {
        display: block;
    }

    .project-wrapper .project-image-items .icon {
        opacity: 1;
        visibility: visible;
    }
}

.project-wrapper .project-image-items.active {
    width: 445px !important;
}

.project-wrapper .project-image-items.active .content {
    left: 30px;
    right: 20px;
    bottom: 30px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    writing-mode: initial;
}

.project-wrapper .project-image-items.active .content p {
    display: block;
}

.project-wrapper .project-image-items.active .icon {
    opacity: 1;
    visibility: visible;
}

.project-secton-4 {
    background: #F4F6FF;
}

.project-wrapper-4 .project-box-5 {
    margin-top: 30px;
    border-radius: 34px;
    background: #FF792E;
    padding: 50px;
    padding-bottom: 0;
    padding-right: 0;
}

.project-wrapper-4 .project-box-5 .content h3 a {
    color: var(--white);
}

.project-wrapper-4 .project-box-5 .content p {
    color: var(--white);
    margin-top: 10px;
    max-width: 630px;
}

.project-wrapper-4 .project-box-5 .content .link-btn {
    color: var(--white);
}

.project-wrapper-4 .project-box-5 .image {
    margin-top: 45px;
}

.project-wrapper-4 .project-box-5 .image img {
    width: 100%;
    height: 100%;
    border-radius: 21px;
}

.project-wrapper-4 .project-box-5.style-2 {
    background-color: #6C57D2;
}

.project-wrapper-4 .project-box-5.style-2 .content {
    max-width: 330px;
}

.project-wrapper-4 .project-box-5.style-3 {
    background-color: #49DCA2;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

@media (max-width: 1199px) {
    .project-wrapper-4 .project-box-5.style-3 {
        display: block;
    }

    .project-wrapper-4 .project-box-5.style-3 .image {
        margin-top: 30px !important;
    }
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .contact-info li .icon i {
    color: var(--theme-color);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image {
    position: relative;
    z-index: 9;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(7, 23, 20, 0) 0%, rgba(7, 23, 20, 0.73) 76.07%);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image img {
    width: 100%;
    height: 100%;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content p {
    color: var(--white);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn {
    border-radius: 55px;
    background: #FF792E;
    margin-top: 20px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::after,
.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::before {
    border-radius: 100px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::before {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::after {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn i {
    border-radius: 50%;
    color: var(--theme-color-2);
    background-color: var(--white);
}



@media (max-width: 1399px) {

    .slider-button .cmn-next,
    .slider-button .cmn-prev {
        width: 38px;
        height: 38px;
        line-height: 38px;
    }

    .slider-button .cmn-next i,
    .slider-button .cmn-prev i {
        font-size: 16px;
    }
}

.slider-button .previus-text {
    font-size: 22px;
    color: var(--header);
}

@media (max-width: 575px) {
    .slider-button .previus-text {
        font-size: 18px;
    }

    .slider-button .project-storke {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .slider-button .previus-text {
        font-size: 16px;
    }

    .slider-button .project-storke {
        font-size: 24px;
    }
}

@media (max-width: 470px) {
    .slider-button .previus-text {
        font-size: 14px;
    }

    .slider-button .project-storke {
        display: none;
    }
}

.project-section-41 {
    position: relative;
    background-color: #0E1445;
}

.project-section-41 .left-shape {
    position: absolute;
    top: 150px;
    left: 0;
}

@media (max-width: 1399px) {
    .project-section-41 .left-shape {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme-color);
    border-radius: 5px;
}

@media (max-width: 575px) {
    br {
        display: none;
    }
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

/*============ pra-scrolling-section ===========*/
.hero-section {
    background-color: #E56734;
}


.text {
    font-size: 1.0rem;
    font-weight: 100;
}

.head-span {
    color: #f0824a;
}

.btn-outline-warning {
    background-color: white;
    color: #f0824a;
    border: 3px solid white;
    border-radius: 5px;
}

.btn-outline-warning:hover {
    background-color: white;
    color: #f0824a;
    border: 3px solid white;
    border-radius: 5px;

}

.heading {
    color: #f0824a;
    font-weight: 600;
}

.heading-2 {
    font-weight: 500;
    font-size: 1.9rem;
}

h2 {
    font-weight: 650;
    font-size: clamp(1.5rem, 3.2dvw + 0.8rem, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.75rem;
}


.icon {
    background-color: black;
    border-radius: 50%;
    color: #f0824a;
    border: 1px solid black;
}

.icon:hover {
    background-color: #f0824a;
    border-radius: 50%;
    color: #dee2e6;
    border: 1px solid #f0824a;
}

.our {
    color: #d14d1f;
    font-size: 1.0rem;
}

.offer {
    background-color: #e9e9e941;
}

.bg-light-white {
    background-color: #f7f2f0;

}


.list {
    list-style-type: none;

}

.section-bg {
    background-color: #E56734;
}

.list-color {
    color: #d14d1f;
}

.button-color {
    background-color: #e8590c;
    border: 1px solid #E56734;
    color: white;
}

.button-color:hover {
    background-color: #e8590c;
    border: 1px solid #E56734;
    color: white;
}

/*======== transform-property-section-card ========*/
.product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 20px 20px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgb(240, 136, 38), rgb(158, 106, 9), rgb(240, 136, 38));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.username {
    font-weight: bold;
    color: #333;
}

.more-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
}

.product-image-container {
    position: relative;
    height: 390px;
    overflow: hidden;
    --scroll-distance: 0px;
    --scroll-percentage: 0%;
    cursor: pointer;
}



.scrolling-image {
    transition: all 5s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
    min-height: 100%;
    object-fit: cover;
    transform: translateY(0);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Multiple fallback methods for different devices */
.product-image-container:hover .scrolling-image {
    transform: translateY(var(--scroll-distance, var(--scroll-percentage, -70%)));
}

/* Touch device support */
@media (hover: none) {
    .product-image-container:active .scrolling-image {
        transform: translateY(var(--scroll-distance, var(--scroll-percentage, -70%)));
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .scrolling-image {
        transition: all 1s ease-in-out;
    }
}

.card-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: #333;
}

.action-btn.liked {
    color: #ff6b6b;
}

.pagination-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #666;
}

.highlight-white {
    color: white;
}

/* Loading state */
.image-loading {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .product-image-container {
        height: 300px;
        /* Smaller height on mobile */
    }
}

@media (max-width: 480px) {
    .product-image-container {
        height: 250px;
        /* Even smaller on very small screens */
    }
}

.back-color {
    background-color: rgba(214, 212, 212, 0.34);
}
.text-color1{
    color: #d14d1f;
}
.border-bottomm-1{
    border-bottom: 1px solid;
}

/* transform-property-section-card */


/*======================================= main-section ========================================*/


/*======================================== Footer-Section =====================================*/



.footer {
    padding: 100px 0 0;
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

.footer-logo {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.footer-logo img {
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer p {
    line-height: 1.6;
    color: var(--dark-text);
    opacity: 0.9;
}

.footer-social {
    margin-bottom: 40px;
}

.footer-social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--text-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-8px) rotate(360deg);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(229, 103, 52, 0.3);
}

.footer h5 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer h5:hover::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-links i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.footer-links a[href^="tel:"]:hover,
.footer-links a[href^="mailto:"]:hover {
    color: var(--primary-color);
}

.copyright {
    padding: 25px 0;
    background-color: #000;
    border-top: 1px solid var(--text-color);
}

.copyright p {
    margin: 0;
    color: var(--dark-text);
    opacity: 0.8;
}

/* Contact section special styling */
.contact-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(229, 103, 52, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(229, 103, 52, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-item a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer h5 {
        margin-top: 30px;
    }

    .footer-social a {
        margin-bottom: 10px;
    }
}

/* Animation for footer sections */
.footer .col-lg-4,
.footer .col-md-4,
.footer .col-lg-2 {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer .col-lg-4:nth-child(1) {
    animation-delay: 0.1s;
}

.footer .col-lg-2:nth-child(2) {
    animation-delay: 0.2s;
}

.footer .col-lg-2:nth-child(3) {
    animation-delay: 0.3s;
}

.footer .col-lg-4:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.image {
    border: 1px solid rgba(240, 129, 74, 0.3);
    border-radius: 10px;
    background: #FBDBDC;
}

.sticky-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    min-height: 100vh;
}

.left-section {
    position: sticky;
    top: 0;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 2rem;
}

s .text-color1 {
    background: white;
    color: #fd7e14;
}

.text-color1:hover {
    background: white;
    color: #fd7e14;
}

.contact {
    background-color: #E56734;
}

.backnow {
    background-color: #2d2d2d;

}